diff --git a/.travis.yml b/.travis.yml index fbacba5..cf22039 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,9 +17,9 @@ script: deploy: provider: pypi user: athanaseus + distributions: sdist password: secure: NfSxCXOU9WywE0S2Pdhlpu+BLmeUA5XVL3O6jFouLOFQOznZ53YTiqesYCkvoYm2a3bIMPLpKRFnSvKZ9gmLW3lwRkfBaF7c8RwWSYRaw9YfZ5S/gQUhPiPc7sQcIQz/umpdNLKgz35KEBx2BS3d2Kpapbf/ysziyYBbyf3zWBIig/sdNS/ogt3uG6yAuBDn3lie7m6P/fu/l99UCyZrl5eScoU+5fn6MYlSLfgtOIkzC8lQ1FcNuRXDHgwlfJjMshAEbIiVDBwVWhCVs71/N6ed8qbfhPbGA3Qg+Bur4xiQEyRCg24hx1BZ6ombFE068nOXHLMe357qDGwybFpcNsslkI737SLOZnXdIbhQ1IWk0z99CALHym0f8oJ426FPK0C4n9+uwotDzrr5o2eQsKnQq1cLuVrBBfUSxcCDkKk55VG820qY9NklNgmyhZIGm+Ijs+xN+QKwqMhVMfMy8tIpJgYYwIdY7w2mFUhp7Q64XdxDyC/QTVo+zT/0Z0TlFHnH36ibsriRrITf61zmIYzP8U1ShsNFKTEbIu5W4z+labixI8DUutnWsuo+MXtflrPLxzCCL/01W9NHvOG1+3vre27qwgo1T1H7E9jQObYF7eGvr2QQXQs98fOesMjsUxUC2y30YKRqf3JAwsfuDRH77pxylMr8tGghuBjuuuE= on: tags: true - distributions: sdist bdist_wheel -repo: ratt-ru/radiopadre + repo: ratt-ru/radiopadre diff --git a/Dockerfile b/Dockerfile index fa28481..8df1968 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM kernsuite/base:5 -ARG CLIENT_BRANCH=b1.0-pre4 -ARG CARTA_VERSION=v1.2.1 +ARG CLIENT_BRANCH=b1.0-pre5 +ARG CARTA_VERSION=v1.2.2 ARG CARTA_BASE=CARTA-$CARTA_VERSION-remote ARG CARTA_TGZ=$CARTA_BASE.tgz ARG CARTA_URL=https://github.com/CARTAvis/carta-releases/releases/download/$CARTA_VERSION/$CARTA_TGZ @@ -14,11 +14,12 @@ RUN apt-get update RUN apt-get update RUN docker-apt-install \ python3 \ - python-pip python3-pip \ + python-pip python3-pip python3-virtualenv \ virtualenv \ python3-numpy \ python3-scipy \ libcfitsio-dev \ + libboost-python-dev \ wcslib-dev \ git \ nodejs \ @@ -28,29 +29,21 @@ RUN docker-apt-install \ python3-matplotlib python3-pil python3-casacore \ wget lsof iproute2 -## libfuse2 libnss3 libgtk-3-0 libx11-xcb1 libasound2 xvfb -## last one was for carta desktop version +RUN ldconfig -# python-notebook jupyter-notebook jupyter-nbextension-jupyter-js-widgets \ +# Setup a virtual env +ENV VIRTUAL_ENV=/.radiopadre/venv +RUN virtualenv -p python3 $VIRTUAL_ENV +ENV PATH="$VIRTUAL_ENV/bin:$PATH" -RUN pip3 install git+https://github.com/ratt-ru/CubiCal +RUN pip3 install -U pip setuptools -RUN ldconfig -RUN mkdir /radiopadre -ADD . /radiopadre +#RUN pip3 install git+https://github.com/ratt-ru/CubiCal -# download CARTA -#RUN if [ ! -f radiopadre/$CARTA_TGZ ]; then cd radiopadre; wget $CARTA_URL; fi -#RUN tar zxvf radiopadre/$CARTA_TGZ -#RUN chmod -R a+rX $CARTA_BASE -#RUN ln -s $CARTA_BASE carta -#RUN rm radiopadre/$CARTA_TGZ +ADD . /radiopadre -RUN rm -fr /radiopadre/.git /radiopadre/js9/.git -RUN cd /radiopadre && if [ ! -d js9 ]; then git clone https://github.com/ericmandel/js9; fi -RUN cd /radiopadre/js9 && make clean RUN git clone -b $CLIENT_BRANCH https://github.com/ratt-ru/radiopadre-client.git RUN pip3 install -e /radiopadre-client -RUN /radiopadre/bin/bootstrap-radiopadre-install --inside-container --client-path /radiopadre-client +RUN pip3 install -e /radiopadre CMD sleep infinity diff --git a/Dockerfile.1.0pre4 b/Dockerfile.1.0pre4 new file mode 100644 index 0000000..86ea0fb --- /dev/null +++ b/Dockerfile.1.0pre4 @@ -0,0 +1,56 @@ +FROM kernsuite/base:5 + +ARG CLIENT_BRANCH=b1.0-pre5 +ARG CARTA_VERSION=v1.2.2 +ARG CARTA_BASE=CARTA-$CARTA_VERSION-remote +ARG CARTA_TGZ=$CARTA_BASE.tgz +ARG CARTA_URL=https://github.com/CARTAvis/carta-releases/releases/download/$CARTA_VERSION/$CARTA_TGZ + +################################ +# install latest masters +################################ +RUN echo "deb-src http://ppa.launchpad.net/kernsuite/kern-5/ubuntu bionic main" > /etc/apt/sources.list.d/kernsuite-ubuntu-kern-5-bionic.list +RUN apt-get update +RUN apt-get update +RUN docker-apt-install \ + python3 \ + python-pip python3-pip \ + virtualenv \ + python3-numpy \ + python3-scipy \ + libcfitsio-dev \ + wcslib-dev \ + git \ + nodejs \ + phantomjs \ + ghostscript \ + ipython python3-aplpy python3-astropy \ + python3-matplotlib python3-pil python3-casacore \ + wget lsof iproute2 + +## libfuse2 libnss3 libgtk-3-0 libx11-xcb1 libasound2 xvfb +## last one was for carta desktop version + +# python-notebook jupyter-notebook jupyter-nbextension-jupyter-js-widgets \ + +RUN pip3 install -U pip setuptools +RUN pip3 install git+https://github.com/ratt-ru/CubiCal + +RUN ldconfig +RUN mkdir /radiopadre +ADD . /radiopadre + +# Setup a virtual env +#ENV VIRTUAL_ENV=/opt/venv +#RUN docker-apt-install python3-virtualenv +#RUN python3 -m virtualenv --python=/usr/bin/python3 $VIRTUAL_ENV +#ENV PATH="$VIRTUAL_ENV/bin:$PATH" + +RUN rm -fr /radiopadre/.git /radiopadre/js9/.git +RUN cd /radiopadre && if [ ! -d js9 ]; then git clone https://github.com/ericmandel/js9; fi +RUN cd /radiopadre/js9 && make clean +RUN git clone -b $CLIENT_BRANCH https://github.com/ratt-ru/radiopadre-client.git +RUN pip3 install -e /radiopadre-client +RUN /radiopadre/bin/bootstrap-radiopadre-install --inside-container --client-path None + +CMD sleep infinity diff --git a/README.md b/README.md index 94880a8..2138c8d 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,10 @@ Astronomy visualization framework for ipython notebooks. -[![Build Status](https://travis-ci.org/radio-astro/radiopadre.svg?branch=master](https://travis-ci.org/radio-astro/radiopadre) +[![Build Status](https://travis-ci.org/ratt-ru/radiopadre.svg?branch=master)](https://travis-ci.org/radio-astro/radiopadre/) +[![PyPI version shields.io](https://img.shields.io/pypi/v/radiopadre.svg)](https://pypi.python.org/pypi/radiopadre/) +[![PyPI pyversions](https://img.shields.io/pypi/pyversions/radiopadre.svg)](https://pypi.python.org/pypi/radiopadre/) +[![PyPI status](https://img.shields.io/pypi/status/radiopadre.svg)](https://pypi.python.org/pypi/radiopadre/) [radiopadre on pypi](https://pypi.python.org/pypi/radiopadre) diff --git a/bin/bootstrap-radiopadre-install b/bin/bootstrap-radiopadre-install index 21ebb98..bd14263 100755 --- a/bin/bootstrap-radiopadre-install +++ b/bin/bootstrap-radiopadre-install @@ -26,7 +26,7 @@ parser.add_argument("--venv", type=str, parser.add_argument("--venv-extras", type=str, help="Additional packages to install when creating a new virtual environment (comma-separated list).") parser.add_argument("--client-path", type=str, default="~/radiopadre-client", - help="Path to radiopadre-client, for pip install -e. Specify 'None' to install from PyPI.") + help="Path to radiopadre-client, for pip install -e. Specify 'None' to skip installation.") parser.add_argument("--no-casacore", action="store_true", help="ignores missing python-casacore. Table functionality will be reduced.") parser.add_argument("--no-js9", action="store_true", diff --git a/bin/deprecated-install-radiopadre b/bin/deprecated-install-radiopadre deleted file mode 100755 index 1df2ed8..0000000 --- a/bin/deprecated-install-radiopadre +++ /dev/null @@ -1,318 +0,0 @@ -#!/usr/bin/env python3 -import os -import subprocess -import sys -import shutil - -# get radiopadre install directory -PADRE_PATH = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) - -JS9_REPO = "https://github.com/ericmandel/js9.git" -JS9_DIR = PADRE_PATH + "/js9" - -CARTA_LINK = "https://github.com/CARTAvis/carta-releases/releases/download/v1.2.1/CARTA-v1.2.1-remote.tgz" - -import argparse -parser = argparse.ArgumentParser(description="Initializes radiopadre virtual environment and installs components") - -parser.add_argument("command",choices=["install", "reinstall", "reqs", "js9" ], default="install", nargs="?", - help="what to do. 'install' (default) to check and install as needed, 'reinstall' to reinstall everything " - "from scratch, 'reqs' or 'js9' to try installing just a single component.") -parser.add_argument("--js9", metavar="DIR", type=str, - help="JS9 source directory or repository URL. Default is to try {JS9_DIR}, then {JS9_REPO}. " - "Set to 'git' to force use of {JS9_REPO}.".format(**globals())) -parser.add_argument("--venv", type=str, - help="Install into non-default virtualenv.") -parser.add_argument("--client-path", type=str, default="~/radiopadre-client", - help="Path to radiopadre-client, for pip install -e. Specify 'None' to install from PyPI.") -parser.add_argument("--no-casacore", action="store_true", - help="ignores missing python-casacore. Table functionality will be reduced.") -parser.add_argument("--no-js9", action="store_true", - help="skips the JS9 installation. FITS functionality will be reduced.") -parser.add_argument("--cfitsio-path", metavar="DIR", type=str, default="/usr", - help="path to cfitsio installation. Default is %(default)s") -parser.add_argument("--inside-container", action="store_true", - help=argparse.SUPPRESS) -parser.add_argument("--skip-reqs", action="store_true", # ninja debug option - help=argparse.SUPPRESS) -parser.add_argument("--skip-burn", action="store_true", # ninja debug option - help=argparse.SUPPRESS) -parser.add_argument("--skip-git-pull", action="store_true", # ninja debug option - help=argparse.SUPPRESS) - -options = parser.parse_args() - -if not options.inside_container: - PADRE_WORKDIR = os.path.expanduser("~/.radiopadre") - PADRE_VENV = options.venv or PADRE_WORKDIR + "/venv" -else: - PADRE_WORKDIR = "/.radiopadre" - PADRE_VENV = options.venv or "/.radiopadre/venv" - -def message(x, prefix='install-radiopadre: '): - print(prefix + x.format(**globals())) - -def bye(x, code=1): - message(x) - sys.exit(code) - -def shell(cmd): - return subprocess.call(cmd.format(**globals()), shell=True) - -def which(cmd): - return subprocess.check_output("which {}".format(cmd), shell=True).strip() - -into_existing_venv = False -# See https://stackoverflow.com/questions/1871549/determine-if-python-is-running-inside-virtualenv -if hasattr(sys, 'real_prefix') or (hasattr(sys, 'base_prefix') and sys.base_prefix != sys.prefix): - into_existing_venv = True - message("Running inside virtualenv {sys.prefix}") - if options.command == "reinstall": - bye("Can't run reinstall inside a virtualenv. Please deactivate.") - if options.venv and not os.path.samefile(sys.prefix, options.venv): - bye("Specified --venv does not match the virtualenv we're running in.") - if PADRE_VENV != sys.prefix: - message("Assuming this is the virtualenv you want radiopadre installed in") - PADRE_VENV = sys.prefix -else: - message("Not running in a virtualenv") - -# check for casacore -if not options.no_casacore: - try: - import casacore.tables - except Exception as exc: - bye("Can't find casacore.tables ({exc}). Try apt install python3-casacore perhaps, or run with --no-casacore.") - -# check for JS9 requirements -if options.command in ["install", "reinstall", "js9"] and not options.no_js9: - try: - nodejs = subprocess.check_output("which nodejs || which node", shell=True) - except subprocess.CalledProcessError: - if os.path.exists(PADRE_VENV): - open(PADRE_VENV + "/js9status", "w").write("nodejs missing") - bye("Unable to find nodejs or node -- can't install JS9. Try apt-get install nodejs perhaps, or run with --no-js9") - -if options.command == "reinstall": - message("reinstall: burning it all down and starting over") - if os.path.exists(PADRE_VENV): - shutil.rmtree(PADRE_VENV) - -# Look for virtualenv. Burn it down if it needs a refresh. - -activation_script = os.path.join(PADRE_VENV, "bin/activate_this.py") -complete_cookie = os.path.join(PADRE_VENV, ".radiopadre.install.complete") - -if os.path.exists(activation_script): - message("Found existing radiopadre virtualenv in {PADRE_VENV}") - if options.command == "install": - if os.path.exists(complete_cookie): - bye("Nothing to be installed. Re-run with 'reinstall' to reinstall everything from scratch instead.", 0) - message("The installation appears to be incomplete. Burning it down and starting over.") - if not options.skip_burn: - shutil.rmtree(PADRE_WORKDIR) - -# Create workdir if needed -if not os.path.exists(PADRE_WORKDIR): - message("Creating {PADRE_WORKDIR}") - os.mkdir(PADRE_WORKDIR) - -# check again, maybe we burned it down -if not os.path.exists(activation_script): - # make new virtualenv - try: - subprocess.check_output("which virtualenv && which pip", shell=True) - except subprocess.CalledProcessError: - message("radiopadre requires a working virtualenv and pip, sorry. Try apt install pip virtualenv?") - sys.exit(1) - - message("Creating radiopadre virtualenv in {PADRE_VENV}") - site_packages = "--system-site-packages" if options.inside_container else "" - if shell("virtualenv -p python3 {PADRE_VENV} {site_packages}"): - bye("Failed to create virtualenv") -message("Activating virtualenv") -with open(activation_script) as f: - code = compile(f.read(), activation_script, 'exec') - exec(code, dict(__file__=activation_script), {}) - -# install requirements -if options.command in ["install", "reinstall", "reqs"] and not options.skip_reqs: - message("Installing dependencies. This may take a few minutes") - - ## For now, always install jupyter and notebook in the venv (whether in a container or not). - ## I couldn't figure out how to bolt on kernel.js and JS9 on a systemwide install properly, - ## so sticking with the virtualenv approach for now... - - if options.client_path and options.client_path != "None": - if shell("{PADRE_VENV}/bin/pip3 install -U -e {options.client_path}"): - bye("Client package ({options.client_path}) failed to pip install -e, see log above") - - if shell("{PADRE_VENV}/bin/pip3 install -U -e {PADRE_PATH}"): - bye("radiopadre package failed to pip install, see log above") - -# get jupyter base path -notebook_dir = subprocess.check_output(f"{PADRE_VENV}/bin/pip show jupyter| " - "grep Location:|cut -d ':' -f 2", shell=True).decode().strip() -if not notebook_dir: - raise subprocess.CalledProcessError(-1, "jupyter", "no jupyter found") - -# init radiopadre kernel etc. -if options.command in ["install", "reinstall", "reqs"]: - message("Creating radiopadre jupyter kernel") - if options.inside_container: - python, jupyter, user = "python", "jupyter", "" - else: - python, jupyter, user = f"{PADRE_VENV}/bin/python", f"{PADRE_VENV}/bin/jupyter", "--user" - cmd = f"{python} -m ipykernel install {user} --name radiopadre" - message(f" {cmd}") - if shell(cmd): - bye("jupyter kernel failed to install, see log above") - - # get path to it because we want to install our own kernel.js - out = kerneldir = '' - try: - out = subprocess.check_output(f"{jupyter} kernelspec list", shell=True) - except subprocess.CalledProcessError: - bye("jupyter kernelspec list failed, see log above") - - for line in out.decode().split("\n"): - columns = line.strip().split() - if columns[0] == "radiopadre": - kerneldir = columns[1] - break - else: - bye("jupyter kernelspec list did not return the radiopadre kernel. This is a bug?") - message("Linking kernel.js to {kerneldir}") - os.symlink(PADRE_PATH + "/html/radiopadre-kernel.js", kerneldir + "/kernel.js") - - -# add link to radiopadre web components in notebook static dir -if options.command in ["install", "reinstall", "reqs"]: - notebook_padre_www = notebook_dir + "/notebook/static/radiopadre-www" - padre_www = PADRE_PATH + "/html" - message("making link from {notebook_padre_www} to {padre_www}") - if not os.path.exists(notebook_padre_www): - os.symlink(padre_www, notebook_padre_www) - colormap_js = notebook_dir + "/notebook/static/js9colormaps.js" - message("creating colormap definitions in {colormap_js}") - shell("{PADRE_VENV}/bin/python {PADRE_PATH}/bin/install-js9-colormaps {colormap_js}") - shutil.copy(colormap_js, PADRE_WORKDIR) - -# add link to CARTA -if options.command in ["install", "reinstall", "reqs"]: - carta = PADRE_PATH + "/carta" - if not os.path.exists(carta): - carta_tarball = os.path.basename(CARTA_LINK) - carta_dir = os.path.splitext(carta_tarball)[0] - carta_tarball_path = os.path.join(PADRE_PATH, carta_tarball) - if os.path.exists(carta_tarball_path): - message(f"CARTA tarball {carta_tarball_path} is already here") - else: - message(f"Trying to download CARTA via {CARTA_LINK}") - subprocess.check_call(f"cd {PADRE_PATH}; wget {CARTA_LINK}", shell=True) - if not os.path.exists(carta_tarball_path): - bye(f"{carta_tarball} failed to download") - message(f"Unpacking CARTA tarball") - subprocess.check_call(f"cd {PADRE_PATH}; tar zxvf {carta_tarball}", shell=True) - message(f"Linking {carta} to {carta_dir}") - os.symlink(carta_dir, carta) - - if os.path.exists(carta): - carta_link = PADRE_VENV + "/carta" - message(f"Linking {carta_link} to {carta}") - if os.path.exists(carta_link): - os.unlink(carta_link) - os.symlink(carta, carta_link) - else: - message("No CARTA installation found") - - -if options.command in ["install", "reinstall", "js9"] and not options.no_js9: - js9status = open(PADRE_VENV + "/js9status", "w") - - # install JS9 inside venv - # determine whether to use existing directory or repo - js9_git = js9_dir = js9_temp = None - if options.js9: - if options.js9 == 'git': - js9_git = JS9_REPO - message("Will clone JS9 from default location ({JS9_REPO})") - elif options.js9.split(":")[0] in ["http", "git"]: - js9_git = options.js9 - message("Will clone JS9 from {js9_git}") - elif os.path.isdir(options.js9): - js9_dir = options.js9 - message("Will install JS9 from local directory {js9_dir}") - else: - js9status.write("not a valid repo") - bye("--js9 {options.js9}: not a valid directory or git repository") - elif os.path.isdir(JS9_DIR): - js9_dir = JS9_DIR - message("Will install JS9 from default directory {js9_dir}") - else: - js9_git = JS9_REPO - message("{JS9_DIR} not found. Will clone JS9 from default location ({JS9_REPO})") - - # Run git clone if needed - if js9_git: - if os.access(PADRE_PATH, os.W_OK) and not os.path.exists(JS9_DIR): - js9_dir = JS9_DIR - else: - import tempfile - js9_dir = js9_temp = tempfile.mkdtemp(prefix="js9") - message("Cloning {js9_git} into {js9_dir}") - if shell("git clone {js9_git} {js9_dir}") != 0: - js9status.write("git clone failed") - bye("Failed to clone JS9 repo, see log above") - else: - if js9_dir == JS9_DIR and os.access(JS9_DIR, os.W_OK) and os.path.exists(JS9_DIR + "/.git"): - if not options.skip_git_pull: - message("Will do a git pull in {js9_dir}") - if shell("git -C {js9_dir} pull") != 0: - js9status.write("git pull failed") - bye("Failed to git pull in JS9 directory, see log above") - - # Configure and install - js9_www = PADRE_VENV + "/js9-www" - if subprocess.call("""cd {js9_dir} && \ - ./configure --prefix={PADRE_VENV} --with-webdir={js9_www} --with-helper=nod --with-cfitsio={options.cfitsio_path} && \ - make && make install""".format(**globals()), shell=True): - js9status.write("build failed") - bye("Failed to configure and/or build JS9 in {js9_dir}, see log above. Fix it, or run with --no-js9.") - - # check for cfitsio - try: - output = subprocess.check_output("grep FITSLIB {js9_dir}/config.log".format(**globals()), shell=True) - if output.strip() != b"FITSLIB='cfitsio'": - raise subprocess.CalledProcessError("cfitsio",-1,"no cfitsio") - except subprocess.CalledProcessError: - js9status.write("cfitsio missing") - bye("JS9 did not find the cfitsio library. Try installing it (apt install libcfitsio-dev), and/or specifying" - " the path to it with --cfitsio-path, and/or running with --no-js9 if you're really stuck.") - - # Make symlink to js9 install dir in notebook dir - notebook_js9_www = notebook_dir + "/notebook/static/js9-www" - message("making link from {notebook_js9_www} to {js9_www}") - if not os.path.exists(notebook_js9_www): - os.symlink(js9_www, notebook_js9_www) - - notebook_socket_io = notebook_dir + "/notebook/static/socket.io.js" - js9_socket_io = js9_www + "/node_modules/socket.io-client/dist/socket.io.js" - message("making link from {notebook_socket_io} to {js9_socket_io}") - if not os.path.exists(notebook_socket_io): - os.symlink(js9_socket_io, notebook_socket_io) - - # copy config - shutil.copy2(PADRE_PATH + "/js9-config/js9prefs.js", js9_www) - shutil.copy2(PADRE_PATH + "/js9-config/js9Prefs.json", js9_www) - - if js9_temp: - message("Removing JS9 source directory {js9_temp}") - shutil.rmtree(js9_temp) - - js9status.write(os.path.abspath(js9_www)) - - -open(complete_cookie, "w").write("installed by {__file__}".format(**globals())) - -message("Installation successful!") \ No newline at end of file diff --git a/bin/deprecated-run-radiopadre b/bin/deprecated-run-radiopadre deleted file mode 100755 index 81dcd57..0000000 --- a/bin/deprecated-run-radiopadre +++ /dev/null @@ -1,1488 +0,0 @@ -#!/usr/bin/python -from __future__ import print_function -import sys, os.path, os, subprocess, glob, socket, shutil, uuid, argparse, re, tempfile, select, time -from collections import OrderedDict - - -# ### some globals - -# default repo and branch to use when initializing a remote installation -REPO = "git@github.com:ratt-ru/radiopadre.git" -BRANCH = "issue-39-40" - -# ports used when running inside a container -CONTAINER_PORTS = 11001, 11002, 11003, 11004, 11005 - -# docker image to use -DEFAULT_DOCKER_IMAGE = "osmirnov/radiopadre:release" - -# system uname -UNAME = subprocess.check_output("uname").strip() - -# current user -USER = os.environ['USER'] - -# default browser command is xdg-open on Linux, open on OSX -DEFAULT_BROWSER = os.environ.get("RADIOPADRE_BROWSER", "open" if UNAME == "Darwin" else "xdg-open") - -DEVZERO = open("/dev/zero") -DEVNULL = open("/dev/null", "w") - - -# ### some helper functions - -def message(x, prefix='run-radiopadre-server: ', file=None, raw=False): - """Prints message, interpolating globals with .format()""" - if not raw: - x = x.format(**globals()) - print(prefix + x, file=file or sys.stdout) - -def bye(x, code=1): - """Prints message, interpolating globals with .format(). Exits with given code""" - message(x, file=sys.stderr) - sys.exit(code) - -def shell(cmd): - """Runs shell command, interpolating globals with .format()""" - return subprocess.call(cmd.format(**globals()), shell=True) - -def make_dir(name): - """Makes directory, if one does not exist. Interpolates '~' in names.""" - name = os.path.expanduser(name) - if not os.path.exists(name): - os.mkdir(name) - return name - -def make_link(src, dest, rm_fr=False): - """Makes links.""" - if os.path.exists(dest): - if rm_fr: - subprocess.call(["rm","-fr",dest]) - else: - os.unlink(dest) - os.symlink(os.path.abspath(src), dest) - -def find_which(command): - """ - Returns the equivalent of `which command`, or None is command is not found - """ - try: - binary = subprocess.check_output("which {}".format(command), shell=True).strip() - except subprocess.CalledProcessError as exc: - if exc.returncode == 1: - return None - raise - return binary - -def find_unused_port (base, maxtries=10000): - """Helper function. Finds an unused server port""" - if base > 65535: - base = 1025 - for i in xrange(maxtries): - serversocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) - try: - serversocket.bind(("localhost", base)) - serversocket.close() - return base - except: - base += 1 - continue - raise RuntimeError("unable to find free socket port") - -class Poller(object): - """Poller class. Poor man's select.poll(). Damn you OS/X and your select.poll will-you-won'y-you bollocks""" - def __init__ (self): - self.fdlabels = {} - - def register_file(self, fobj, label): - self.fdlabels[fobj.fileno()] = label, fobj - - def register_process(self, po, label_stdout='', label_stderr=''): - self.fdlabels[po.stdout.fileno()] = label_stdout, po.stdout - self.fdlabels[po.stderr.fileno()] = label_stderr, po.stderr - - def poll(self, timeout=5): - to_read, _, _ = select.select(self.fdlabels.keys(), [], [], timeout) - return [self.fdlabels[fd] for fd in to_read] - - -parser = argparse.ArgumentParser(description=""" - Manages local or remote Jupyter sessions with radiopadre notebooks. - """, - formatter_class=argparse.RawTextHelpFormatter) - -# parser.add_option("--port-query",type=int,metavar="N", -# help="looks for N unused ports and reports them. For internal use."); -parser.add_argument("-b","--browser", action="store_true", - help="open a browser session, even if running under ssh.") -parser.add_argument("-n","--no-browser",action="store_true", - help="do not open a browser session, even if running locally.") -parser.add_argument("--browser-command", type=str, metavar="CMD", default=DEFAULT_BROWSER, - help="browser command to run. Default is %(default)s (can also set RADIOPADRE_BROWSER).") - -parser.add_argument("-V", "--virtual-env", action="store_true", - help="run radiopadre using a virtualenv+local install, rather than via Docker (default).") -parser.add_argument("--venv-reinstall", action="store_true", - help="virtualenv: reinstall radiopadre virtual environment before running.") -parser.add_argument("--venv-no-casacore", action="store_true", - help="virtualenv: ignore casacore installation errors, if bootstrapping.") -parser.add_argument("--venv-no-js9", action="store_true", - help="virtualenv: Ignore JS9 installation errors, if bootstrapping.") - -parser.add_argument("-D", "--docker", action="store_true", - help="forces use of Docker for container mode. Default is to use Singularity if found, and fall\n" - "back to Docker if not.") - -parser.add_argument("-S", "--singularity", action="store_true", - help="forces use of Singularity for container mode. Fail if Singularity is not found.") - - -parser.add_argument("-C", "--container-dev", "--docker-dev", action="store_true", - help="runs radiopadre via a Docker or Singularity container, but mounts the host-installed\n" - "version of radiopadre inside it. Intended for developers.") -parser.add_argument("--docker-image", type=str, metavar="IMAGE", default=DEFAULT_DOCKER_IMAGE, - help="Which Docker image to use. Default is %(default)s.") -parser.add_argument("--docker-detach", action="store_true", - help="detach from container and exit after setting everything up.") -parser.add_argument("--docker-debug", action="store_true", - help="run container in debug mode, with output to screen.") - -parser.add_argument("--auto-init", action="store_true", - help="automatically initialize radiopadre installation, if missing on remote.\n" + - "In virtualenv mode, also initialize virtual environment, if missing.") -parser.add_argument("--remote-path", type=str, metavar="PATH", - help="for virtualenv or dev-docker mode: directory in which remote radiopadre is installed.\n"+ - "Default is to try ~/radiopadre first, and PATH second.\n") -parser.add_argument("-u","--update",action="store_true", - help="in virtualenv mode: update remote radiopadre installation using git pull.\n" - "in docker mode: update docker container using docker pull.") - -parser.add_argument("--no-default",action="store_true", - help="if no notebooks are found in the specified directory, default is to create\n" - "a radiopadre-default.ipynb with some boilerplate. Use this option to disable.") -parser.add_argument("-a", "--auto-load",action="store_true", - help="automatically load first notebook found, if one is not given explicitly.") -parser.add_argument("-v", "--verbose", action="store_true", - help="Enable verbose output.") - -parser.add_argument("arguments", nargs="*", - help="""One or more arguments, as follows: - directory[/notebook.ipynb] - load local notebook or directory; - [user@]remote_host:directory[/notebook.ipynb] - run a remote radiopadre session, loading the specified notebook or directory; - [user@]remote_host:directory notebook.ipynb - run a remote radiopadre session, copying over the specified notebook if it doesn't - already exist on the remote; - ps - list available local containerized radiopadre sessions; - resume [ID] - reconnect to a containerized radiopadre session. If an ID is not given, - reconnects to first available session; - kill [ID(s)|all] - kills specified containerized session, or all sessions - [user@]remote_host:ps - list available containerized radiopadre sessions on remote host; - [user@]remote_host:resume [ID] - reconnect to a containerized radiopadre session on remote host; - [user@]remote_host:kill [ID|all] - kills a specific radiopadre session, or all sessions on remote host; - """) - -# internal switches used when running in container -parser.add_argument("--inside-container", type=str, metavar="", help=argparse.SUPPRESS) -parser.add_argument("--workdir", type=str, help=argparse.SUPPRESS) -# internal switch to run script in remote mode. -parser.add_argument("--remote", type=str, metavar="", help=argparse.SUPPRESS) - -options = parser.parse_args() - -make_dir("~/.radiopadre") -SESSION_INFO_DIR = os.path.expanduser("~/.radiopadre/.sessions") -make_dir(SESSION_INFO_DIR) - -# redirect stdout/err if inside a container -if options.inside_container and not options.docker_debug: - container_name = os.environ['RADIOPADRE_CONTAINER_NAME'] - sys.stdout = open("{}/{}/stdout.log".format(SESSION_INFO_DIR, container_name), 'w') - sys.stderr = open("{}/{}/stderr.log".format(SESSION_INFO_DIR, container_name), 'w') - -### PARSE ARGUMENTS - -# check for contradictions -if options.virtual_env and options.container_dev: - parser.error("can't use --virtual-env with --container-dev") - -# running inside container uses venv mode by definition -if options.inside_container: - options.virtual_env = True - -# remote_host: user@remote, or None in local mode -# command: command part, could still be a notebook/directory at this stage -copy_initial_notebook = remote_host = command = notebook_path = None -arguments = list(options.arguments) - -# figure out if remote mode is being invoked -if not arguments: - remote_host, command = None, '.' -else: - if ':' in arguments[0]: - remote_host, command = arguments.pop(0).split(':', 1) # recognize both host:command and host: command - if not command and arguments: - command = arguments.pop(0) - else: - remote_host, command = None, arguments.pop(0) - -# work out command and its arguments -if command == 'ps': - if arguments: - parser.error("ps takes no arguments") -elif command == 'resume': - if len(arguments) > 1: - parser.error("resume takes at most one argument") -elif command == 'kill': - if not arguments: - parser.error("kill: specify at least one arguments") -else: - notebook_path = command - if not remote_host and not os.path.exists(notebook_path): - parser.error("{} is neither a directory, nor a notebook, nor a recognized command".format(notebook_path)) - command = 'load' - # in remote mode, allow an optional argument - if remote_host: - copy_initial_notebook = arguments.pop(0) if arguments else None - if arguments: - parser.error("too many arguments") - -if options.inside_container: - import signal - signal.signal(signal.SIGHUP, lambda sig, frame:sys.exit(1)) - - -default_notebook_code = """{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### This is a very basic default radiopadre notebook to start you browsing" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# execute this with Ctrl+Enter\\n", - "from radiopadre import ls, settings\\n", - "dd = ls()\\n", - "dd" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "dd[0]" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "radiopadre", - "language": "python", - "name": "radiopadre" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 2 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython2", - "version": "2.7.15rc1" - }, - "radiopadre_notebook_scrub": true - }, - "nbformat": 4, - "nbformat_minor": 2 -} -""" - - -# ### REMOTE MODE ################################################################################################# - -if remote_host: - # if options.docker: - # if options.container_dev: - # parser.error("Can't combine -d/--docker and -D/--dev-docker modes") - # if options.init_remote: - # parser.error("Can't combine -d/--docker and --init-remote modes") - - # Find remote run-radiopadre-server script - - if options.remote_path: - padre_execs = [ os.path.join(options.remote_path, "bin/run-radiopadre-server") ] - else: - padre_execs = [ os.path.join("~/radiopadre/bin/run-radiopadre-server"), "run-radiopadre-server" ] - - DEVZERO = open("/dev/zero") - DEVNULL = open("/dev/null", "w") - - SSH_MUX_OPTS = "-o ControlPath=/tmp/ssh_mux_radiopadre_%C -o ControlMaster=auto -o ControlPersist=1h".split() - - SCP_OPTS = ["scp"] + SSH_MUX_OPTS - SSH_OPTS = ["ssh","-tt"] + SSH_MUX_OPTS + [remote_host] - #SSH_OPTS = ["ssh"] + SSH_MUX_OPTS + [host] - - # master ssh connection, to be closed when we exit - if options.verbose: - message("Opening initial master connection to {} {}. You may be prompted for your password.".format(remote_host, " ".join(SSH_OPTS))) - else: - message("Opening initial master connection to {}. You may be prompted for your password.".format(remote_host)) - ssh_master = subprocess.check_call(SSH_OPTS + ["exit"], stderr=DEVNULL) - - # raw_input("Continue?") - - def ssh_remote(command, fail_retcode=None, stderr=DEVNULL): - """Runs command on remote host. Returns its output if the exit status is 0, or None if the exit status matches fail_retcode. - - Any other non-zero exit status (or any other error) will result in an exception. - """ - try: - return subprocess.check_output(SSH_OPTS+[command], stderr=stderr) - except subprocess.CalledProcessError,exc: - if exc.returncode == fail_retcode: - return None - raise - - def ssh_remote_interactive(command, fail_retcode=None, stderr=DEVNULL): - """Runs command on remote host. Returns its output if the exit status is 0, or None if the exit status matches fail_retcode. - - Any other non-zero exit status (or any other error) will result in an exception. - """ - try: - return subprocess.check_call(SSH_OPTS+[command], stderr=stderr) - except subprocess.CalledProcessError,exc: - if exc.returncode == fail_retcode: - return None - raise - - def scp_to_remote(path, remote_path): - return subprocess.check_output(SCP_OPTS + [path, "{}:{}".format(remote_host, remote_path)]) - - def check_remote_file(remote_file, test="-x"): - """ - Checks that a remote file exists. 'test' is specified bash-style, e.g. "-x" for executable. - Can also use -f and -f, for example. - Returns True or False, or raises an exception on other errors. - """ - return ssh_remote("if [ {} {} ]; then exit 0; else exit 199; fi".format(test, remote_file), - fail_retcode=199, stderr=DEVNULL) is not None - - def check_remote_command(command): - """ - Checks that remote host has a particular command available. - Returns True or False, or raises an exception on other errors. - """ - return (ssh_remote("which "+command, fail_retcode=1, stderr=DEVNULL) or "").strip() - - # Check for various remote bits - - if options.verbose: - message("Checking installation on {remote_host}.") - has_venv = check_remote_command("virtualenv") and check_remote_command("pip") - has_git = check_remote_command("git") - has_singularity = check_remote_command("singularity") - has_docker = check_remote_command("docker") - - ## Look for remote launch script - - def help_yourself(problem, suggestion=None): - message("{}".format(problem)) - message("Please ssh {} and sort it out yourself, then rerun this script".format(remote_host)) - if suggestion: - message("({})".format(suggestion)) - sys.exit(1) - - bootstrap = False - padre_exec = "run-radiopadre-server" # path to remote padre executable - - # look for remote installation, unless we're explicitly set to docker mode - - if options.virtual_env or options.container_dev: - for padre_exec in padre_execs: - if check_remote_file(padre_exec): - message("Found remote radiopadre launch script at {}:{}".format(remote_host, padre_exec)) - if options.update: - padre_dir = os.path.dirname(os.path.dirname(padre_exec)) - message("--update specified, will try a git pull in {}".format(padre_dir)) - try: - ssh_remote("cd {} ; git checkout {}; git pull".format(padre_dir, BRANCH)) - except subprocess.CalledProcessError as exc: - message(exc.output) - help_yourself("git pull failed with exit code {}".format(exc.returncode)) - if options.virtual_env: - padre_exec += " --virtual-env" - break - else: - message("No run-radiopadre-server script found on {}".format(remote_host)) - if options.auto_init: - install_path = options.remote_path or "~/radiopadre" - message("I could try to bootstrap a radiopadre installation into {}:{}".format(remote_host, install_path)) - - if not has_git: - help_yourself("However, I don't see git installed on {}".format(remote_host), - "Try 'sudo apt instal git' on {}".format(remote_host)) - - if check_remote_file(install_path, "-d"): - message("However, the directory {}:{} already exists, so I'd rather not!".format(remote_host, install_path)) - help_yourself("This may be a sign of a broken radiopadre installation on {},".format(remote_host), - "(For example, remove {}:{} to bootstrap from scratch.)".format(remote_host, install_path)) - - message("(command would be 'git clone -b {} {} radiopadre')".format(BRANCH, REPO)) - - # try the bootstrap - message("Cloning {}, branch {} into {}:~/radiopadre".format(REPO, BRANCH, remote_host)) - ssh_remote_interactive("git clone -b {} {} radiopadre".format(BRANCH, REPO)) - padre_exec = os.path.join(install_path, "bin/run-radiopadre-server") - if not check_remote_file(padre_exec): - help_yourself("git clone ran, but I still don't see the launch script {}:{}".format(remote_host, padre_exec)) - message("Success! Running remote in bootstrap mode") - bootstrap = True - elif options.container_dev: - message("no remote installation detected and --auto-init not given: can't run --dev-docker mode") - sys.exit(1) - else: - bye("radiopadre: no remote installation detected, can't use --virtual-env mode.", 1) - - # look for remote virtualenv, unless we're in docker mode - - if options.virtual_env: - ## Check for remote virtualenv - remote_venv = "~/.radiopadre/venv" - if not options.venv_reinstall and check_remote_file(remote_venv + "/.complete", "-f"): - activate_script = "{}/bin/activate".format(remote_venv) - message("Testing the remote virtual environment at {}:{}".format(remote_host, remote_venv)) - try: - ssh_remote("source {}".format(activate_script)) - message("looks fine") - except subprocess.CalledProcessError as exc: - message(exc.output) - help_yourself("The remote virtual environment at {}:{} exists, but we can't seem to activate it".format(remote_host, remote_venv), - "Perhaps remove {}:{}, and I'll try to rebuild it from scratch.".format(remote_host, remote_venv)) - else: - if options.init: - if options.venv_reinstall: - message("--reinstall given, will reinstall remote virtual environment") - else: - message("Missing or incomplete remote virtual environment at {}:{}, but I can create it".format(remote_host, remote_venv)) - if not has_venv: - help_yourself("However, I don't see virtualenv and/or pip installed on {}".format(remote_host), - "Try 'sudo apt instal virtualenv pip' on {}".format(remote_host)) - - if bootstrap and not options.venv_reinstall: - message("Since we're bootstrapping a new installation, I will proceed to do so") - - bootstrap = True - else: - bye("radiopadre: no remote virtual environment detected, can't use --virtual-env mode.", 1) - - # copy notebook to remote - if copy_initial_notebook: - if not os.path.exists(copy_initial_notebook): - bye("{} doesn't exist".format(copy_initial_notebook)) - if check_remote_file(notebook_path or ".", "-d"): - nbpath = "{}/{}".format(notebook_path or ".", copy_initial_notebook) - if check_remote_file(nbpath, "-f"): - message("remote notebook {nbpath} exists, will not copy over") - else: - message("remote notebook {nbpath} doesn't exist, will copy over") - scp_to_remote(copy_initial_notebook, notebook_path) - notebook_path = nbpath - - # run remote in container mode - if not options.virtual_env: - if options.singularity and not has_singularity: - help_yourself("{} doesn't appear to have Singularity installed.".format(remote_host), - "Ask the admin to install Docker on {}".format(remote_host)) - if options.docker: - has_singularity = False - if not has_docker: - help_yourself("{} doesn't appear to have Docker installed.".format(remote_host), - "Ask the admin to install Docker on {} and to add you to the docker group.".format(remote_host)) - - if has_singularity: - padre_exec += " --singularity" - message("Using remote {has_singularity} to run in container mode") - elif has_docker: - padre_exec += " --docker" - message("Using remote {has_docker} to run in container mode") - else: - help_yourself("{} doesn't appear to have Singularity or Docker installed.".format(remote_host), - "Ask the admin to install either on {}. Otherwise, use --virtual-env mode?".format(remote_host)) - - if options.container_dev: - assert(padre_exec is not None) - padre_exec += " --container-dev" - message("Running remote in container-dev mode with image {options.docker_image}") - else: - if options.verbose: - message("copying run script and default notebook to {}:.radiopadre/tmp".format(remote_host)) - ssh_remote("mkdir -p ~/.radiopadre/tmp/bin ~/.radiopadre/tmp/notebooks") - scp_to_remote(__file__, ".radiopadre/tmp/bin") - tmpfile = tempfile.NamedTemporaryFile() - tmpfile.file.write(default_notebook_code) - tmpfile.file.flush() - scp_to_remote(tmpfile.name, ".radiopadre/tmp/notebooks") - tmpfile = None - padre_exec = "~/.radiopadre/tmp/bin/" + padre_exec - message("Running remote in Docker mode with image {options.docker_image}") - - if options.update: - padre_exec += " --update --docker-image " + options.docker_image - - # allocate 5 suggested ports (in resume mode, this will be overridden by the session settings) - starting_port = 10000 + os.getuid()*3 - ports = [] - for _ in range(5): - starting_port = find_unused_port(starting_port+1, 10000) - ports.append(starting_port) - - if options.auto_init: - padre_exec += " --auto-init" - if options.venv_reinstall: - padre_exec += " --venv-reinstall" - if options.venv_no_casacore: - padre_exec += " --venv-no-casacore" - if options.venv_no_js9: - padre_exec += " --venv-no-js9" - if options.verbose: - padre_exec += " --verbose" - - padre_exec += " --remote {} {} {}".format(":".join(map(str, ports)), command if command is not "load" else notebook_path, - " ".join(arguments)) - - # start ssh subprocess to launch notebook - args = list(SSH_OPTS) + [padre_exec] - - message("running {args}") - ssh = subprocess.Popen(args, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) - - poller = Poller() - poller.register_process(ssh, remote_host, remote_host + " stderr") - if not options.virtual_env: - poller.register_file(sys.stdin, "stdin") - - ssh2 = None - local_ports = [] - remote_ports = session_id = container_name = None - urls = [] - remote_running = False - status = 0 - - try: - while remote_running is not None: - fdlist = poller.poll() - for fname, fobj in fdlist: - try: - line = fobj.readline() - except EOFError: - line = '' - if fobj is sys.stdin and line and line[0].upper() == "Q": - sys.exit(0) - # break out if ssh closes - if not line: - if options.verbose: - message("ssh process to {} has exited".format(remote_host)) - remote_running = None - break - line = line.strip() - # print remote output - print_output = False - if fobj is ssh.stderr: - print_output = not line.startswith("Shared connection to") - else: - print_output = not line.startswith("run-radiopadre-server:") or command != 'load' - if options.verbose or print_output: - print("\r{}: {}\r".format(fname, line)) - if not line: - continue - # if remote is not yet started, check output - if not remote_running: - # check for session ID - match = re.match(".*Session ID/notebook token is '([0-9a-f]+)'", line) - if match: - session_id = match.group(1) - continue - # check for notebook port, and launch second ssh when we have it - match = re.match(".*Selected ports: ([\d]+):([\d]+):([\d]+):([\d]+):([\d]+)" + - "\s+([\d]+):([\d]+):([\d]+):([\d]+):([\d]+)[\s]*$", line) - if match: - ports = map(int, match.groups()) - remote_jupyter_port, remote_js9helper_port, remote_http_port, remote_carta_port,\ - remote_carta_ws_port = remote_ports = ports[:5] - local_ports = ports[5:] - if options.verbose: - message("Detected ports {}:{}:{}:{}:{} -> {}:{}:{}:{}:{}".format(*ports)) - ssh2_args = ["ssh"] + SSH_MUX_OPTS + ["-O", "forward", remote_host] - for loc, rem in zip(local_ports, remote_ports): - ssh2_args += [ "-L", "localhost:{}:localhost:{}".format(loc, rem)] - # tell mux process to forward the ports - if options.verbose: - message("sending forward request to ssh mux process".format(ssh2_args)) - subprocess.call(ssh2_args) - continue - - # check for launch URL - match = re.match(".*Browse to URL: ([^\s]+)", line) - if match: - urls.append(match.group(1)) - continue - - # check for container name - match = re.match(".*Container name: ([^\s]+)", line) - if match: - container_name = match.group(1) - continue - - if "Jupyter Notebook is running" in line: - remote_running = True - time.sleep(1) - for url in urls: - # open browser if needed - if not options.no_browser: - message("running {} {}\r".format(options.browser_command, url)) - message(" if this fails, specify a correct browser invocation command with --browser-command and rerun,") - message(" or else browse to the URL given above (\"Browse to URL:\") yourself.") - try: - subprocess.call([options.browser_command, url], stdout=DEVNULL) - except OSError as exc: - if exc.errno == 2: - message("{} not found".format(options.browser_command)) - else: - raise - else: - message("-n/--no-browser given, not opening a browser for you\r") - message("Please browse to: {}\n".format(url)) - message("The remote radiopadre session is now fully up") - if options.virtual_env: - message("Press Ctrl+C to kill the remote session") - else: - message("Press Q to detach from remote session, or Ctrl+C to kill it") - - except SystemExit as exc: - status = exc.code - - except KeyboardInterrupt: - message("Ctrl+C caught") - status = 1 - - if status and not options.virtual_env and container_name: - message("killing remote container {container_name}") - try: - ssh_remote("docker kill {}".format(container_name)) - except subprocess.CalledProcessError as exc: - message(exc.output) - - ssh.kill() - - # os.system("reset") - sys.exit(status) - -# ### END OF REMOTE MODE ############################################################################################ - -# ### LOCAL MODE #################################################################################################### - -message("Welcome to Radiopadre!") - -if options.virtual_env or options.inside_container: - docker = singularity = None -else: - singularity = find_which("singularity") - docker = find_which("docker") - if options.singularity and not singularity: - bye("singularity binary not found") - if options.docker: - singularity = None - if not docker: - bye("docker binary not found") - if singularity: - message("Using {singularity} for container mode") - docker = None - elif docker: - message("Using {docker} for container mode") - else: - bye("neither singularity nor docker found. Use --virtual-env perhaps?") - -child_processes = [] - -# if not None, gives the six port assignments -attaching_to_ports = container_name = None - -def ps_containers(): - """Returns OrderedDict (ordered by uptime) of containers returned by docker ps. - Dict is name -> [id, path, uptime, None, None]""" - lines = subprocess.check_output([docker, "ps", "--filter", "label=radiopadre.user={}".format(USER), - "--format", """{{.CreatedAt}}:::{{.ID}}:::{{.Names}}:::{{.Label "radiopadre.dir"}}"""]).strip() - container_list = sorted([line.split(":::") for line in lines.split("\n") if len(line.split(":::")) == 4], reverse=True) - return OrderedDict([(name, [id_, path, time, None, None]) for time, id_, name, path in container_list]) - -def read_session_info(dirname): - """Reads the given session ID file. Returns session_id, ports, or else throws a ValueError""" - comps = open(dirname + "/info").read().strip().split(" ") - if len(comps) != 11: - raise ValueError("invalid session dir " + dirname) - session_id = comps[0] - try: - ports = map(int, comps[1:]) - except: - raise ValueError("invalid session dir " + dirname) - return session_id, ports - - -def running_containers(): - """Returns OrderedDict (ordered by uptime) of running containers with their session IDs. Clears up dead sessions. - Dict is id -> [name, path, uptime, session_id, ports]""" - container_dict = ps_containers() - # match session files to containers - for session_dir in glob.glob(SESSION_INFO_DIR + "/radiopadre-*"): - name = os.path.basename(session_dir) - if name not in container_dict: - message("container {} is no longer running, clearing up session dir".format(name)) - subprocess.call(["rm", "-fr", session_dir]) - continue - try: - container_dict[name][3], container_dict[name][4] = read_session_info(session_dir) - except ValueError: - message("invalid session dir {session_dir}") - continue - output = OrderedDict() - - # check for containers without session info and form up output dict - for name, (id_, path, time, session_id, ports) in container_dict.items(): - if session_id is None: - message("container {} has no session dir -- killing it".format(name)) - subprocess.call([docker, "kill", id_]) - else: - output[id_] = [name, path, time, session_id, ports] - - return output - - -def identify_container(container_dict, arg): - """Returns ID of container corresponding to ID or number. Throws errors on mismatch.""" - if len(arg) <= 4 and re.match('^\d+$', arg): - arg = int(arg) - if arg >= len(container_dict): - bye("invalid container #{}, we only have {} running".format(arg, len(container_dict))) - return container_dict.keys()[arg] - elif arg not in container_dict: - bye("invalid container ID {}".format(arg)) - return arg - -# ### ls command -if command == 'ps': - if not docker: - bye("ps command not available in --virtualenv mode") - container_dict = running_containers() - num = len(container_dict) - message("{} container{} running".format(num, "s" if num != 1 else "")) - for i, (id, (name, path, uptime, session_id, ports)) in enumerate(container_dict.items()): - print("{i}: id {id}, name {name}, in {path}, up since {uptime}".format(**locals())) - sys.exit(0) - -# ### kill command -if command == 'kill': - if not docker: - bye("kill command not available in --virtualenv mode") - all_containers = running_containers() - if not all_containers: - bye("no containers running, nothing to kill") - if arguments[0] == "all": - kill_containers = all_containers.keys() - else: - kill_containers = [identify_container(all_containers, arg) for arg in arguments] - - kill_cont = " ".join(kill_containers) - message("killing containers: {}".format(kill_cont)) - for cont in kill_containers: - if cont not in all_containers: - bye("no such radiopadre container: {}".format(cont)) - name, path, _, _, _ = all_containers[cont] - session_id_file = "{}/{}".format(SESSION_INFO_DIR, name) - if os.path.exists(session_id_file): - subprocess.call(["rm", "-fr", session_id_file]) - shell("docker kill " + kill_cont) - sys.exit(0) - -## attach command -if command == "resume": - if not docker: - bye("resume command not available in --virtualenv mode") - all_containers = running_containers() - if arguments: - id_ = identify_container(all_containers, arguments[0]) - else: - if not all_containers: - bye("no containers running, nothing to attach to") - id_ = all_containers.keys()[0] - container_name, path, _, session_id, attaching_to_ports = all_containers[id_] - message(" Attaching to existing container (ID: {id_}) running in {path}") - -# load command -elif command == 'load': - attaching_to_ports = None - -# else unknown command -else: - parser.error("unknown command {}".format(command)) - - -# ### SETUP LOCAL SESSION PROPERTIES: container_name, session_id, port assignments - -# REATTACH MODE: everything is read from the session file -if attaching_to_ports: - # session_id and container_name already set above. Ports read from session file and printed to the console - # for the benefit of the remote end (if any) - jupyter_port, helper_port, http_port, carta_port, carta_ws_port = selected_ports = attaching_to_ports[:5] - userside_ports = attaching_to_ports[5:] -# INSIDE CONTAINER: internal ports are fixed, userside ports are passed in, name is passed in, session ID is read from file -elif options.inside_container: - message("started the radiopadre container") - container_name = os.environ['RADIOPADRE_CONTAINER_NAME'] - session_id, _ = read_session_info("{}/{}".format(SESSION_INFO_DIR, container_name)) - os.environ['RADIOPADRE_SESSION_ID'] = session_id - ports = map(int, options.inside_container.split(":")) - selected_ports = ports[:5] - userside_ports = ports[5:] - message(" Inside container, using ports {}".format(ports)) -# NORMAL MODE: find unused internal ports. Userside ports are passed from remote if in remote mode, or same in local mode -else: - if not options.virtual_env: - container_name = "radiopadre-{}-{}".format(USER, uuid.uuid4().hex) - message(" Starting new session in container {container_name}") - else: - container_name = None - message(" Starting new session in virtual environment") - selected_ports = [ find_unused_port(1024) ] - for i in range(4): - selected_ports.append(find_unused_port(selected_ports[-1] + 1)) - - if options.remote: - userside_ports = map(int, options.remote.split(":")) - else: - userside_ports = selected_ports - - os.environ['RADIOPADRE_SESSION_ID'] = session_id = uuid.uuid4().hex - - # write out session file - if container_name: - session_info_dir = "{}/{}".format(SESSION_INFO_DIR, container_name) - make_dir(session_info_dir) - session_info_file = session_info_dir + "/info" - open(session_info_file, "w").write("{} {} {} {} {} {} {} {} {} {} {}".format( - session_id, *(selected_ports+userside_ports))) - os.chmod(session_info_file, 0600) - userside_helper_port = userside_ports[1] - open(session_info_dir + "/js9prefs.js", "w").write("JS9Prefs.globalOpts.helperPort = {};\n".format(userside_helper_port)) - -jupyter_port, helper_port, http_port, carta_port, carta_ws_port = selected_ports -userside_jupyter_port, userside_helper_port, userside_http_port, userside_carta_port, userside_carta_ws_port = userside_ports - -# print port assignments to console -- in remote mode, remote script will parse this out -if not options.inside_container: - message(" Selected ports: {}:{}:{}:{}:{} {}:{}:{}:{}:{}".format(*(selected_ports+userside_ports))) - message(" Session ID/notebook token is '{}'".format(session_id)) - if container_name is not None: - message(" Container name: {container_name}") - - -# ### will we be starting a browser? - -browser = False -if options.inside_container: - if options.verbose: - message(" Running inside container -- not opening a browser in here.") -elif options.remote: - if options.verbose: - message(" Remote mode -- not opening a browser locally.") -elif os.environ.get("SSH_CLIENT"): - message("You appear to have logged in via ssh.") - if options.browser: - message("--browser is set so I will open a browser anyway") - browser = True - else: - message("You're logged in via ssh, so I'm not opening a web browser for you.") - message("Please manually browse to the URL printed by Jupyter below. You will probably want to employ ssh") - message("port forwarding if you want to browse this notebook from your own machine.") - browser = False -else: - message("You appear to have a local session.") - if options.no_browser: - message("--no-browser is set, we will not invoke a browser.") - message("Please manually browse to the URL printed below.") - browser = False - else: - message("We'll attempt to open a web browser (using '{options.browser_command}') as needed. Use --no-browser to disable this.") - browser = True - -# ### ATTACHING TO EXISTING SESSION: complete the attachment and exit - -if attaching_to_ports: - url = "http://localhost:{}/tree#running?token={}".format(userside_jupyter_port, session_id) - # in local mode, see if we need to open a browser. Else just print the URL -- remote script will pick it up - if not options.remote and browser: - message("driving browser: {options.browser_command} {url}") - subprocess.call([options.browser_command, url], stdout=DEVNULL) - time.sleep(1) - else: - message("Browse to URL: {url}") - # emit message so remote initiates browsing - if options.remote: - message("The Jupyter Notebook is running inside the reattached session, presumably") - if options.verbose: - message("sleeping") - while True: - time.sleep(1000000) - sys.exit(0) - -# ### NEW SESSION: from this point on, we're opening a new session - -# ### setup working directory and notebook paths - -# if explicit notebook directory is given, change into it before doing anything else -if notebook_path: - if not os.path.exists(notebook_path): - bye("{} doesn't exist".format(notebook_path)) - if os.path.isdir(notebook_path): - os.chdir(notebook_path) - notebook_path = '.' - LOAD_DIR = True - LOAD_NOTEBOOK = None - else: - nbdir = os.path.dirname(notebook_path) - if nbdir: - os.chdir(nbdir) - notebook_path = os.path.basename(notebook_path) - LOAD_DIR = False - LOAD_NOTEBOOK = notebook_path -else: - LOAD_DIR = '.' - LOAD_NOTEBOOK = None - -# get radiopadre install directory. __file__ is RADIOPADRE/bin/run-radiopadre-server, so take the dirname twice -PADRE_PATH = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) -# cache and shadow dir base -PADRE_WORKDIR = options.workdir or os.path.expanduser("~/.radiopadre") -os.environ['RADIOPADRE_SHADOW_HOME'] = PADRE_WORKDIR - -# virtual environment -PADRE_VENV = "/.radiopadre/venv" if options.inside_container else PADRE_WORKDIR + "/venv" -os.environ["RADIOPADRE_VENV"] = PADRE_VENV - -# target directory -ABSROOTDIR = ROOTDIR = os.path.abspath(os.getcwd()) # e.g. /home/other/path -# shadow of target directory -SHADOWDIR = PADRE_WORKDIR + ROOTDIR # e.g. ~/.radiopadre/home/other/path -if not os.path.exists(SHADOWDIR): - os.system("mkdir -p {}".format(SHADOWDIR)) -# This is where the per-session js9prefs.js goes. In virtualenv mode, this is just a directory -# In docker mode, we mount session_info_dir on this -SESSION_DIR = ABSROOTDIR + "/.radiopadre-session" -SHADOW_SESSION_DIR = SHADOWDIR + "/.radiopadre-session" - -# make .radiopadre and .radiopadre-session in target dir, or in shadow dir -cachedir = ABSROOTDIR + "/.radiopadre" -cachelink = SHADOWDIR + "/.radiopadre" -if os.access(ABSROOTDIR, os.W_OK): - make_dir(cachedir) - make_link(cachedir, cachelink, rm_fr=True) - make_dir(SESSION_DIR) - make_link(SESSION_DIR, SHADOW_SESSION_DIR, rm_fr=True) -else: - if os.path.islink(cachelink): - os.unlink(cachelink) - make_dir(cachelink) - if os.path.islink(SHADOW_SESSION_DIR): - os.unlink(SHADOW_SESSION_DIR) - make_dir(SHADOW_SESSION_DIR) - - -JUPYTER_OPTS = [ - "notebook", - "--ContentsManager.pre_save_hook=radiopadre_utils.notebook_utils._notebook_save_hook", - "--ContentsManager.allow_hidden=True" ] - -activation_script = os.path.join(PADRE_VENV, "bin/activate_this.py") -complete_cookie = os.path.join(PADRE_VENV, ".complete") - -# Switch into virtualenv, unless we're using docker -if options.virtual_env: - # See https://stackoverflow.com/questions/1871549/determine-if-python-is-running-inside-virtualenv - if hasattr(sys, 'real_prefix') or (hasattr(sys, 'base_prefix') and sys.base_prefix != sys.prefix): - if sys.prefix == PADRE_VENV: - message("Already running inside radiopadre virtual environment") - else: - bye("Can't run this script inside a non-radiopadre virtualenv. Please deactivate and rerun.") - else: - if os.path.exists(activation_script) and os.path.exists(complete_cookie) and not options.venv_reinstall: - message("Found radiopadre virtualenv in {PADRE_VENV}") - elif options.bootstrap or options.venv_reinstall: - if options.venv_reinstall: - message("Will reinstall radiopadre virtualenv using install-radiopadre") - else: - message("Can't find complete radiopadre virtualenv, bootstrapping with install-radiopadre") - if shell("{}/bin/install-radiopadre {} {} reinstall".format(PADRE_PATH, - "--no-casacore" if options.venv_no_casacore else "", - "--no-js9" if options.venv_no_js9 else "", - )): - bye("Installation script failed") - - message("Activating the radiopadre virtualenv via {activation_script}") - execfile(activation_script, dict(__file__=activation_script)) - -if not options.virtual_env: - docker_image = options.docker_image - if docker_image[0] == ":": - docker_image = DEFAULT_DOCKER_IMAGE.split(":")[0] + docker_image - if singularity: - singularity_image = os.path.expanduser("~/.radiopadre/{}.singularity.img".format(docker_image.replace("/", "_"))) - if options.update and os.path.exists(singularity_image): - os.unlink(singularity_image) - if not os.path.exists(singularity_image): - message(" Rebuilding radiopadre Singularity image {singularity_image} from docker://{docker_image}") - message(" (This may take a few minutes....)") - subprocess.call([singularity, "build", singularity_image, "docker://{}".format(docker_image)]) - else: - message(" Using radiopadre Singularity image {singularity_image}") - elif docker: - message(" Using radiopadre Docker image {docker_image}") - if options.update: - message(" Calling docker pull to make sure the image is up-to-date.") - message(" (This may take a few minutes if it isn't....)") - subprocess.call([docker, "pull", docker_image]) - -elif not options.inside_container: - message(" Using radiopadre install at {PADRE_PATH}") - -# directory where we were originally run -os.environ['RADIOPADRE_ABSROOTDIR'] = ABSROOTDIR - -# check if a root directory needs to be faked -# if not, make .radiopadre workdir -if os.access(ROOTDIR, os.W_OK): - os.environ['RADIOPADRE_SERVER_BASEDIR'] = ABSROOTDIR - orig_rootdir = None -else: - message(" Target is {ROOTDIR}, which is not user-writeable. Will use a shadow directory instead.") - message(" Shadow directory is {SHADOWDIR}") - orig_rootdir = ROOTDIR - os.environ['RADIOPADRE_SERVER_BASEDIR'] = ROOTDIR = SHADOWDIR - os.chdir(SHADOWDIR) - -make_dir(".radiopadre") - - -# when running natively (i.e. in a virtual environment), the notebook app doesn't pass the token to -# the browser command properly... so let it pick its own token then -#if options.remote or options.inside_container or not options.virtual_env: -JUPYTER_OPTS += [ - "--NotebookApp.token='{}'".format(session_id), - "--NotebookApp.custom_display_url='http://localhost:{}'".format(userside_jupyter_port) -] - -#=== figure out whether we initialize or load a notebook - -ALL_NOTEBOOKS = glob.glob("*.ipynb") - -if orig_rootdir and not ALL_NOTEBOOKS: - orig_notebooks = glob.glob(os.path.join(orig_rootdir, "*.ipynb")) - if orig_notebooks: - message(" No notebooks in shadow directory, will copy notebooks from target.") - message(" Copying {} notebooks from {}".format(len(orig_notebooks), orig_rootdir)) - for nb in orig_notebooks: - shutil.copyfile(nb, './' + os.path.basename(nb)) - ALL_NOTEBOOKS = glob.glob("*.ipynb") - -message(" Available notebooks: " + " ".join(ALL_NOTEBOOKS)) - -if LOAD_NOTEBOOK is None and not options.inside_container: - - DEFAULT_NAME = "radiopadre-default.ipynb" - - if not ALL_NOTEBOOKS: - if not options.no_default: - message(" No notebooks: will create {DEFAULT_NAME}") - LOAD_DIR = True - open(DEFAULT_NAME, 'w').write(default_notebook_code) - else: - message(" No notebooks but --no-default given. Displaying directory only.") - LOAD_DIR = True - LOAD_NOTEBOOK = None - else: - if LOAD_NOTEBOOK: - if LOAD_NOTEBOOK in ALL_NOTEBOOKS: - message(" Will load {LOAD_NOTEBOOK} as requested.") - else: - message(" {LOAD_NOTEBOOK} not found. Displaying directory only.") - LOAD_DIR = True - LOAD_NOTEBOOK = None - else: - if options.auto_load: - LOAD_NOTEBOOK = ALL_NOTEBOOKS[0] - message(" Auto-loading {LOAD_NOTEBOOK}.") - -urls = [] -if LOAD_NOTEBOOK: - urls.append("http://localhost:{}/notebooks/{}?token={}".format(userside_jupyter_port, LOAD_NOTEBOOK, session_id)) -if LOAD_DIR: - urls.append("http://localhost:{}/?token={}".format(userside_jupyter_port, session_id)) - -# desist from printing this if running purely locally, in a virtualenv, as the notebook app handles this for us -if options.remote or options.inside_container or not options.virtual_env: - for url in urls: - message("Browse to URL: {url}") - -# now we're ready to start the container -if not attaching_to_ports and not options.virtual_env: - docker_local = make_dir("~/.radiopadre/.docker-local") - js9_tmp = make_dir("~/.radiopadre/.js9-tmp") - - message("Container name: {container_name}") # remote script will parse it - - if singularity: - os.environ["RADIOPADRE_CONTAINER_NAME"] = container_name - os.environ["XDG_RUNTIME_DIR"] = "" - docker_opts = ["--workdir", ABSROOTDIR ] - # setup mounts for work dir and home dir, if needed - homedir = os.path.expanduser("~") - docker_opts += [ - "-B", "{}:{}{}".format(ABSROOTDIR, ABSROOTDIR, ""), # ":ro" if orig_rootdir else ""), - # hides /home/user/.local, which if exposed, can confuse jupyter and ipython - "-B", "{}:{}/.local".format(docker_local, homedir), - # mount session info directory (needed to serve e.g. js9prefs.js) - "-B", "{}:{}".format(session_info_dir, SESSION_DIR), - "-B", "{}:{}".format(session_info_dir, SHADOW_SESSION_DIR), - # mount a writeable tmp dir for the js9 install -- needed by js9helper - "-B", "{}:/.radiopadre/venv/js9-www/tmp".format(js9_tmp), - ] - if options.container_dev: - docker_opts += ["-B", "{}:/radiopadre".format(PADRE_PATH)] - if not options.docker_debug: - command = [singularity, "instance.start"] + docker_opts + \ - [singularity_image, container_name] - message("running {}".format(" ".join(command))) - subprocess.call(command) - docker_opts = [singularity, "exec", "instance://{}".format(container_name)] - else: - docker_opts = [singularity, "exec" ] + docker_opts + [singularity_image] - container_ports = selected_ports - elif docker: - docker_opts = [ docker, "run", "--rm", "--name", container_name, "-w", ABSROOTDIR, - "--user", "{}:{}".format(os.getuid(), os.getgid()), - "-e", "USER={}".format(os.environ["USER"]), - "-e", "HOME={}".format(os.environ["HOME"]), - "-e", "RADIOPADRE_CONTAINER_NAME={}".format(container_name) - ] - # enable detached mode if not debugging - if not options.docker_debug: - docker_opts.append("-d") - for port1, port2 in zip(selected_ports, CONTAINER_PORTS): - docker_opts += [ "-p", "{}:{}/tcp".format(port1, port2)] - container_ports = list(CONTAINER_PORTS) - # setup mounts for work dir and home dir, if needed - homedir = os.path.expanduser("~") - docker_opts += [ - "-v", "{}:{}{}".format(ABSROOTDIR, ABSROOTDIR, ":ro" if orig_rootdir else ""), - "-v", "{}:{}".format(homedir, homedir), - # hides /home/user/.local, which if exposed, can confuse jupyter and ipython - "-v", "{}:{}/.local".format(docker_local, homedir), - # mount session info directory (needed to serve e.g. js9prefs.js) - "-v", "{}:{}".format(session_info_dir, SESSION_DIR), - "-v", "{}:{}".format(session_info_dir, SHADOW_SESSION_DIR), - # mount a writeable tmp dir for the js9 install -- needed by js9helper - "-v", "{}:/.radiopadre/venv/js9-www/tmp".format(js9_tmp), - "--label", "radiopadre.user={}".format(USER), - "--label", "radiopadre.dir={}".format(os.getcwd()), - ] - if options.container_dev: - docker_opts += [ "-v", "{}:/radiopadre".format(PADRE_PATH) ] - # add image - docker_opts.append(docker_image) - - docker_opts += [ "/radiopadre/bin/run-radiopadre-server", - "--inside-container", ":".join(map(str, container_ports + userside_ports)), - "--workdir", PADRE_WORKDIR, - ] - - # add arguments - if options.docker_debug: - docker_opts.append("--docker-debug") - if options.verbose: - docker_opts.append("--verbose") - if options.no_default: - docker_opts.append("--no-default") - if notebook_path: - docker_opts.append(notebook_path) - - message("Running {}".format(" ".join(docker_opts))) - if not singularity: - message(" (If the image is not yet available locally, this can take a few minutes the first time you run.)") - if options.docker_debug: - docker_process = subprocess.Popen(docker_opts, stdin=sys.stdin, stdout=sys.stdout, stderr=sys.stderr) - else: - docker_process = subprocess.Popen(docker_opts, stdout=DEVNULL) - #stdin=sys.stdin, stdout=sys.stdout, stderr=sys.stderr, - #env=os.environ) - - # pause to let the Jupyter server spin up - t0 = time.time() - time.sleep(5) - # then try to connect to it - sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) - for retry in range(1000): - try: - sock.connect(("localhost", jupyter_port)) - message("Container started: the Jupyter Notebook is running on port {} (after {} secs)".format( - jupyter_port, time.time() - t0)) - del sock - break - except socket.error: - time.sleep(.1) - else: - bye("unable to connect to Jupyter Notebook server on port {jupyter_port}") - - if browser: - for url in urls: - message("Driving browser: {options.browser_command} {url}") - subprocess.call([options.browser_command, url]) - # give things a second (to let the browser command print its stuff, if it wants to) - time.sleep(1) - - if options.docker_detach: - message("exiting: container session will remain running.") - sys.exit(0) - elif options.remote: - if options.verbose: - message("sleeping") - while True: - time.sleep(1000000) - else: - try: - while True: - a = raw_input("Type Q to detach from the docker session, or Ctrl+C to kill it: ") - if a and a[0].upper() == 'Q': - sys.exit(0) - except BaseException as exc: - if type(exc) is KeyboardInterrupt: - message("Caught Ctrl+C") - status = 1 - elif type(exc) is SystemExit: - status = exc.code - message("Exiting with status {}".format(status)) - else: - message("Caught exception {} ({})".format(exc, type(exc))) - status = 1 - if status: - message("Killing the docker container") - subprocess.call(["docker", "kill", container_name], stdout=DEVNULL) - sys.exit(status) - - - -# get hostname -os.environ["HOSTNAME"] = subprocess.check_output("/bin/hostname") - -# get jupyter path -notebook_dir = subprocess.check_output("{PADRE_VENV}/bin/pip show jupyter| " - "grep Location:|cut -d ':' -f 2".format(**globals()), shell=True).strip() -if not notebook_dir: - raise subprocess.CalledProcessError("jupyter installation path not found") - - -# check status of JS9. Ends up being True, or a RuntimeError - -js9dir = js9error = None -js9status_file = PADRE_VENV + "/js9status" -if not os.path.exists(js9status_file): - js9error = "not found" -else: - js9dir = open(js9status_file).read().strip() - if not js9dir.startswith("/"): - js9error = js9dir - js9dir = None - -os.environ['RADIOPADRE_JS9_DIR'] = js9dir or '' -os.environ['RADIOPADRE_JS9_ERROR'] = js9error or '' -if js9dir: - message(" Found JS9 install in {js9dir}") -else: - message(" Warning: JS9 not functional ({js9error}). Reinstall radiopadre?") - - -# # make link to JS9 install -# if js9dir: -# if not os.path.exists(PADRE_WORKDIR + "/js9-www"): -# os.symlink(js9dir, PADRE_WORKDIR + "/js9-www") -# if not os.path.exists(PADRE_WORKDIR + "/js9colormaps.js"): -# message("making {} symlink".format(PADRE_WORKDIR + "/js9colormaps.js")) -# os.symlink(notebook_dir + "/notebook/static/js9colormaps.js", PADRE_WORKDIR + "/js9colormaps.js") -# if not os.path.exists(PADRE_WORKDIR + "/radiopadre-www"): -# os.symlink(PADRE_PATH + "/html", PADRE_WORKDIR + "/radiopadre-www") - -# add padre directory to PYTHONPATH -if "PYTHONPATH" in os.environ: - os.environ["PYTHONPATH"] = os.environ["PYTHONPATH"] + ":" + PADRE_PATH -else: - os.environ["PYTHONPATH"] = PADRE_PATH - - - -JUPYTER_OPTS.append("--port={}".format(jupyter_port)) -JUPYTER_OPTS += ["--no-browser", "--browser=/dev/null"] # --no-browser alone seems to be ignored - -if options.inside_container: - JUPYTER_OPTS += ["--allow-root", "--ip=0.0.0.0"] # --no-browser alone seems to be ignored - -if LOAD_NOTEBOOK: - JUPYTER_OPTS.append(LOAD_NOTEBOOK) - -#os.environ['RADIOPADRE_SHADOW_URLBASE'] = urlbase = "http://localhost:{}/".format(forwarded_http_port) -os.environ['RADIOPADRE_SHADOW_URLBASE'] = urlbase = "http://localhost:{}/{}/".format(userside_http_port, session_id) -js9prefs = None - -http_rewrites = [ "/radiopadre-www/={}/".format(PADRE_PATH + "/html") ] - -if js9dir: - os.environ['RADIOPADRE_JS9_HELPER_PORT'] = str(userside_helper_port) - js9prefs = SESSION_DIR + "/js9prefs.js" - if not options.inside_container: - # create JS9 settings file (in container mode, this is created above, and mounted inside container already) - open(js9prefs, "w").write("JS9Prefs.globalOpts.helperPort = {};\n".format(userside_helper_port)) - # URL to local settings file for this session - os.environ['RADIOPADRE_JS9_DIR'] = "{}js9-www/".format(urlbase) - os.environ['RADIOPADRE_JS9_SETTINGS'] = "{}{}".format(urlbase, js9prefs) - - http_rewrites.append("/js9-www/={}/".format(js9dir)) - http_rewrites.append("/js9colormaps.js={}".format(notebook_dir + "/notebook/static/js9colormaps.js")) - -try: - helper_proc = None - if js9dir: - os.environ['JS9_LOCAL_URL_PREFIX'] = urlbase - os.environ['JS9_LOCAL_FS_PREFIX'] = PADRE_WORKDIR + "/" - js9helper = js9dir +"/js9Helper.js" - if os.path.exists(js9helper): - message("Starting {js9helper} on port {helper_port} in {SHADOWDIR}") - nodejs = find_which("nodejs") or find_which("node") - if not nodejs: - bye("Unable to find nodejs or node -- can't run js9helper. You need to apt-get install nodejs perhaps?") - try: - os.chdir(SHADOWDIR) - child_processes.append(subprocess.Popen([nodejs.strip(), js9helper, - ('{{"helperPort": {}, "debug": {}, ' + - '"fileTranslate": ["^(http://localhost:[0-9]+/[0-9a-f]+{}|/static/)", ""] }}').format( - helper_port, 1 if options.verbose else 0, - ABSROOTDIR)], - stdin=DEVZERO, stdout=sys.stdout, stderr=sys.stderr)) - finally: - os.chdir(ROOTDIR) - - message("Starting HTTP server process in {PADRE_WORKDIR} on port {http_port}") - args = [PADRE_VENV+"/bin/python", PADRE_PATH+"/bin/http_server.py", str(http_port) ] + http_rewrites - - try: - os.chdir(PADRE_WORKDIR) - child_processes.append(subprocess.Popen(args, stdin=DEVZERO, - stdout=sys.stdout if options.verbose else DEVNULL, - stderr=sys.stderr if options.verbose else DEVNULL)) - finally: - os.chdir(ROOTDIR) - - ## start CARTA backend - carta_dir = carta_exec = None - - if options.inside_container: - carta_dir, carta_exec = "/", "/carta/carta" - if not os.access(carta_exec, os.X_OK): - carta_exec = None - else: - carta_exec = find_which("carta") - - if not carta_exec: - message("CARTA backend not found, omitting", file=sys.stderr) - else: - if carta_dir: - os.chdir(carta_dir) - try: - # if options.inside_container: - # xvfb = find_which("which Xvfb") - # args = [xvfb, "-displayfd", "1", "-auth", "/dev/null" ] - # child_processes.append(subprocess.Popen(xvfb, stdin=DEVZERO, - # stdout=sys.stdout if options.verbose else DEVNULL, - # stderr=sys.stderr if options.verbose else DEVNULL, shell=True)) - # os.environ['DISPLAY'] = ':0' - - args = [carta_exec, "--remote", "--root={}".format(ROOTDIR), "--folder={}".format(ROOTDIR), - "--port={}".format(carta_ws_port), "--fport={}".format(carta_port)] - message("Starting CARTA backend {} (in {})".format(" ".join(args), os.getcwd()), file=sys.stderr) - os.environ['RADIOPADRE_CARTA_PORT'] = str(userside_carta_port) - os.environ['RADIOPADRE_CARTA_WS_PORT'] = str(userside_carta_ws_port) - - child_processes.append(subprocess.Popen(args, stdin=subprocess.PIPE, - stdout=sys.stderr if options.verbose else DEVNULL, - stderr=sys.stderr if options.verbose else DEVNULL)) - finally: - os.chdir(ROOTDIR) - - ## start jupyter process - - jupyter_path = PADRE_VENV + "/bin/jupyter" - message("Starting: "+jupyter_path+" "+" ".join(JUPYTER_OPTS)) - - notebook_proc = subprocess.Popen([jupyter_path] + JUPYTER_OPTS, - stdin=sys.stdin, stdout=sys.stdout, stderr=sys.stderr, - env=os.environ) - - ## use this instead to debug the sessison - #notebook_proc = subprocess.Popen([PADRE_VENV+"/bin/ipython"], - # stdin=sys.stdin, stdout=sys.stdout, stderr=sys.stderr, - # env=os.environ) - - child_processes.append(notebook_proc) - - # launch browser - url = "http://localhost:{}?token={}".format(userside_jupyter_port, session_id) - if browser: - message("running {} {}\r".format(options.browser_command, url)) - message(" if this fails, specify a correct browser invocation command with --browser-command and rerun,") - message(" or else browse to the URL given above (\"Browse to URL:\") yourself.") - try: - time.sleep(2) - subprocess.call([options.browser_command, url], stdout=DEVNULL) - except OSError as exc: - if exc.errno == 2: - message("{} not found".format(options.browser_command)) - else: - raise - elif not options.remote and not options.inside_container: - message("Please point your browser to {}".format(url)) - - notebook_proc.wait() - message("Notebook process done") - child_processes.pop(-1) - -finally: - message("Terminating child processes") - for proc in child_processes: - proc.terminate() - proc.wait() - -message("Exiting") \ No newline at end of file diff --git a/bin/deprecated-run-remote-padre b/bin/deprecated-run-remote-padre deleted file mode 100755 index 4686258..0000000 --- a/bin/deprecated-run-remote-padre +++ /dev/null @@ -1,384 +0,0 @@ -#!/usr/bin/python - -import os.path -import os -import subprocess -import sys -import select -import time -import re -import socket -import fnmatch - -REPO = "git@github.com:ratt-ru/radiopadre.git" -BRANCH = "master" - -LAUNCH = "run-radiopadre-server" - -DEFAULT_NOTEBOOK_TARGET = "radiopadre-default.ipynb" - -# get our radiopadre install directory. __file__ is RADIOPADRE/bin/run-radiopadre-server, so take the dirname twice -PADRE_PATH = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) - -def find_unused_port (base,maxtries=1000): - for i in range(maxtries): - serversocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) - try: - serversocket.bind(("localhost", base)) - serversocket.close() - return base - except: - base += 1 - continue - return None - -default_browser = os.environ.get("PADRE_BROWSER","xdg-open") - -import argparse -parser = argparse.ArgumentParser(description="Uses ssh to connect to remote host, runs radiopadre notebook server "+ - "in the specified directory, loads the specified notebook(s) or a default notebook, if any. ") - - -parser.add_argument("-d","--docker",action="store_true", - help="runs remote radiopadre using a Docker image, even if a remote installation was found. Default "+ - "is to use the remote installation if one is found, fall back to Docker otherwise.") -parser.add_argument("-D","--dev-docker",action="store_true", - help="runs remote radiopadre using a Docker image with a remote installation mapped on top. For developers.") -parser.add_argument("-i","--init",action="store_true", - help="automatically initialize remote radiopadre installation and virtual environment, if missing. " - "Forces use of remote installation and not Docker, unless combined with -D flag.") -parser.add_argument("-p","--remote-path",type=str, - help="directory in which remote radiopadre is installed. Default is to try ~/radiopadre first, "+ - "and PATH second.") -parser.add_argument("-u","--update",action="store_true", - help="update remote radiopadre installation using git pull, or docker container using docker pull") -parser.add_argument("-b","--browser",type=str,default=default_browser, - help="browser command to run. Default is %(default)s, or set PADRE_BROWSER.") -parser.add_argument("-n","--no-browser",action="store_true", - help="do not open a browser for the notebooks.") -# parser.add_argument("-a","--auto",metavar="PATTERN",type=str, default=DEFAULT_NOTEBOOK_TARGET, -# help="Auto-open notebook(s) if they exist on remote, "+ -# "and if a notebook is not explicitly specified on the command line. " + -# "Can be a wildcard pattern. Default is %default. Use -a none to disable auto-open.") -# parser.add_argument("-c","--copy",action="store_true", -# help="If notebook does not exist on the remote, try to copy a boilerplate.") -parser.add_argument("--docker-image", type=str, default="osmirnov/radiopadre:latest", - help="Which Docker image to use, for -d or -D modes. Default is %(default)s") -parser.add_argument("--reinstall", action="store_true", - help="Reinstall radiopadre virtual environment on remote.") -parser.add_argument("--no-casacore", action="store_true", - help="Ignore casacore installation errors, if installing on remote.") -parser.add_argument("--no-js9", action="store_true", - help="Ignore JS9 installation errors, if installing on remote.") -parser.add_argument("--verbose", action="store_true", - help="Enable verbose output.") -parser.add_argument("destination", nargs=1, - help="specify as host:directory[/notebook.ipynb]") - -options = parser.parse_args() - -if options.docker: - if options.dev_docker: - parser.error("Can't combine -d/--docker and -D/--dev-docker modes") - if options.init: - parser.error("Can't combine -d/--docker and -i/--init modes") - -# parse path to notebook, if notebook even specified -dest = options.destination[0] -if ':' in dest: - host, notebook_path = dest.split(":", 1) -else: - host, notebook_path = dest, "" - -print "radiopadre: Welcome!" -print "radiopadre: Will start remote radiopadre on {}:{}".format(host, notebook_path) - -# Find remote run-radiopadre-server.sh script - -if options.remote_path: - padre_execs = [ os.path.join(options.remote_path,"bin",LAUNCH) ] -else: - padre_execs = [ os.path.join("~/radiopadre/bin",LAUNCH), LAUNCH ] - -DEVZERO = open("/dev/zero") -DEVNULL = open("/dev/null", "w") - -SSH_MUX_OPTS = "-o ControlPath=/tmp/ssh_mux_radiopadre_%C -o ControlMaster=auto -o ControlPersist=1h".split() - -SCP_OPTS = ["scp"] + SSH_MUX_OPTS -SSH_OPTS = ["ssh","-tt"] + SSH_MUX_OPTS + [host] -#SSH_OPTS = ["ssh"] + SSH_MUX_OPTS + [host] - -# master ssh connection, to be closed when we exit -print "radiopadre: opening initial master connection to {} {}. You may be prompted for your password.".format(host, " ".join(SSH_OPTS)) -ssh_master = subprocess.check_call(SSH_OPTS + ["exit"]) # stdin=sys.stdin, stdout=sys.stdout, stderr=sys.stderr) - -# raw_input("Continue?") - -def ssh_remote(command, fail_retcode=None, stderr=DEVNULL): - """Runs command on remote host. Returns its output if the exit status is 0, or None if the exit status matches fail_retcode. - - Any other non-zero exit status (or any other error) will result in an exception. - """ - try: - return subprocess.check_output(SSH_OPTS+[command], stderr=stderr) - except subprocess.CalledProcessError,exc: - if exc.returncode == fail_retcode: - return None - raise - -def ssh_remote_interactive(command, fail_retcode=None, stderr=DEVNULL): - """Runs command on remote host. Returns its output if the exit status is 0, or None if the exit status matches fail_retcode. - - Any other non-zero exit status (or any other error) will result in an exception. - """ - try: - return subprocess.check_call(SSH_OPTS+[command], stderr=stderr) - except subprocess.CalledProcessError,exc: - if exc.returncode == fail_retcode: - return None - raise - -def scp_to_remote(path, remote_path): - return subprocess.check_output(SCP_OPTS+[path, "{}:{}".format(host, remote_path)]) - -def check_remote_file(remote_file, test="-x"): - """ - Checks that a remote file exists. 'test' is specified bash-style, e.g. "-x" for executable. - Can also use -f and -f, for example. - Returns True or False, or raises an exception on other errors. - """ - return ssh_remote("if [ {} {} ]; then exit 0; else exit 199; fi".format(test, remote_file), - fail_retcode=199, stderr=DEVNULL) is not None - -def check_remote_command(command): - """ - Checks that remote host has a particular command available. - Returns True or False, or raises an exception on other errors. - """ - return bool(ssh_remote("which "+command, fail_retcode=1, stderr=DEVNULL)) - -# Check for various remote bits - -print "radiopadre: Checking installation on {}".format(host) -has_venv = check_remote_command("virtualenv") and check_remote_command("pip") -has_git = check_remote_command("git") -has_docker = check_remote_command("docker") - -## Look for remote launch script - -def help_yourself(problem, suggestion=None): - print "radiopadre: {}".format(problem) - print "radiopadre: Please ssh into {} and sort it out yourself, then rerun this script".format(host) - if suggestion: - print "radiopadre: ({})".format(suggestion) - sys.exit(1) - -bootstrap = False - -# look for remote installation, unless we're explicitly set to docker mode - -if not options.docker: - for padre_exec in padre_execs: - if check_remote_file(padre_exec): - print "radiopadre: Found remote radiopadre launch script at {}:{}".format(host, padre_exec) - if options.update: - padre_dir = os.path.dirname(os.path.dirname(padre_exec)) - print "radiopadre: --update specified, will try a git pull in {}".format(padre_dir) - try: - ssh_remote("cd {} ; git checkout {}; git pull".format(padre_dir, BRANCH)) - except subprocess.CalledProcessError,exc: - print exc.output - help_yourself("git pull failed with exit code {}".format(exc.returncode)) - break - else: - print "radiopadre: No radiopadre launch script ({}) found on {}".format(LAUNCH, host) - if options.init: - install_path = options.remote_path or "~/radiopadre" - print "radiopadre: I could try to bootstrap a radiopadre installation into {}:{}".format(host, install_path) - - if not has_git: - help_yourself("However, I don't see git installed on {}".format(host), - "Try 'sudo apt instal git' on {}".format(host)) - - if check_remote_file(install_path, "-d"): - print "radiopadre: However, the directory {}:{} already exists, so I'd rather not!".format(host, install_path) - help_yourself("This may be a sign of a broken radiopadre installation on {},".format(host), - "(For example, remove {}:{} to bootstrap from scratch.)".format(host, install_path)) - - print "radiopadre: (command would be 'git clone -b {} {} radiopadre')".format(BRANCH, REPO) - - # try the bootstrap - print "radiopadre: Cloning {}, branch {} into {}:~/radiopadre".format(REPO, BRANCH, host) - ssh_remote_interactive("git clone -b {} {} radiopadre".format(BRANCH, REPO)) - padre_exec = os.path.join(install_path, "bin", LAUNCH) - if not check_remote_file(padre_exec): - help_yourself("git clone ran, but I still don't see the launch script {}:{}".format(host, padre_exec)) - print "radiopadre: Success! Running remote in bootstrap mode" - bootstrap = True - elif options.dev_docker: - print "radiopadre: no remote installation detected and -i/--init not given: can't run -D/--dev-docker mode" - sys.exit(1) - else: - print "radiopadre: no remote installation detected, falling back to Docker mode" - options.docker = True - -# look for remote virtualenv, unless we're in docker mode - -if not options.docker: - ## Check for remote virtualenv - remote_venv = "~/.radiopadre/venv" - if not options.reinstall and check_remote_file(remote_venv + "/.complete", "-f"): - activate_script = "{}/bin/activate".format(remote_venv) - print "radiopadre: Testing the remote virtual environment at {}:{}".format(host, remote_venv) - try: - ssh_remote("source {}".format(activate_script)) - except subprocess.CalledProcessError,exc: - print exc.output - help_yourself("The remote virtual environment at {}:{} exists, but we can't seem to activate it".format(host, remote_venv), - "Perhaps remove {}:{}, and I'll try to rebuild it from scratch.".format(host, remote_venv)) - else: - if options.init: - if options.reinstall: - print "radiopadre: --reinstall given, will reinstall remote virtual environment" - else: - print "radiopadre: Missing or incomplete remote virtual environment at {}:{}, but I can create it".format(host, remote_venv) - if not has_venv: - help_yourself("However, I don't see virtualenv and/or pip installed on {}".format(host), - "Try 'sudo apt instal virtualenv pip' on {}".format(host)) - - if bootstrap and not options.reinstall: - print "radiopadre: Since we're bootstrapping a new installation, I will proceed to do so" - - bootstrap = True - else: - print "radiopadre: no remote virtual environment detected, falling back to Docker mode" - options.docker = True - -# OK: docker mode -if options.docker: - if not has_docker: - help_yourself("{} doesn't appear to have Docker installed.".format(host), - "Ask the admin to install Docker on {} and to add you to the docker group. Otherwise, use " - "-i/--init to run radiopadre in remote installation mode.".format(host)) - - print "radiopadre: copying run script and default notebook to {}:.radiopadre/tmp".format(host) - ssh_remote("mkdir -p ~/.radiopadre/tmp/bin ~/.radiopadre/tmp/notebooks") - scp_to_remote(PADRE_PATH + "/bin/run-radiopadre-server", ".radiopadre/tmp/bin") - scp_to_remote(PADRE_PATH + "/notebooks/radiopadre-default.ipynb", ".radiopadre/tmp/notebooks") - padre_exec = "~/.radiopadre/tmp/bin/run-radiopadre-server -d --docker-image " + options.docker_image - if options.update: - padre_exec += " --docker-pull" - -elif options.dev_docker: - padre_exec += " -D --docker-image " + options.docker_image - if options.update: - padre_exec += " --docker-pull" - -if bootstrap: - padre_exec += " --bootstrap" -if options.reinstall: - padre_exec += " --reinstall" -if options.no_casacore: - padre_exec += " --no-casacore" -if options.no_js9: - padre_exec += " --no-js9" -if options.verbose: - padre_exec += " --verbose" - -padre_exec += " --remote " + notebook_path - -# start ssh subprocess to launch notebook -args = list(SSH_OPTS) + [padre_exec] - -ssh = subprocess.Popen(args, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) - -# poll stdout/stderr -poller = select.poll() -fdlabels = {} - -def register_process (po, label=""): - poller.register(po.stdout) - poller.register(po.stderr) - fdlabels[po.stdout.fileno()] = '{} {}'.format(host, label), po.stdout - fdlabels[po.stderr.fileno()] = '{} {} stderr'.format(host, label), po.stderr - -register_process(ssh,"ssh") - -ssh2 = None -local_ports = [] -remote_ports = None -session_id = None -urls = [] -remote_running = False - -while True: - try: - fdlist = poller.poll() - for fd,event in fdlist: - line = None - if event & (select.POLLHUP|select.POLLERR): - print "radiopadre: ssh to {} complete, exiting".format(host) - sys.exit(0) - # which fd is ready? read line and print it - label,fobj = fdlabels.get(fd) - line = fobj.readline().strip() - #if fobj is not ssh.stderr: - print "\r%s: %s\r" % (label,line) - if not line: - continue - # if remote is not yet started, check output - if not remote_running: - # check for session ID - match = re.match(".*Session ID/notebook token is '([0-9a-f]+)'", line) - if match: - session_id = match.group(1) - # check for notebook port, and launch second ssh when we have it - match = re.match(".*Selected ports: ([\d]+):([\d]+):([\d]+)[\s]*$",line) - if match: - remote_jupyter_port, remote_js9helper_port, remote_http_port = remote_ports = match.groups() - print "radiopadre: Detected remote ports %s:%s:%s\r" % tuple(remote_ports) - - ssh2_args = ["ssh"] + SSH_MUX_OPTS + ["-O", "forward", host] - local_ports = [] - starting_local_port = 10000+os.getuid() - for remoteport in remote_ports: - # find unused local port - localport = find_unused_port(starting_local_port) - local_ports.append(localport) - starting_local_port = localport+1 - print "radiopadre: remote port %s, selecting local port %s\r" % (remoteport, localport) - ssh2_args += [ "-L", "localhost:%s:localhost:%s" % (localport, remoteport) ] - # start second ssh process to forward the port - print "radiopadre: sending forward request to ssh mux process".format(ssh2_args) - subprocess.call(ssh2_args) - - # tell first ssh process the ports we have selected - print "radiopadre: Passing local port assignments to remote end" - ssh.stdin.write("{} {} {}\n".format(*local_ports)) - - # check for launch URL - match = re.match(".*Browse to URL: ([^\s]+)", line) - if match: - urls.append(match.group(1)) - - if "The Jupyter Notebook is running at" in line: - remote_running = True - for url in urls: - # open browser if needed - if not options.no_browser: - print "radiopadre: Opening browser for {}\r".format(url) - subprocess.Popen([options.browser, url]) - else: - print "-n/--no-browser given, not opening a browser for you\r" - print "Please surf to {}\n".format(url) - except KeyboardInterrupt: - print "radiopadre: Ctrl+C caught" -# print "radiopadre: sending exit request to ssh mux process..." -# raw_input("Continue?") -# subprocess.call(SSH_OPTS + ["-O", "exit", host]) -# raw_input("Sent. Continue?") - print "radiopadre: killing main ssh process..." - ssh.kill() - -os.system("reset") diff --git a/bin/install-js9-colormaps b/bin/install-js9-colormaps index c436adc..d598314 100755 --- a/bin/install-js9-colormaps +++ b/bin/install-js9-colormaps @@ -2,7 +2,7 @@ if __name__ == "__main__": import sys colormap_js = sys.argv[1] - with open(colormap_js, "w") as ff: + with open(colormap_js, "wt") as ff: import matplotlib.pyplot import matplotlib.cm import numpy as np diff --git a/bin/setup-radiopadre-virtualenv b/bin/setup-radiopadre-virtualenv index adfb55c..ee6fec0 100755 --- a/bin/setup-radiopadre-virtualenv +++ b/bin/setup-radiopadre-virtualenv @@ -12,7 +12,8 @@ PADRE_PATH = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) JS9_REPO = "https://github.com/ericmandel/js9.git" JS9_DIR = PADRE_PATH + "/js9" -CARTA_LINK = "https://github.com/CARTAvis/carta-releases/releases/download/v1.2.1/CARTA-v1.2.1-remote.tgz" +CARTA_LINK = "https://github.com/CARTAvis/carta-releases/releases/download/v1.2.2/CARTA-v1.2.2-remote.tgz" +SOCKET_IO_LINK = "https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.3.0/socket.io.js" import argparse parser = argparse.ArgumentParser(description="Installs radiopadre components inside an existing virtual environment") @@ -50,7 +51,7 @@ def bye(x, code=1): sys.exit(code) def shell(cmd): - return subprocess.call(cmd.format(**globals()), shell=True) + return subprocess.check_call(cmd.format(**globals()), shell=True) def which(cmd): return subprocess.check_output("which {}".format(cmd), shell=True).strip() @@ -92,42 +93,47 @@ if not os.path.exists(PADRE_WORKDIR): os.mkdir(PADRE_WORKDIR) # get jupyter base path -notebook_dir = subprocess.check_output(f"{PADRE_VENV}/bin/pip show jupyter| " - "grep Location:|cut -d ':' -f 2", shell=True).decode().strip() -if not notebook_dir: - raise subprocess.CalledProcessError(-1, "jupyter", "no jupyter found") +notebook_dir = f"{PADRE_VENV}/lib/python3.6/site-packages" # init radiopadre kernel etc. message("Creating radiopadre jupyter kernel") -if options.inside_container: - python, jupyter, user = "python", "jupyter", "" -else: - python, jupyter, user = f"{PADRE_VENV}/bin/python", f"{PADRE_VENV}/bin/jupyter", "--user" -cmd = f"{python} -m ipykernel install {user} --name radiopadre" +# if options.inside_container: +# python, jupyter, user = "python", "jupyter", "" +# else: +#python, jupyter, user = f"{PADRE_VENV}/bin/python3", f"{PADRE_VENV}/bin/jupyter" +cmd = f"{PADRE_VENV}/bin/python3 -m ipykernel install --sys-prefix --name radiopadre" message(f" {cmd}") if shell(cmd): bye("jupyter kernel failed to install, see log above") -# get path to it because we want to install our own kernel.js -out = kerneldir = '' -try: - out = subprocess.check_output(f"{jupyter} kernelspec list", shell=True) -except subprocess.CalledProcessError: - bye("jupyter kernelspec list failed, see log above") - -for line in out.decode().split("\n"): - columns = line.strip().split() - if columns[0] == "radiopadre": - kerneldir = columns[1] - break -else: - bye("jupyter kernelspec list did not return the radiopadre kernel. This is a bug?") -message("Linking kernel.js to {kerneldir}") -shutil.copy2(PADRE_PATH + "/html/radiopadre-kernel.js", kerneldir + "/kernel.js") +# # get path to it because we want to install our own kernel.js +# out = kerneldir = '' +# try: +# out = subprocess.check_output(f"{jupyter} kernelspec list", shell=True) +# except subprocess.CalledProcessError: +# bye("jupyter kernelspec list failed, see log above") +# +# for line in out.decode().split("\n"): +# columns = line.strip().split() +# if columns[0] == "radiopadre": +# kerneldir = columns[1] +# break +# else: +# bye("jupyter kernelspec list did not return the radiopadre kernel. This is a bug?") + +kerneldir = f"{PADRE_VENV}/share/jupyter/kernels/radiopadre" +message("Copying kernel.js to {kerneldir}") +shutil.copy2(f"{PADRE_PATH}/html/radiopadre-kernel.js", f"{kerneldir}/kernel.js") + +notebook_static = f"{notebook_dir}/notebook/static" + +# download socket.io.js +message("Downloading socket.io.js into {notebook_static}") +shell(f"wget {SOCKET_IO_LINK} -O {notebook_static}/socket.io.js") # add link to radiopadre web components in notebook static dir -notebook_padre_www = notebook_dir + "/notebook/static/radiopadre-www" -padre_www = PADRE_PATH + "/html" +notebook_padre_www = f"{notebook_static}/radiopadre-www" +padre_www = f"{PADRE_PATH}/html" remove_installation(notebook_padre_www) if options.editable: message("making link from {notebook_padre_www} to {padre_www}") @@ -136,11 +142,6 @@ else: message("copying {notebook_padre_www} to {padre_www}") shutil.copytree(padre_www, notebook_padre_www) -colormap_js = notebook_dir + "/notebook/static/js9colormaps.js" -message("creating colormap definitions in {colormap_js}") -shell("{PADRE_VENV}/bin/python {PADRE_PATH}/bin/install-js9-colormaps {colormap_js}") -shutil.copy(colormap_js, PADRE_WORKDIR) - # add link to CARTA carta_tarball = os.path.basename(CARTA_LINK) carta_base = os.path.splitext(carta_tarball)[0] @@ -156,20 +157,20 @@ if os.path.exists(carta_tarball_path): message(f"CARTA tarball {carta_tarball_path} is already here") else: message(f"Trying to download CARTA via {CARTA_LINK}") - subprocess.check_call(f"cd {PADRE_PATH}; wget {CARTA_LINK}", shell=True) + subprocess.check_call(f"cd {PADRE_PATH}; wget -c {CARTA_LINK}", shell=True) if not os.path.exists(carta_tarball_path): bye(f"{carta_tarball} failed to download") # unpack (here or in venv) if options.editable: message(f"Unpacking {carta_tarball} in {PADRE_PATH}") - subprocess.check_call(f"cd {PADRE_PATH}; tar zxvf {carta_tarball}", shell=True) + subprocess.check_call(f"cd {PADRE_PATH}; tar zxf {carta_tarball}", shell=True) carta_padre_dir = os.path.join(PADRE_PATH, carta_base) message(f"Linking {carta_dir} to {carta_padre_dir}") os.symlink(carta_padre_dir, carta_dir) else: message(f"Unpacking {carta_tarball} in {PADRE_VENV}") - subprocess.check_call(f"cd {PADRE_VENV}; tar zxvf {carta_tarball_path}", shell=True) + subprocess.check_call(f"cd {PADRE_VENV}; tar zxf {carta_tarball_path}", shell=True) if os.path.exists(carta_dir): message(f"Linking {carta_link} to {carta_dir}") @@ -241,6 +242,10 @@ if not options.no_js9: bye("JS9 did not find the cfitsio library. Try installing it (apt install libcfitsio-dev), and/or specifying" " the path to it with --cfitsio-path, and/or running with --no-js9 if you're really stuck.") + # add colormap definitions from matplotlib + message("copying extra colormap definitions to {js9_www}") + shutil.copy2(f"{PADRE_PATH}/html/js9colormaps.js", js9_www) + # Make symlink to js9 install dir in notebook dir notebook_js9_www = notebook_dir + "/notebook/static/js9-www" diff --git a/html/js9colormaps.js b/html/js9colormaps.js new file mode 100644 index 0000000..bbc2a91 --- /dev/null +++ b/html/js9colormaps.js @@ -0,0 +1,42150 @@ +JS9p_Colormaps = { + Accent: [ + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4] ], + Accent_r: [ + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.7490196078431373,0.3568627450980392,0.09019607843137253], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.9411764705882353,0.00784313725490196,0.4980392156862745], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [0.2196078431372549,0.4235294117647059,0.6901960784313725], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.9921568627450981,0.7529411764705882,0.5254901960784314], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.7450980392156863,0.6823529411764706,0.8313725490196079], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745], + [0.4980392156862745,0.788235294117647,0.4980392156862745] ], + Blues: [ + [0.9686274509803922,0.984313725490196,1.0], + [0.9655517108804306,0.9823452518262207,0.9990157631680123], + [0.9624759707804691,0.9803767781622452,0.9980315263360247], + [0.9594002306805075,0.9784083044982699,0.9970472895040369], + [0.9563244905805459,0.9764398308342944,0.9960630526720492], + [0.9532487504805844,0.9744713571703191,0.9950788158400615], + [0.9501730103806229,0.9725028835063436,0.9940945790080739], + [0.9470972702806613,0.9705344098423683,0.9931103421760861], + [0.9440215301806998,0.9685659361783929,0.9921261053440984], + [0.9409457900807382,0.9665974625144175,0.9911418685121107], + [0.9378700499807766,0.9646289888504421,0.990157631680123], + [0.9347943098808151,0.9626605151864667,0.9891733948481354], + [0.9317185697808535,0.9606920415224913,0.9881891580161476], + [0.928642829680892,0.9587235678585159,0.9872049211841599], + [0.9255670895809304,0.9567550941945405,0.9862206843521722], + [0.9224913494809689,0.9547866205305651,0.9852364475201846], + [0.9194156093810073,0.9528181468665897,0.9842522106881968], + [0.9163398692810457,0.9508496732026144,0.9832679738562091], + [0.9132641291810842,0.9488811995386389,0.9822837370242214], + [0.9101883890811227,0.9469127258746636,0.9812995001922338], + [0.9071126489811611,0.9449442522106881,0.9803152633602461], + [0.9040369088811996,0.9429757785467128,0.9793310265282583], + [0.900961168781238,0.9410073048827373,0.9783467896962706], + [0.8978854286812764,0.939038831218762,0.977362552864283], + [0.8948096885813149,0.9370703575547865,0.9763783160322953], + [0.8917339484813533,0.9351018838908112,0.9753940792003075], + [0.8886582083813918,0.9331334102268358,0.9744098423683198], + [0.8855824682814303,0.9311649365628604,0.9734256055363322], + [0.8825067281814687,0.929196462898885,0.9724413687043445], + [0.8794309880815071,0.9272279892349096,0.9714571318723568], + [0.8763552479815455,0.9252595155709342,0.970472895040369], + [0.873279507881584,0.9232910419069588,0.9694886582083814], + [0.8702191464821223,0.9213225682429834,0.9685044213763937], + [0.8672664359861592,0.9193540945790081,0.967520184544406], + [0.8643137254901961,0.9173856209150326,0.9665359477124184], + [0.861361014994233,0.9154171472510573,0.9655517108804306], + [0.8584083044982699,0.9134486735870818,0.9645674740484429], + [0.8554555940023069,0.9114801999231065,0.9635832372164552], + [0.8525028835063437,0.909511726259131,0.9625990003844676], + [0.8495501730103806,0.9075432525951557,0.9616147635524798], + [0.8465974625144176,0.9055747789311802,0.9606305267204921], + [0.8436447520184545,0.9036063052672049,0.9596462898885044], + [0.8406920415224913,0.9016378316032295,0.9586620530565167], + [0.8377393310265283,0.8996693579392541,0.9576778162245291], + [0.8347866205305652,0.8977008842752787,0.9566935793925413], + [0.8318339100346022,0.8957324106113033,0.9557093425605536], + [0.828881199538639,0.8937639369473279,0.954725105728566], + [0.8259284890426759,0.8917954632833525,0.9537408688965783], + [0.8229757785467128,0.8898269896193771,0.9527566320645905], + [0.8200230680507498,0.8878585159554018,0.9517723952326028], + [0.8170703575547866,0.8858900422914263,0.9507881584006151], + [0.8141176470588235,0.883921568627451,0.9498039215686275], + [0.8111649365628605,0.8819530949634755,0.9488196847366398], + [0.8082122260668974,0.8799846212995002,0.947835447904652], + [0.8052595155709343,0.8780161476355247,0.9468512110726643], + [0.8023068050749712,0.8760476739715494,0.9458669742406767], + [0.7993540945790081,0.8740792003075739,0.944882737408689], + [0.7964013840830451,0.8721107266435986,0.9438985005767013], + [0.7934486735870819,0.8701422529796232,0.9429142637447135], + [0.7904959630911188,0.8681737793156478,0.9419300269127259], + [0.7875432525951558,0.8662053056516724,0.9409457900807382], + [0.7845905420991927,0.864236831987697,0.9399615532487505], + [0.7816378316032295,0.8622683583237216,0.9389773164167627], + [0.7786851211072665,0.8602998846597462,0.9379930795847751], + [0.7752402921953095,0.8583006535947711,0.9368242983467897], + [0.7703191080353711,0.8562091503267973,0.9351018838908113], + [0.7653979238754326,0.8541176470588235,0.9333794694348327], + [0.760476739715494,0.8520261437908496,0.9316570549788543], + [0.7555555555555555,0.8499346405228758,0.9299346405228758], + [0.7506343713956171,0.8478431372549019,0.9282122260668974], + [0.7457131872356786,0.8457516339869281,0.9264898116109189], + [0.7407920030757401,0.8436601307189542,0.9247673971549404], + [0.7358708189158016,0.8415686274509804,0.923044982698962], + [0.7309496347558632,0.8394771241830065,0.9213225682429834], + [0.7260284505959247,0.8373856209150327,0.919600153787005], + [0.7211072664359862,0.8352941176470587,0.9178777393310266], + [0.7161860822760477,0.8332026143790849,0.916155324875048], + [0.7112648981161092,0.831111111111111,0.9144329104190696], + [0.7063437139561707,0.8290196078431372,0.9127104959630911], + [0.7014225297962322,0.8269281045751633,0.9109880815071126], + [0.6965013456362937,0.8248366013071895,0.9092656670511342], + [0.6915801614763553,0.8227450980392157,0.9075432525951557], + [0.6866589773164169,0.8206535947712418,0.9058208381391772], + [0.6817377931564783,0.818562091503268,0.9040984236831988], + [0.6768166089965398,0.8164705882352941,0.9023760092272203], + [0.6718954248366014,0.8143790849673203,0.9006535947712418], + [0.6669742406766629,0.8122875816993463,0.8989311803152633], + [0.6620530565167244,0.8101960784313725,0.8972087658592849], + [0.6571318723567858,0.8081045751633986,0.8954863514033065], + [0.6522106881968474,0.8060130718954248,0.8937639369473279], + [0.647289504036909,0.803921568627451,0.8920415224913495], + [0.6423683198769704,0.8018300653594771,0.890319108035371], + [0.6374471357170319,0.7997385620915032,0.8885966935793925], + [0.6325259515570935,0.7976470588235294,0.8868742791234141], + [0.627604767397155,0.7955555555555556,0.8851518646674356], + [0.6226835832372165,0.7934640522875817,0.8834294502114571], + [0.6172549019607844,0.7908650519031142,0.8818454440599769], + [0.6109803921568627,0.7874202229911572,0.8804921184159938], + [0.6047058823529413,0.7839753940792004,0.8791387927720108], + [0.5984313725490196,0.7805305651672433,0.8777854671280276], + [0.592156862745098,0.7770857362552864,0.8764321414840446], + [0.5858823529411765,0.7736409073433295,0.8750788158400615], + [0.5796078431372549,0.7701960784313725,0.8737254901960784], + [0.5733333333333334,0.7667512495194155,0.8723721645520953], + [0.5670588235294118,0.7633064206074587,0.8710188389081123], + [0.5607843137254902,0.7598615916955017,0.8696655132641292], + [0.5545098039215688,0.7564167627835449,0.8683121876201461], + [0.548235294117647,0.7529719338715878,0.866958861976163], + [0.5419607843137255,0.7495271049596309,0.86560553633218], + [0.5356862745098039,0.746082276047674,0.8642522106881968], + [0.5294117647058824,0.742637447135717,0.8628988850442137], + [0.5231372549019608,0.73919261822376,0.8615455594002307], + [0.5168627450980392,0.7357477893118032,0.8601922337562476], + [0.5105882352941177,0.7323029603998462,0.8588389081122645], + [0.5043137254901962,0.7288581314878894,0.8574855824682814], + [0.4980392156862745,0.7254133025759324,0.8561322568242984], + [0.491764705882353,0.7219684736639754,0.8547789311803152], + [0.48549019607843136,0.7185236447520185,0.8534256055363322], + [0.47921568627450983,0.7150788158400615,0.8520722798923491], + [0.47294117647058825,0.7116339869281045,0.850718954248366], + [0.4666666666666667,0.7081891580161477,0.8493656286043829], + [0.46039215686274515,0.7047443291041907,0.8480123029603999], + [0.4541176470588236,0.7012995001922339,0.8466589773164168], + [0.447843137254902,0.6978546712802769,0.8453056516724337], + [0.4415686274509804,0.6944098423683199,0.8439523260284506], + [0.43529411764705883,0.690965013456363,0.8425990003844676], + [0.4290196078431373,0.687520184544406,0.8412456747404844], + [0.42274509803921567,0.684075355632449,0.8398923490965013], + [0.41708573625528644,0.6806305267204922,0.8382314494425221], + [0.4120415224913495,0.6771856978085352,0.8362629757785467], + [0.4069973087274125,0.6737408688965782,0.8342945021145713], + [0.4019530949634756,0.6702960399846213,0.8323260284505959], + [0.3969088811995388,0.6668512110726644,0.8303575547866207], + [0.3918646674356017,0.6634063821607075,0.8283890811226452], + [0.38682045367166473,0.6599615532487505,0.8264206074586697], + [0.3817762399077278,0.6565167243367935,0.8244521337946944], + [0.37673202614379087,0.6530718954248366,0.8224836601307189], + [0.37168781237985393,0.6496270665128797,0.8205151864667436], + [0.366643598615917,0.6461822376009227,0.8185467128027681], + [0.36159938485198,0.6427374086889658,0.8165782391387928], + [0.3565551710880431,0.6392925797770088,0.8146097654748174], + [0.35151095732410614,0.6358477508650519,0.812641291810842], + [0.34646674356016915,0.632402921953095,0.8106728181468666], + [0.3414225297962322,0.628958093041138,0.8087043444828912], + [0.3363783160322953,0.6255132641291811,0.8067358708189158], + [0.33133410226835835,0.6220684352172241,0.8047673971549404], + [0.32628988850442137,0.6186236063052672,0.802798923490965], + [0.32124567474048443,0.6151787773933103,0.8008304498269896], + [0.31620146097654767,0.6117339484813534,0.7988619761630142], + [0.31115724721261057,0.6082891195693964,0.7968935024990389], + [0.3061130334486736,0.6048442906574394,0.7949250288350634], + [0.30106881968473664,0.6013994617454825,0.7929565551710881], + [0.2960246059207997,0.5979546328335256,0.7909880815071126], + [0.2909803921568628,0.5945098039215686,0.7890196078431373], + [0.28593617839292584,0.5910649750096116,0.7870511341791618], + [0.28089196462898885,0.5876201460976547,0.7850826605151865], + [0.2758477508650519,0.5841753171856978,0.783114186851211], + [0.27080353710111493,0.5807304882737409,0.7811457131872357], + [0.265759323337178,0.5772856593617839,0.7791772395232603], + [0.26071510957324107,0.5738408304498269,0.7772087658592849], + [0.25628604382929643,0.5700115340253749,0.7751633986928105], + [0.2522260668973472,0.5659515570934256,0.7730718954248366], + [0.24816608996539793,0.5618915801614763,0.7709803921568628], + [0.2441061130334487,0.5578316032295271,0.768888888888889], + [0.24004613610149955,0.5537716262975779,0.7667973856209152], + [0.23598615916955018,0.5497116493656286,0.7647058823529412], + [0.23192618223760095,0.5456516724336793,0.7626143790849673], + [0.2278662053056517,0.54159169550173,0.7605228758169935], + [0.22380622837370245,0.5375317185697808,0.7584313725490196], + [0.2197462514417532,0.5334717416378316,0.7563398692810458], + [0.21568627450980393,0.5294117647058824,0.7542483660130719], + [0.2116262975778547,0.5253517877739331,0.7521568627450981], + [0.20756632064590544,0.5212918108419838,0.7500653594771242], + [0.2035063437139562,0.5172318339100346,0.7479738562091504], + [0.19944636678200695,0.5131718569780853,0.7458823529411764], + [0.19538638985005768,0.5091118800461361,0.7437908496732026], + [0.19132641291810842,0.5050519031141868,0.7416993464052288], + [0.18726643598615916,0.5009919261822375,0.7396078431372549], + [0.18320645905420993,0.49693194925028833,0.7375163398692811], + [0.1791464821222607,0.49287197231833907,0.7354248366013072], + [0.17508650519031155,0.4888119953863899,0.7333333333333334], + [0.17102652825836218,0.4847520184544406,0.7312418300653595], + [0.16696655132641292,0.48069204152249134,0.7291503267973857], + [0.16290657439446368,0.4766320645905421,0.7270588235294118], + [0.15884659746251442,0.4725720876585928,0.724967320261438], + [0.1547866205305652,0.46851211072664356,0.722875816993464], + [0.15072664359861593,0.4644521337946943,0.7207843137254902], + [0.14666666666666667,0.46039215686274504,0.7186928104575163], + [0.1426066897347174,0.45633217993079583,0.7166013071895425], + [0.13854671280276817,0.4522722029988466,0.7145098039215687], + [0.13448673587081894,0.4482122260668973,0.7124183006535948], + [0.13042675893886968,0.4441522491349481,0.710326797385621], + [0.1271049596309112,0.4401845444059977,0.7074971164936563], + [0.12402921953094964,0.4362475970780469,0.7044213763936947], + [0.1209534794309881,0.4323106497500961,0.7013456362937333], + [0.11787773933102653,0.4283737024221453,0.6982698961937717], + [0.11480199923106507,0.42443675509419465,0.6951941560938102], + [0.11172625913110343,0.42049980776624374,0.6921184159938486], + [0.10865051903114188,0.41656286043829294,0.689042675893887], + [0.10557477893118032,0.41262591311034214,0.6859669357939254], + [0.10249903883121878,0.4086889657823914,0.6828911956939638], + [0.09942329873125721,0.4047520184544406,0.6798154555940024], + [0.09634755863129565,0.4008150711264898,0.6767397154940408], + [0.09327181853133411,0.396878123798539,0.6736639753940792], + [0.09019607843137256,0.39294117647058824,0.6705882352941177], + [0.087120338331411,0.38900422914263744,0.6675124951941561], + [0.08404459823144944,0.38506728181468663,0.6644367550941945], + [0.0809688581314879,0.38113033448673583,0.661361014994233], + [0.07789311803152635,0.37719338715878503,0.6582852748942715], + [0.07481737793156479,0.3732564398308343,0.6552095347943099], + [0.07174163783160323,0.3693194925028835,0.6521337946943484], + [0.06866589773164168,0.3653825451749327,0.6490580545943868], + [0.06559015763168022,0.36144559784698205,0.6459823144944253], + [0.06251441753171857,0.35750865051903113,0.6429065743944637], + [0.059438677431757014,0.35357170319108033,0.6398308342945022], + [0.05636293733179547,0.34963475586312953,0.6367550941945406], + [0.05328719723183391,0.34569780853517873,0.6336793540945791], + [0.05021145713187236,0.341760861207228,0.6306036139946175], + [0.0471357170319108,0.3378239138792772,0.6275278738946559], + [0.044059976931949255,0.3338869665513264,0.6244521337946944], + [0.040984236831987694,0.32995001922337563,0.6213763936947329], + [0.03790849673202615,0.32601307189542483,0.6183006535947713], + [0.03483275663206459,0.32207612456747403,0.6152249134948098], + [0.03175701653210304,0.31813917723952323,0.6121491733948482], + [0.03137254901960784,0.3140945790080738,0.606489811610919], + [0.03137254901960784,0.31003460207612454,0.6004613610149943], + [0.03137254901960784,0.3059746251441753,0.5944329104190696], + [0.03137254901960784,0.301914648212226,0.588404459823145], + [0.03137254901960784,0.29785467128027693,0.5823760092272205], + [0.03137254901960784,0.29379469434832756,0.5763475586312957], + [0.03137254901960784,0.2897347174163783,0.570319108035371], + [0.03137254901960784,0.28567474048442904,0.5642906574394464], + [0.03137254901960784,0.28161476355247983,0.5582622068435218], + [0.03137254901960784,0.27755478662053057,0.5522337562475971], + [0.03137254901960784,0.2734948096885813,0.5462053056516725], + [0.03137254901960784,0.26943483275663205,0.5401768550557479], + [0.03137254901960784,0.2653748558246828,0.5341484044598231], + [0.03137254901960784,0.2613148788927335,0.5281199538638985], + [0.03137254901960784,0.2572549019607843,0.5220915032679738], + [0.03137254901960784,0.25319492502883506,0.5160630526720492], + [0.03137254901960784,0.2491349480968858,0.5100346020761246], + [0.03137254901960784,0.24507497116493654,0.5040061514801999], + [0.03137254901960784,0.2410149942329873,0.4979777008842753], + [0.03137254901960784,0.23695501730103807,0.4919492502883507], + [0.03137254901960784,0.23289504036908892,0.4859207996924262], + [0.03137254901960784,0.22883506343713955,0.47989234909650136], + [0.03137254901960784,0.2247750865051903,0.47386389850057675], + [0.03137254901960784,0.22071510957324106,0.46783544790465204], + [0.03137254901960784,0.2166551326412918,0.46180699730872743], + [0.03137254901960784,0.21259515570934256,0.4557785467128028], + [0.03137254901960784,0.2085351787773933,0.4497500961168781], + [0.03137254901960784,0.20447520184544404,0.4437216455209535], + [0.03137254901960784,0.2004152249134948,0.43769319492502884], + [0.03137254901960784,0.19635524798154555,0.4316647443291042], + [0.03137254901960784,0.19229527104959632,0.42563629373317957], + [0.03137254901960784,0.18823529411764706,0.4196078431372549] ], + Blues_r: [ + [0.03137254901960784,0.18823529411764706,0.4196078431372549], + [0.03137254901960784,0.19229527104959632,0.42563629373317957], + [0.03137254901960784,0.19635524798154555,0.4316647443291042], + [0.03137254901960784,0.2004152249134948,0.43769319492502884], + [0.03137254901960784,0.20447520184544404,0.4437216455209535], + [0.03137254901960784,0.2085351787773933,0.44975009611687816], + [0.03137254901960784,0.21259515570934256,0.45577854671280277], + [0.03137254901960784,0.2166551326412918,0.46180699730872743], + [0.03137254901960784,0.22071510957324106,0.4678354479046521], + [0.03137254901960784,0.2247750865051903,0.4738638985005767], + [0.03137254901960784,0.22883506343713955,0.47989234909650136], + [0.03137254901960784,0.2328950403690888,0.485920799692426], + [0.03137254901960784,0.23695501730103805,0.4919492502883507], + [0.03137254901960784,0.2410149942329873,0.4979777008842753], + [0.03137254901960784,0.24507497116493654,0.5040061514801999], + [0.03137254901960784,0.2491349480968858,0.5100346020761246], + [0.03137254901960784,0.25319492502883506,0.5160630526720492], + [0.03137254901960784,0.2572549019607843,0.5220915032679738], + [0.03137254901960784,0.2613148788927335,0.5281199538638985], + [0.03137254901960784,0.2653748558246828,0.5341484044598231], + [0.03137254901960784,0.26943483275663205,0.5401768550557479], + [0.03137254901960784,0.2734948096885813,0.5462053056516725], + [0.03137254901960784,0.27755478662053057,0.5522337562475971], + [0.03137254901960784,0.28161476355247983,0.5582622068435218], + [0.03137254901960784,0.28567474048442904,0.5642906574394464], + [0.03137254901960784,0.2897347174163783,0.5703191080353711], + [0.03137254901960784,0.29379469434832756,0.5763475586312957], + [0.03137254901960784,0.2978546712802768,0.5823760092272203], + [0.03137254901960784,0.301914648212226,0.588404459823145], + [0.03137254901960784,0.3059746251441753,0.5944329104190696], + [0.03137254901960784,0.31003460207612454,0.6004613610149943], + [0.03137254901960784,0.3140945790080738,0.606489811610919], + [0.031757016532103034,0.31813917723952323,0.6121491733948482], + [0.03483275663206457,0.322076124567474,0.6152249134948097], + [0.03790849673202615,0.32601307189542483,0.6183006535947713], + [0.040984236831987694,0.32995001922337563,0.6213763936947329], + [0.044059976931949255,0.3338869665513264,0.6244521337946944], + [0.04713571703191079,0.3378239138792771,0.6275278738946559], + [0.05021145713187236,0.341760861207228,0.6306036139946175], + [0.053287197231833915,0.3456978085351788,0.6336793540945791], + [0.05636293733179547,0.34963475586312953,0.6367550941945406], + [0.059438677431757,0.35357170319108033,0.6398308342945022], + [0.06251441753171857,0.35750865051903113,0.6429065743944637], + [0.06559015763168013,0.36144559784698194,0.6459823144944252], + [0.06866589773164168,0.3653825451749327,0.6490580545943868], + [0.07174163783160321,0.36931949250288343,0.6521337946943484], + [0.07481737793156479,0.3732564398308343,0.6552095347943099], + [0.07789311803152635,0.37719338715878503,0.6582852748942715], + [0.0809688581314879,0.38113033448673583,0.661361014994233], + [0.08404459823144943,0.38506728181468663,0.6644367550941945], + [0.087120338331411,0.38900422914263744,0.6675124951941561], + [0.09019607843137256,0.39294117647058824,0.6705882352941177], + [0.09327181853133411,0.396878123798539,0.6736639753940792], + [0.09634755863129564,0.40081507112648973,0.6767397154940408], + [0.09942329873125721,0.4047520184544406,0.6798154555940024], + [0.10249903883121878,0.40868896578239133,0.6828911956939638], + [0.10557477893118032,0.41262591311034214,0.6859669357939254], + [0.10865051903114185,0.41656286043829294,0.689042675893887], + [0.11172625913110343,0.42049980776624374,0.6921184159938485], + [0.11480199923106499,0.42443675509419454,0.6951941560938101], + [0.11787773933102653,0.4283737024221453,0.6982698961937717], + [0.12095347943098807,0.43231064975009603,0.7013456362937331], + [0.12402921953094964,0.4362475970780469,0.7044213763936947], + [0.1271049596309112,0.44018454440599764,0.7074971164936563], + [0.13042675893886968,0.44415224913494805,0.710326797385621], + [0.13448673587081894,0.4482122260668973,0.7124183006535948], + [0.13854671280276812,0.4522722029988465,0.7145098039215686], + [0.14260668973471743,0.45633217993079583,0.7166013071895425], + [0.14666666666666667,0.4603921568627451,0.7186928104575163], + [0.15072664359861593,0.4644521337946943,0.7207843137254902], + [0.1547866205305652,0.46851211072664356,0.722875816993464], + [0.15884659746251442,0.4725720876585928,0.724967320261438], + [0.16290657439446368,0.4766320645905421,0.7270588235294118], + [0.16696655132641294,0.48069204152249134,0.7291503267973857], + [0.17102652825836212,0.4847520184544405,0.7312418300653595], + [0.17508650519031144,0.4888119953863898,0.7333333333333334], + [0.1791464821222607,0.49287197231833907,0.7354248366013072], + [0.18320645905420993,0.49693194925028833,0.7375163398692811], + [0.1872664359861592,0.5009919261822375,0.7396078431372549], + [0.19132641291810842,0.5050519031141868,0.7416993464052288], + [0.19538638985005768,0.5091118800461361,0.7437908496732026], + [0.19944636678200695,0.5131718569780853,0.7458823529411764], + [0.20350634371395612,0.5172318339100345,0.7479738562091504], + [0.20756632064590544,0.5212918108419838,0.7500653594771242], + [0.21162629757785467,0.5253517877739331,0.7521568627450981], + [0.21568627450980393,0.5294117647058824,0.7542483660130719], + [0.2197462514417532,0.5334717416378316,0.7563398692810458], + [0.22380622837370245,0.5375317185697808,0.7584313725490196], + [0.2278662053056517,0.54159169550173,0.7605228758169935], + [0.23192618223760092,0.5456516724336793,0.7626143790849673], + [0.23598615916955012,0.5497116493656286,0.7647058823529411], + [0.24004613610149944,0.5537716262975778,0.766797385620915], + [0.2441061130334487,0.5578316032295271,0.768888888888889], + [0.24816608996539796,0.5618915801614763,0.7709803921568628], + [0.25222606689734717,0.5659515570934256,0.7730718954248366], + [0.25628604382929643,0.5700115340253749,0.7751633986928105], + [0.26071510957324107,0.5738408304498269,0.7772087658592849], + [0.26575932333717806,0.5772856593617839,0.7791772395232603], + [0.27080353710111493,0.5807304882737407,0.7811457131872357], + [0.2758477508650519,0.5841753171856978,0.783114186851211], + [0.28089196462898885,0.5876201460976547,0.7850826605151865], + [0.28593617839292584,0.5910649750096116,0.7870511341791618], + [0.2909803921568628,0.5945098039215686,0.7890196078431373], + [0.2960246059207997,0.5979546328335256,0.7909880815071126], + [0.30106881968473664,0.6013994617454825,0.7929565551710881], + [0.3061130334486736,0.6048442906574394,0.7949250288350634], + [0.3111572472126105,0.6082891195693964,0.7968935024990388], + [0.3162014609765475,0.6117339484813533,0.7988619761630142], + [0.32124567474048443,0.6151787773933103,0.8008304498269896], + [0.3262898885044214,0.6186236063052672,0.802798923490965], + [0.33133410226835835,0.6220684352172241,0.8047673971549404], + [0.3363783160322953,0.6255132641291811,0.8067358708189158], + [0.3414225297962322,0.628958093041138,0.8087043444828912], + [0.34646674356016915,0.632402921953095,0.8106728181468666], + [0.35151095732410603,0.6358477508650519,0.812641291810842], + [0.3565551710880431,0.6392925797770088,0.8146097654748174], + [0.36159938485198,0.6427374086889658,0.8165782391387928], + [0.36664359861591694,0.6461822376009227,0.8185467128027681], + [0.37168781237985393,0.6496270665128796,0.8205151864667436], + [0.37673202614379087,0.6530718954248366,0.8224836601307189], + [0.3817762399077278,0.6565167243367935,0.8244521337946944], + [0.38682045367166473,0.6599615532487505,0.8264206074586697], + [0.3918646674356016,0.6634063821607074,0.8283890811226451], + [0.39690888119953865,0.6668512110726643,0.8303575547866205], + [0.4019530949634756,0.6702960399846213,0.8323260284505959], + [0.4069973087274125,0.6737408688965782,0.8342945021145713], + [0.4120415224913495,0.6771856978085352,0.8362629757785467], + [0.41708573625528644,0.6806305267204922,0.8382314494425221], + [0.42274509803921567,0.684075355632449,0.8398923490965013], + [0.42901960784313725,0.687520184544406,0.8412456747404844], + [0.43529411764705883,0.690965013456363,0.8425990003844676], + [0.4415686274509804,0.6944098423683199,0.8439523260284506], + [0.44784313725490177,0.6978546712802768,0.8453056516724337], + [0.4541176470588235,0.7012995001922337,0.8466589773164168], + [0.4603921568627451,0.7047443291041907,0.8480123029603999], + [0.4666666666666667,0.7081891580161477,0.8493656286043829], + [0.47294117647058825,0.7116339869281045,0.850718954248366], + [0.47921568627450983,0.7150788158400615,0.8520722798923491], + [0.48549019607843136,0.7185236447520185,0.8534256055363322], + [0.49176470588235294,0.7219684736639754,0.8547789311803152], + [0.4980392156862745,0.7254133025759323,0.8561322568242984], + [0.5043137254901962,0.7288581314878892,0.8574855824682814], + [0.5105882352941177,0.7323029603998462,0.8588389081122645], + [0.5168627450980392,0.7357477893118032,0.8601922337562475], + [0.5231372549019608,0.73919261822376,0.8615455594002307], + [0.5294117647058824,0.742637447135717,0.8628988850442137], + [0.5356862745098039,0.746082276047674,0.8642522106881968], + [0.5419607843137255,0.7495271049596309,0.86560553633218], + [0.5482352941176469,0.7529719338715878,0.866958861976163], + [0.5545098039215687,0.7564167627835447,0.8683121876201461], + [0.5607843137254902,0.7598615916955017,0.8696655132641292], + [0.5670588235294118,0.7633064206074587,0.8710188389081123], + [0.5733333333333334,0.7667512495194155,0.8723721645520953], + [0.5796078431372549,0.7701960784313725,0.8737254901960784], + [0.5858823529411765,0.7736409073433295,0.8750788158400615], + [0.592156862745098,0.7770857362552864,0.8764321414840446], + [0.5984313725490196,0.7805305651672434,0.8777854671280276], + [0.6047058823529412,0.7839753940792002,0.8791387927720108], + [0.6109803921568628,0.7874202229911572,0.8804921184159938], + [0.6172549019607844,0.7908650519031142,0.8818454440599769], + [0.6226835832372165,0.7934640522875817,0.8834294502114571], + [0.627604767397155,0.7955555555555556,0.8851518646674356], + [0.6325259515570935,0.7976470588235294,0.8868742791234141], + [0.6374471357170319,0.7997385620915032,0.8885966935793925], + [0.6423683198769703,0.801830065359477,0.890319108035371], + [0.6472895040369089,0.8039215686274509,0.8920415224913495], + [0.6522106881968474,0.8060130718954248,0.8937639369473279], + [0.6571318723567858,0.8081045751633986,0.8954863514033065], + [0.6620530565167243,0.8101960784313725,0.8972087658592849], + [0.6669742406766629,0.8122875816993463,0.8989311803152633], + [0.6718954248366014,0.8143790849673203,0.9006535947712418], + [0.6768166089965398,0.8164705882352941,0.9023760092272203], + [0.6817377931564783,0.818562091503268,0.9040984236831987], + [0.6866589773164168,0.8206535947712418,0.9058208381391772], + [0.6915801614763553,0.8227450980392157,0.9075432525951557], + [0.6965013456362937,0.8248366013071895,0.9092656670511342], + [0.7014225297962322,0.8269281045751633,0.9109880815071126], + [0.7063437139561707,0.8290196078431372,0.9127104959630911], + [0.7112648981161092,0.831111111111111,0.9144329104190696], + [0.7161860822760477,0.8332026143790849,0.916155324875048], + [0.7211072664359861,0.8352941176470587,0.9178777393310265], + [0.7260284505959247,0.8373856209150327,0.919600153787005], + [0.7309496347558632,0.8394771241830065,0.9213225682429834], + [0.7358708189158016,0.8415686274509804,0.923044982698962], + [0.7407920030757401,0.8436601307189542,0.9247673971549404], + [0.7457131872356786,0.8457516339869281,0.9264898116109189], + [0.7506343713956171,0.8478431372549019,0.9282122260668974], + [0.7555555555555555,0.8499346405228758,0.9299346405228758], + [0.7604767397154941,0.8520261437908496,0.9316570549788543], + [0.7653979238754325,0.8541176470588234,0.9333794694348327], + [0.7703191080353711,0.8562091503267973,0.9351018838908112], + [0.7752402921953095,0.8583006535947711,0.9368242983467897], + [0.7786851211072664,0.8602998846597462,0.9379930795847751], + [0.7816378316032295,0.8622683583237216,0.9389773164167627], + [0.7845905420991927,0.864236831987697,0.9399615532487505], + [0.7875432525951557,0.8662053056516724,0.9409457900807382], + [0.7904959630911187,0.8681737793156478,0.9419300269127259], + [0.7934486735870819,0.8701422529796232,0.9429142637447135], + [0.796401384083045,0.8721107266435986,0.9438985005767012], + [0.7993540945790081,0.8740792003075739,0.944882737408689], + [0.8023068050749712,0.8760476739715494,0.9458669742406767], + [0.8052595155709342,0.8780161476355247,0.9468512110726643], + [0.8082122260668974,0.8799846212995002,0.947835447904652], + [0.8111649365628605,0.8819530949634755,0.9488196847366398], + [0.8141176470588235,0.883921568627451,0.9498039215686275], + [0.8170703575547866,0.8858900422914263,0.9507881584006151], + [0.8200230680507498,0.8878585159554018,0.9517723952326028], + [0.8229757785467128,0.8898269896193771,0.9527566320645905], + [0.8259284890426759,0.8917954632833525,0.9537408688965783], + [0.828881199538639,0.8937639369473279,0.954725105728566], + [0.831833910034602,0.8957324106113033,0.9557093425605536], + [0.8347866205305652,0.8977008842752787,0.9566935793925413], + [0.8377393310265282,0.8996693579392541,0.957677816224529], + [0.8406920415224913,0.9016378316032295,0.9586620530565167], + [0.8436447520184545,0.9036063052672049,0.9596462898885044], + [0.8465974625144176,0.9055747789311802,0.9606305267204921], + [0.8495501730103806,0.9075432525951557,0.9616147635524798], + [0.8525028835063437,0.909511726259131,0.9625990003844676], + [0.8554555940023069,0.9114801999231065,0.9635832372164552], + [0.8584083044982699,0.9134486735870818,0.9645674740484429], + [0.861361014994233,0.9154171472510573,0.9655517108804306], + [0.8643137254901961,0.9173856209150326,0.9665359477124184], + [0.8672664359861592,0.919354094579008,0.967520184544406], + [0.8702191464821223,0.9213225682429834,0.9685044213763937], + [0.873279507881584,0.9232910419069588,0.9694886582083814], + [0.8763552479815456,0.9252595155709342,0.970472895040369], + [0.8794309880815071,0.9272279892349096,0.9714571318723568], + [0.8825067281814687,0.929196462898885,0.9724413687043445], + [0.8855824682814302,0.9311649365628604,0.9734256055363322], + [0.8886582083813918,0.9331334102268358,0.9744098423683198], + [0.8917339484813533,0.9351018838908112,0.9753940792003076], + [0.8948096885813149,0.9370703575547865,0.9763783160322953], + [0.8978854286812764,0.939038831218762,0.977362552864283], + [0.900961168781238,0.9410073048827373,0.9783467896962706], + [0.9040369088811996,0.9429757785467128,0.9793310265282583], + [0.9071126489811611,0.9449442522106881,0.9803152633602461], + [0.9101883890811227,0.9469127258746636,0.9812995001922338], + [0.9132641291810842,0.9488811995386389,0.9822837370242214], + [0.9163398692810457,0.9508496732026144,0.9832679738562091], + [0.9194156093810073,0.9528181468665897,0.9842522106881968], + [0.9224913494809689,0.9547866205305651,0.9852364475201846], + [0.9255670895809304,0.9567550941945405,0.9862206843521722], + [0.928642829680892,0.9587235678585159,0.9872049211841599], + [0.9317185697808535,0.9606920415224913,0.9881891580161476], + [0.934794309880815,0.9626605151864667,0.9891733948481353], + [0.9378700499807766,0.9646289888504421,0.990157631680123], + [0.9409457900807382,0.9665974625144175,0.9911418685121107], + [0.9440215301806998,0.9685659361783929,0.9921261053440984], + [0.9470972702806613,0.9705344098423683,0.9931103421760861], + [0.9501730103806229,0.9725028835063436,0.9940945790080739], + [0.9532487504805844,0.9744713571703191,0.9950788158400615], + [0.9563244905805459,0.9764398308342944,0.9960630526720492], + [0.9594002306805075,0.9784083044982699,0.9970472895040369], + [0.9624759707804691,0.9803767781622452,0.9980315263360247], + [0.9655517108804306,0.9823452518262207,0.9990157631680123], + [0.9686274509803922,0.984313725490196,1.0] ], + BrBG: [ + [0.32941176470588235,0.18823529411764706,0.0196078431372549], + [0.3380238369857747,0.1933102652825836,0.020376778162245292], + [0.34663590926566706,0.19838523644752018,0.02114571318723568], + [0.3552479815455594,0.20346020761245676,0.021914648212226065], + [0.3638600538254517,0.2085351787773933,0.022683583237216455], + [0.3724721261053441,0.21361014994232985,0.02345251826220684], + [0.38108419838523644,0.21868512110726643,0.02422145328719723], + [0.3896962706651288,0.223760092272203,0.02499038831218762], + [0.39830834294502115,0.22883506343713955,0.02575932333717801], + [0.4069204152249135,0.23391003460207613,0.0265282583621684], + [0.41553248750480587,0.23898500576701268,0.027297193387158785], + [0.4241445597846982,0.24405997693194925,0.02806612841214917], + [0.4327566320645906,0.2491349480968858,0.02883506343713956], + [0.4413687043444829,0.25420991926182235,0.02960399846212995], + [0.4499807766243753,0.25928489042675895,0.03037293348712034], + [0.45859284890426766,0.2643598615916955,0.031141868512110725], + [0.46720492118415996,0.26943483275663205,0.031910803537101115], + [0.4758169934640523,0.2745098039215686,0.0326797385620915], + [0.4844290657439447,0.2795847750865052,0.033448673587081895], + [0.49304113802383703,0.28465974625144175,0.03421760861207228], + [0.5016532103037293,0.2897347174163783,0.03498654363706267], + [0.5102652825836217,0.29480968858131484,0.03575547866205306], + [0.518877354863514,0.29988465974625145,0.03652441368704344], + [0.5274894271434064,0.304959630911188,0.03729334871203383], + [0.5361014994232988,0.31003460207612454,0.03806228373702422], + [0.5447135717031911,0.31510957324106115,0.038831218762014605], + [0.5529411764705883,0.3213379469434833,0.041906958861976165], + [0.5607843137254902,0.328719723183391,0.04728950403690888], + [0.5686274509803922,0.3361014994232987,0.0526720492118416], + [0.5764705882352942,0.34348327566320647,0.05805459438677432], + [0.5843137254901961,0.3508650519031142,0.06343713956170705], + [0.592156862745098,0.3582468281430219,0.06881968473663976], + [0.6000000000000001,0.3656286043829296,0.07420222991157246], + [0.6078431372549019,0.3730103806228373,0.07958477508650516], + [0.615686274509804,0.3803921568627451,0.08496732026143791], + [0.6235294117647059,0.3877739331026528,0.09034986543637064], + [0.6313725490196078,0.3951557093425605,0.09573241061130335], + [0.6392156862745098,0.4025374855824682,0.10111495578623603], + [0.6470588235294118,0.409919261822376,0.10649750096116878], + [0.6549019607843137,0.4173010380622837,0.1118800461361015], + [0.6627450980392157,0.42468281430219146,0.11726259131103423], + [0.6705882352941176,0.4320645905420991,0.12264513648596691], + [0.6784313725490196,0.4394463667820069,0.12802768166089967], + [0.6862745098039216,0.44682814302191465,0.13341022683583237], + [0.6941176470588235,0.45420991926182236,0.1387927720107651], + [0.7019607843137254,0.46159169550173007,0.14417531718569776], + [0.7098039215686275,0.46897347174163784,0.14955786236063054], + [0.7176470588235294,0.47635524798154555,0.15494040753556326], + [0.7254901960784313,0.48373702422145326,0.16032295271049596], + [0.7333333333333333,0.4911188004613609,0.16570549788542865], + [0.7411764705882353,0.49850057670126874,0.1710880430603614], + [0.7490196078431373,0.5058823529411764,0.17647058823529413], + [0.7539407920030757,0.5158785082660515,0.18877354863514034], + [0.7588619761630142,0.5258746635909265,0.20107650903498644], + [0.7637831603229527,0.5358708189158016,0.21337946943483274], + [0.7687043444828912,0.5458669742406767,0.22568242983467895], + [0.7736255286428296,0.5558631295655516,0.23798539023452514], + [0.7785467128027681,0.5658592848904266,0.25028835063437127], + [0.7834678969627067,0.5758554402153018,0.26259131103421757], + [0.7883890811226452,0.5858515955401767,0.27489427143406375], + [0.7933102652825836,0.5958477508650518,0.28719723183391], + [0.798231449442522,0.6058439061899268,0.2995001922337561], + [0.8031526336024606,0.6158400615148019,0.31180315263360237], + [0.8080738177623991,0.6258362168396769,0.3241061130334486], + [0.8129950019223375,0.635832372164552,0.33640907343329485], + [0.817916186082276,0.6458285274894271,0.34871203383314103], + [0.8228373702422145,0.655824682814302,0.36101499423298705], + [0.827758554402153,0.6658208381391771,0.37331795463283346], + [0.8326797385620914,0.6758169934640521,0.3856209150326796], + [0.8376009227220299,0.6858131487889272,0.39792387543252583], + [0.8425221068819684,0.6958093041138023,0.41022683583237207], + [0.847443291041907,0.7058054594386773,0.4225297962322182], + [0.8523644752018453,0.7158016147635523,0.43483275663206444], + [0.8572856593617839,0.7257977700884274,0.4471357170319107], + [0.8622068435217223,0.7357939254133022,0.4594386774317567], + [0.8671280276816609,0.7457900807381774,0.47174163783160306], + [0.8720492118415993,0.7557862360630525,0.4840445982314493], + [0.8762783544790465,0.7637062668204535,0.4955786236063051], + [0.8798154555940023,0.7695501730103805,0.5063437139561705], + [0.8833525567089581,0.7753940792003075,0.517108804306036], + [0.8868896578239138,0.7812379853902344,0.5278738946559014], + [0.8904267589388696,0.7870818915801614,0.5386389850057669], + [0.8939638600538253,0.7929257977700882,0.5494040753556322], + [0.8975009611687812,0.7987697039600152,0.5601691657054977], + [0.901038062283737,0.8046136101499423,0.5709342560553632], + [0.9045751633986928,0.8104575163398692,0.5816993464052287], + [0.9081122645136486,0.8163014225297962,0.5924644367550941], + [0.9116493656286043,0.8221453287197231,0.6032295271049595], + [0.9151864667435602,0.82798923490965,0.613994617454825], + [0.9187235678585159,0.833833141099577,0.6247597078046904], + [0.9222606689734717,0.8396770472895039,0.6355247981545558], + [0.9257977700884276,0.8455209534794309,0.6462898885044213], + [0.9293348712033833,0.8513648596693579,0.6570549788542868], + [0.9328719723183391,0.8572087658592848,0.6678200692041522], + [0.9364090734332948,0.8630526720492118,0.6785851595540175], + [0.9399461745482507,0.8688965782391388,0.689350249903883], + [0.9434832756632064,0.8747404844290657,0.7001153402537484], + [0.9470203767781622,0.8805843906189926,0.7108804306036139], + [0.950557477893118,0.8864282968089195,0.7216455209534792], + [0.9540945790080738,0.8922722029988466,0.7324106113033448], + [0.9576316801230296,0.8981161091887735,0.7431757016532102], + [0.9611687812379854,0.9039600153787005,0.7539407920030756], + [0.9647058823529412,0.9098039215686274,0.7647058823529411], + [0.9645520953479431,0.9118031526336025,0.772395232602845], + [0.964398308342945,0.9138023836985775,0.7800845828527488], + [0.9642445213379469,0.9158016147635525,0.7877739331026528], + [0.9640907343329489,0.9178008458285275,0.7954632833525566], + [0.9639369473279508,0.9198000768935025,0.8031526336024606], + [0.9637831603229527,0.9217993079584775,0.8108419838523644], + [0.9636293733179546,0.9237985390234525,0.8185313341022683], + [0.9634755863129566,0.9257977700884276,0.8262206843521722], + [0.9633217993079585,0.9277970011534026,0.8339100346020761], + [0.9631680123029605,0.9297962322183776,0.84159938485198], + [0.9630142252979623,0.9317954632833526,0.8492887351018839], + [0.9628604382929643,0.9337946943483275,0.8569780853517877], + [0.9627066512879662,0.9357939254133025,0.8646674356016917], + [0.9625528642829682,0.9377931564782775,0.8723567858515955], + [0.96239907727797,0.9397923875432526,0.8800461361014994], + [0.962245290272972,0.9417916186082276,0.8877354863514033], + [0.9620915032679739,0.9437908496732026,0.8954248366013071], + [0.9619377162629758,0.9457900807381776,0.9031141868512111], + [0.9617839292579777,0.9477893118031526,0.910803537101115], + [0.9616301422529796,0.9497885428681276,0.9184928873510187], + [0.9614763552479816,0.9517877739331027,0.9261822376009228], + [0.9613225682429835,0.9537870049980777,0.9338715878508266], + [0.9611687812379854,0.9557862360630527,0.9415609381007305], + [0.9610149942329873,0.9577854671280277,0.9492502883506344], + [0.9608612072279893,0.9597846981930027,0.9569396386005382], + [0.9572472126105345,0.9599384851980008,0.9595540176855056], + [0.9501730103806229,0.958246828143022,0.9570934256055363], + [0.9430988081507113,0.9565551710880431,0.9546328335255672], + [0.9360246059207997,0.9548635140330642,0.9521722414455979], + [0.9289504036908884,0.9531718569780854,0.9497116493656287], + [0.9218762014609766,0.9514801999231065,0.9472510572856594], + [0.9148019992310651,0.9497885428681276,0.9447904652056902], + [0.9077277970011535,0.9480968858131488,0.9423298731257209], + [0.900653594771242,0.9464052287581699,0.9398692810457517], + [0.8935793925413303,0.9447135717031911,0.9374086889657824], + [0.8865051903114188,0.9430219146482123,0.9349480968858133], + [0.8794309880815072,0.9413302575932334,0.932487504805844], + [0.8723567858515957,0.9396386005382545,0.9300269127258747], + [0.8652825836216841,0.9379469434832757,0.9275663206459055], + [0.8582083813917726,0.9362552864282968,0.9251057285659362], + [0.851134179161861,0.9345636293733179,0.922645136485967], + [0.8440599769319495,0.9328719723183391,0.9201845444059977], + [0.8369857747020378,0.9311803152633603,0.9177239523260285], + [0.8299115724721262,0.9294886582083814,0.9152633602460593], + [0.8228373702422147,0.9277970011534026,0.9128027681660901], + [0.8157631680123033,0.9261053440984237,0.9103421760861209], + [0.8086889657823916,0.9244136870434448,0.9078815840061516], + [0.80161476355248,0.922722029988466,0.9054209919261823], + [0.7945405613225685,0.9210303729334871,0.9029603998462131], + [0.7874663590926568,0.9193387158785082,0.9004998077662438], + [0.7803921568627453,0.9176470588235294,0.8980392156862746], + [0.7694732795078819,0.9131872356785853,0.8925028835063439], + [0.7585544021530184,0.908727412533641,0.8869665513264131], + [0.7476355247981549,0.9042675893886968,0.8814302191464823], + [0.7367166474432914,0.8998077662437525,0.8758938869665515], + [0.7257977700884278,0.8953479430988083,0.8703575547866207], + [0.7148788927335643,0.890888119953864,0.8648212226066899], + [0.7039600153787008,0.8864282968089198,0.8592848904267592], + [0.6930411380238373,0.8819684736639755,0.8537485582468283], + [0.6821222606689737,0.8775086505190313,0.8482122260668975], + [0.6712033833141102,0.873048827374087,0.8426758938869667], + [0.660284505959247,0.8685890042291429,0.8371395617070361], + [0.6493656286043832,0.8641291810841984,0.8316032295271051], + [0.6384467512495198,0.8596693579392543,0.8260668973471743], + [0.6275278738946561,0.8552095347943101,0.8205305651672435], + [0.6166089965397927,0.8507497116493657,0.8149942329873128], + [0.6056901191849292,0.8462898885044216,0.8094579008073819], + [0.5947712418300657,0.8418300653594772,0.8039215686274511], + [0.5838523644752022,0.837370242214533,0.7983852364475204], + [0.5729334871203386,0.8329104190695887,0.7928489042675895], + [0.5620146097654751,0.8284505959246445,0.7873125720876587], + [0.5510957324106116,0.8239907727797002,0.7817762399077279], + [0.5401768550557481,0.819530949634756,0.7762399077277972], + [0.5292579777008846,0.8150711264898117,0.7707035755478664], + [0.518339100346021,0.8106113033448675,0.7651672433679355], + [0.5074202229911575,0.8061514801999232,0.7596309111880047], + [0.4961937716262979,0.7997693194925032,0.7530180699730875], + [0.48465974625144237,0.7914648212226072,0.7453287197231838], + [0.4731257208765862,0.7831603229527108,0.7376393694732797], + [0.4615916955017304,0.7748558246828146,0.7299500192233758], + [0.45005767012687453,0.7665513264129183,0.7222606689734719], + [0.4385236447520187,0.7582468281430221,0.714571318723568], + [0.4269896193771629,0.7499423298731259,0.7068819684736641], + [0.415455594002307,0.7416378316032297,0.6991926182237602], + [0.4039215686274512,0.7333333333333335,0.6915032679738563], + [0.3923875432525954,0.7250288350634373,0.6838139177239524], + [0.3808535178777395,0.7167243367935411,0.6761245674740486], + [0.3693194925028837,0.7084198385236449,0.6684352172241447], + [0.35778546712802783,0.7001153402537487,0.6607458669742408], + [0.346251441753172,0.6918108419838525,0.653056516724337], + [0.3347174163783162,0.6835063437139562,0.645367166474433], + [0.32318339100346033,0.67520184544406,0.6376778162245291], + [0.3116493656286045,0.6668973471741639,0.6299884659746252], + [0.300115340253749,0.658592848904268,0.6222991157247215], + [0.2885813148788928,0.6502883506343715,0.6146097654748175], + [0.277047289504037,0.6419838523644753,0.6069204152249136], + [0.2655132641291812,0.6336793540945791,0.5992310649750097], + [0.2539792387543254,0.6253748558246829,0.5915417147251057], + [0.2424452133794695,0.6170703575547867,0.5838523644752018], + [0.2309111880046137,0.6087658592848905,0.576163014225298], + [0.21937716262975787,0.6004613610149943,0.5684736639753941], + [0.207843137254902,0.592156862745098,0.5607843137254902], + [0.19984621299500194,0.5846212995001923,0.5532487504805844], + [0.1918492887351019,0.5770857362552865,0.5457131872356786], + [0.18385236447520187,0.5695501730103806,0.5381776239907727], + [0.1758554402153018,0.5620146097654748,0.530642060745867], + [0.16785851595540177,0.554479046520569,0.5231064975009612], + [0.15986159169550174,0.5469434832756632,0.5155709342560554], + [0.1518646674356017,0.5394079200307574,0.5080353710111496], + [0.1438677431757019,0.5318723567858519,0.5004998077662439], + [0.1358708189158016,0.5243367935409458,0.49296424452133797], + [0.1278738946559016,0.51680123029604,0.48542868127643213], + [0.11987697039600155,0.5092656670511342,0.47789311803152634], + [0.11188004613610152,0.5017301038062284,0.47035755478662056], + [0.10388312187620148,0.4941945405613226,0.4628219915417148], + [0.09588619761630142,0.4866589773164168,0.45528642829680893], + [0.0878892733564014,0.479123414071511,0.44775086505190315], + [0.07989234909650136,0.47158785082660515,0.4402153018069973], + [0.07189542483660133,0.46405228758169936,0.4326797385620915], + [0.06389850057670127,0.4565167243367936,0.42514417531718574], + [0.05590157631680123,0.44898116109188774,0.4176086120722799], + [0.0479046520569012,0.44144559784698195,0.4100730488273741], + [0.03990772779700116,0.4339100346020761,0.40253748558246827], + [0.03191080353710113,0.4263744713571703,0.3950019223375625], + [0.023913879277201094,0.41883890811226454,0.3874663590926567], + [0.015916955017301282,0.411303344867359,0.37993079584775113], + [0.007920030757401025,0.40376778162245297,0.3723952326028451], + [0.0038446751249519417,0.3967704728950404,0.36509034986543637], + [0.003690888119953864,0.39031141868512115,0.3580161476355248], + [0.003537101114955786,0.3838523644752019,0.35094194540561324], + [0.0033833141099577084,0.3773933102652826,0.3438677431757017], + [0.0032295271049596307,0.37093425605536334,0.3367935409457901], + [0.0030757400999615533,0.3644752018454441,0.32971933871587855], + [0.0029219530949634756,0.3580161476355248,0.32264513648596693], + [0.002768166089965398,0.35155709342560554,0.31557093425605537], + [0.0026143790849673205,0.34509803921568627,0.3084967320261438], + [0.0024605920799692423,0.338638985005767,0.30142252979623224], + [0.002306805074971165,0.33217993079584773,0.2943483275663207], + [0.0021530180699730873,0.3257208765859285,0.28727412533640906], + [0.0019992310649750095,0.31926182237600925,0.2801999231064975], + [0.0018454440599769317,0.31280276816609,0.27312572087658593], + [0.0016916570549788588,0.3063437139561709,0.26605151864667453], + [0.0015378700499807767,0.29988465974625145,0.2589773164167628], + [0.001384083044982699,0.2934256055363322,0.2519031141868512], + [0.0012302960399846212,0.2869665513264129,0.24482891195693965], + [0.0010765090349865438,0.2805074971164937,0.23775470972702809], + [0.0009227220299884661,0.2740484429065744,0.2306805074971165], + [0.0007689350249903883,0.26758938869665516,0.22360630526720493], + [0.0006151480199923106,0.26113033448673584,0.21653210303729334], + [0.00046136101499423326,0.2546712802768166,0.20945790080738177], + [0.0003075740099961555,0.24821222606689736,0.2023836985774702], + [0.00015378700499807775,0.2417531718569781,0.19530949634755862], + [0.0,0.23529411764705882,0.18823529411764706] ], + BrBG_r: [ + [0.0,0.23529411764705882,0.18823529411764706], + [0.00015378700499807765,0.2417531718569781,0.19530949634755862], + [0.0003075740099961553,0.24821222606689736,0.2023836985774702], + [0.000461361014994233,0.2546712802768166,0.20945790080738177], + [0.0006151480199923106,0.2611303344867359,0.21653210303729334], + [0.0007689350249903883,0.26758938869665516,0.22360630526720493], + [0.000922722029988466,0.2740484429065744,0.2306805074971165], + [0.0010765090349865436,0.28050749711649364,0.23775470972702809], + [0.0012302960399846212,0.2869665513264129,0.24482891195693965], + [0.0013840830449826991,0.2934256055363322,0.25190311418685124], + [0.0015378700499807767,0.29988465974625145,0.2589773164167628], + [0.0016916570549788544,0.3063437139561707,0.26605151864667437], + [0.001845444059976932,0.31280276816609,0.27312572087658593], + [0.0019992310649750095,0.3192618223760092,0.2801999231064975], + [0.0021530180699730873,0.3257208765859285,0.2872741253364091], + [0.002306805074971165,0.33217993079584773,0.2943483275663207], + [0.0024605920799692423,0.33863898500576706,0.30142252979623224], + [0.00261437908496732,0.34509803921568627,0.3084967320261438], + [0.0027681660899653983,0.35155709342560554,0.3155709342560554], + [0.0029219530949634756,0.3580161476355248,0.32264513648596693], + [0.0030757400999615533,0.3644752018454441,0.32971933871587855], + [0.0032295271049596307,0.37093425605536334,0.33679354094579006], + [0.003383314109957709,0.3773933102652826,0.3438677431757017], + [0.003537101114955786,0.3838523644752019,0.35094194540561324], + [0.003690888119953864,0.3903114186851211,0.3580161476355248], + [0.0038446751249519412,0.3967704728950404,0.3650903498654364], + [0.007920030757401,0.4037677816224529,0.37239523260284507], + [0.01591695501730104,0.41130334486735876,0.3799307958477509], + [0.023913879277201077,0.41883890811226454,0.3874663590926567], + [0.031910803537101115,0.4263744713571703,0.3950019223375625], + [0.039907727797001157,0.43391003460207617,0.4025374855824683], + [0.04790465205690119,0.44144559784698195,0.4100730488273741], + [0.055901576316801226,0.44898116109188774,0.4176086120722799], + [0.06389850057670121,0.4565167243367935,0.4251441753171857], + [0.0718954248366013,0.46405228758169936,0.4326797385620915], + [0.07989234909650135,0.47158785082660515,0.4402153018069973], + [0.08788927335640138,0.479123414071511,0.44775086505190315], + [0.09588619761630136,0.4866589773164167,0.4552864282968089], + [0.10388312187620145,0.49419454056132256,0.4628219915417147], + [0.1118800461361015,0.5017301038062284,0.47035755478662056], + [0.11987697039600154,0.5092656670511342,0.47789311803152634], + [0.12787389465590152,0.51680123029604,0.48542868127643213], + [0.1358708189158016,0.5243367935409458,0.49296424452133797], + [0.14386774317570167,0.5318723567858517,0.5004998077662437], + [0.15186466743560167,0.5394079200307574,0.5080353710111496], + [0.15986159169550168,0.5469434832756632,0.5155709342560553], + [0.1678585159554018,0.554479046520569,0.5231064975009612], + [0.1758554402153018,0.5620146097654748,0.530642060745867], + [0.1838523644752018,0.5695501730103807,0.5381776239907727], + [0.19184928873510182,0.5770857362552864,0.5457131872356785], + [0.19984621299500194,0.5846212995001923,0.5532487504805844], + [0.20784313725490194,0.592156862745098,0.5607843137254902], + [0.2193771626297578,0.6004613610149943,0.5684736639753941], + [0.23091118800461352,0.6087658592848904,0.5761630142252979], + [0.24244521337946942,0.6170703575547866,0.5838523644752018], + [0.25397923875432526,0.6253748558246828,0.5915417147251057], + [0.2655132641291811,0.633679354094579,0.5992310649750096], + [0.2770472895040368,0.6419838523644751,0.6069204152249135], + [0.2885813148788927,0.6502883506343714,0.6146097654748174], + [0.30011534025374853,0.6585928489042676,0.6222991157247212], + [0.31164936562860435,0.6668973471741637,0.6299884659746251], + [0.32318339100346005,0.6752018454440599,0.6376778162245289], + [0.334717416378316,0.6835063437139561,0.6453671664744328], + [0.3462514417531718,0.6918108419838523,0.6530565167243367], + [0.3577854671280276,0.7001153402537486,0.6607458669742406], + [0.36931949250288343,0.7084198385236447,0.6684352172241445], + [0.380853517877739,0.7167243367935408,0.6761245674740483], + [0.39238754325259506,0.7250288350634371,0.6838139177239523], + [0.4039215686274509,0.7333333333333333,0.6915032679738561], + [0.4154555940023067,0.7416378316032295,0.69919261822376], + [0.4269896193771625,0.7499423298731256,0.7068819684736639], + [0.4385236447520183,0.7582468281430219,0.7145713187235677], + [0.45005767012687414,0.766551326412918,0.7222606689734716], + [0.46159169550172996,0.7748558246828142,0.7299500192233755], + [0.47312572087658555,0.7831603229527103,0.7376393694732792], + [0.4846597462514416,0.7914648212226065,0.7453287197231833], + [0.4961937716262974,0.7997693194925029,0.7530180699730871], + [0.5074202229911571,0.8061514801999231,0.7596309111880045], + [0.5183391003460206,0.8106113033448673,0.7651672433679353], + [0.5292579777008841,0.8150711264898116,0.7707035755478662], + [0.5401768550557476,0.8195309496347558,0.7762399077277969], + [0.5510957324106112,0.8239907727797001,0.7817762399077277], + [0.5620146097654746,0.8284505959246443,0.7873125720876585], + [0.5729334871203382,0.8329104190695886,0.7928489042675894], + [0.5838523644752017,0.8373702422145328,0.7983852364475201], + [0.5947712418300652,0.8418300653594771,0.8039215686274509], + [0.6056901191849288,0.8462898885044213,0.8094579008073817], + [0.6166089965397923,0.8507497116493656,0.8149942329873126], + [0.6275278738946558,0.8552095347943098,0.8205305651672433], + [0.6384467512495193,0.8596693579392541,0.8260668973471741], + [0.6493656286043827,0.8641291810841983,0.8316032295271049], + [0.6602845059592464,0.8685890042291426,0.8371395617070357], + [0.6712033833141099,0.8730488273740868,0.8426758938869665], + [0.6821222606689734,0.8775086505190312,0.8482122260668974], + [0.6930411380238369,0.8819684736639753,0.8537485582468282], + [0.7039600153787005,0.8864282968089197,0.8592848904267589], + [0.714878892733564,0.8908881199538639,0.8648212226066897], + [0.7257977700884275,0.8953479430988082,0.8703575547866206], + [0.7367166474432909,0.8998077662437522,0.8758938869665512], + [0.7476355247981545,0.9042675893886967,0.8814302191464821], + [0.7585544021530181,0.9087274125336409,0.8869665513264129], + [0.7694732795078816,0.9131872356785851,0.8925028835063438], + [0.7803921568627451,0.9176470588235294,0.8980392156862745], + [0.7874663590926567,0.9193387158785082,0.9004998077662438], + [0.7945405613225682,0.9210303729334871,0.902960399846213], + [0.8016147635524798,0.922722029988466,0.9054209919261823], + [0.8086889657823912,0.9244136870434447,0.9078815840061515], + [0.815763168012303,0.9261053440984237,0.9103421760861208], + [0.8228373702422145,0.9277970011534025,0.91280276816609], + [0.8299115724721261,0.9294886582083813,0.9152633602460593], + [0.8369857747020377,0.9311803152633602,0.9177239523260284], + [0.8440599769319492,0.9328719723183391,0.9201845444059977], + [0.8511341791618608,0.9345636293733179,0.9226451364859669], + [0.8582083813917725,0.9362552864282968,0.9251057285659362], + [0.8652825836216839,0.9379469434832757,0.9275663206459054], + [0.8723567858515956,0.9396386005382545,0.9300269127258747], + [0.8794309880815071,0.9413302575932334,0.932487504805844], + [0.8865051903114187,0.9430219146482123,0.9349480968858132], + [0.8935793925413302,0.944713571703191,0.9374086889657824], + [0.9006535947712418,0.9464052287581699,0.9398692810457516], + [0.9077277970011535,0.9480968858131488,0.9423298731257209], + [0.914801999231065,0.9497885428681276,0.9447904652056901], + [0.9218762014609765,0.9514801999231065,0.9472510572856594], + [0.9289504036908881,0.9531718569780854,0.9497116493656286], + [0.9360246059207997,0.9548635140330642,0.9521722414455979], + [0.9430988081507112,0.9565551710880431,0.9546328335255672], + [0.9501730103806229,0.958246828143022,0.9570934256055363], + [0.9572472126105345,0.9599384851980008,0.9595540176855056], + [0.9608612072279893,0.9597846981930027,0.9569396386005383], + [0.9610149942329873,0.9577854671280277,0.9492502883506344], + [0.9611687812379854,0.9557862360630527,0.9415609381007305], + [0.9613225682429835,0.9537870049980777,0.9338715878508267], + [0.9614763552479816,0.9517877739331028,0.926182237600923], + [0.9616301422529796,0.9497885428681276,0.9184928873510189], + [0.9617839292579777,0.9477893118031526,0.9108035371011151], + [0.9619377162629758,0.9457900807381776,0.9031141868512111], + [0.9620915032679739,0.9437908496732026,0.8954248366013072], + [0.962245290272972,0.9417916186082277,0.8877354863514034], + [0.96239907727797,0.9397923875432527,0.8800461361014995], + [0.9625528642829682,0.9377931564782777,0.8723567858515956], + [0.9627066512879662,0.9357939254133026,0.8646674356016918], + [0.9628604382929643,0.9337946943483276,0.8569780853517879], + [0.9630142252979623,0.9317954632833526,0.849288735101884], + [0.9631680123029605,0.9297962322183776,0.8415993848519802], + [0.9633217993079585,0.9277970011534026,0.8339100346020762], + [0.9634755863129566,0.9257977700884276,0.8262206843521723], + [0.9636293733179546,0.9237985390234525,0.8185313341022685], + [0.9637831603229527,0.9217993079584775,0.8108419838523646], + [0.9639369473279508,0.9198000768935026,0.8031526336024609], + [0.9640907343329489,0.9178008458285275,0.7954632833525568], + [0.9642445213379469,0.9158016147635525,0.787773933102653], + [0.964398308342945,0.9138023836985775,0.7800845828527491], + [0.9645520953479431,0.9118031526336025,0.7723952326028453], + [0.9647058823529412,0.9098039215686275,0.7647058823529413], + [0.9611687812379855,0.9039600153787006,0.753940792003076], + [0.9576316801230297,0.8981161091887737,0.7431757016532106], + [0.9540945790080739,0.8922722029988468,0.7324106113033452], + [0.9505574778931182,0.8864282968089198,0.7216455209534797], + [0.9470203767781623,0.8805843906189929,0.7108804306036143], + [0.9434832756632066,0.8747404844290659,0.7001153402537488], + [0.9399461745482508,0.8688965782391389,0.6893502499038834], + [0.936409073433295,0.863052672049212,0.678585159554018], + [0.9328719723183392,0.8572087658592851,0.6678200692041525], + [0.9293348712033834,0.851364859669358,0.6570549788542871], + [0.9257977700884278,0.8455209534794313,0.6462898885044219], + [0.9222606689734718,0.8396770472895042,0.6355247981545562], + [0.918723567858516,0.8338331410995772,0.6247597078046908], + [0.9151864667435603,0.8279892349096503,0.6139946174548253], + [0.9116493656286044,0.8221453287197233,0.6032295271049599], + [0.9081122645136487,0.8163014225297964,0.5924644367550944], + [0.9045751633986929,0.8104575163398694,0.581699346405229], + [0.9010380622837372,0.8046136101499425,0.5709342560553636], + [0.8975009611687813,0.7987697039600155,0.5601691657054981], + [0.8939638600538256,0.7929257977700885,0.5494040753556327], + [0.8904267589388698,0.7870818915801616,0.5386389850057673], + [0.8868896578239139,0.7812379853902347,0.5278738946559018], + [0.8833525567089582,0.7753940792003077,0.5171088043060365], + [0.8798154555940024,0.7695501730103808,0.5063437139561711], + [0.8762783544790467,0.7637062668204538,0.49557862360630556], + [0.8720492118415996,0.755786236063053,0.48404459823144974], + [0.8671280276816612,0.7457900807381781,0.4717416378316039], + [0.8622068435217225,0.7357939254133028,0.4594386774317573], + [0.857285659361784,0.7257977700884277,0.4471357170319111], + [0.8523644752018456,0.7158016147635526,0.43483275663206483], + [0.8474432910419071,0.7058054594386776,0.42252979623221865], + [0.8425221068819686,0.6958093041138026,0.4102268358323724], + [0.8376009227220301,0.6858131487889275,0.39792387543252616], + [0.8326797385620917,0.6758169934640524,0.3856209150326799], + [0.8277585544021531,0.6658208381391774,0.37331795463283374], + [0.8228373702422146,0.6558246828143023,0.3610149942329875], + [0.8179161860822761,0.6458285274894273,0.3487120338331413], + [0.8129950019223376,0.6358323721645522,0.33640907343329507], + [0.8080738177623992,0.6258362168396772,0.32410611303344883], + [0.8031526336024607,0.6158400615148021,0.3118031526336026], + [0.7982314494425221,0.605843906189927,0.29950019223375635], + [0.7933102652825836,0.5958477508650519,0.2871972318339101], + [0.7883890811226453,0.5858515955401772,0.27489427143406425], + [0.7834678969627067,0.5758554402153019,0.26259131103421773], + [0.7785467128027682,0.5658592848904268,0.2502883506343715], + [0.7736255286428297,0.5558631295655517,0.23798539023452525], + [0.7687043444828913,0.5458669742406768,0.225682429834679], + [0.7637831603229528,0.5358708189158017,0.21337946943483277], + [0.7588619761630142,0.5258746635909266,0.20107650903498653], + [0.7539407920030757,0.5158785082660515,0.18877354863514034], + [0.7490196078431373,0.5058823529411764,0.1764705882352941], + [0.7411764705882353,0.49850057670126874,0.1710880430603614], + [0.7333333333333334,0.49111880046136097,0.16570549788542868], + [0.7254901960784313,0.48373702422145326,0.16032295271049596], + [0.7176470588235294,0.47635524798154555,0.15494040753556326], + [0.7098039215686275,0.46897347174163784,0.14955786236063054], + [0.7019607843137255,0.46159169550173007,0.14417531718569782], + [0.6941176470588235,0.45420991926182236,0.1387927720107651], + [0.6862745098039218,0.4468281430219148,0.13341022683583253], + [0.6784313725490196,0.4394463667820069,0.12802768166089967], + [0.6705882352941177,0.43206459054209917,0.12264513648596695], + [0.6627450980392157,0.42468281430219146,0.11726259131103423], + [0.6549019607843137,0.4173010380622837,0.1118800461361015], + [0.6470588235294118,0.409919261822376,0.10649750096116879], + [0.6392156862745099,0.40253748558246827,0.10111495578623605], + [0.6313725490196078,0.3951557093425605,0.09573241061130335], + [0.6235294117647059,0.3877739331026528,0.09034986543637064], + [0.615686274509804,0.3803921568627451,0.08496732026143791], + [0.607843137254902,0.3730103806228373,0.07958477508650519], + [0.6000000000000001,0.36562860438292966,0.07420222991157248], + [0.592156862745098,0.3582468281430219,0.06881968473663976], + [0.5843137254901961,0.3508650519031142,0.06343713956170705], + [0.5764705882352942,0.34348327566320647,0.05805459438677431], + [0.5686274509803921,0.3361014994232987,0.0526720492118416], + [0.5607843137254904,0.3287197231833912,0.04728950403690904], + [0.5529411764705883,0.3213379469434833,0.04190695886197618], + [0.5447135717031911,0.3151095732410611,0.03883121876201461], + [0.5361014994232988,0.31003460207612454,0.03806228373702422], + [0.5274894271434064,0.304959630911188,0.03729334871203383], + [0.518877354863514,0.29988465974625145,0.03652441368704344], + [0.5102652825836217,0.29480968858131484,0.03575547866205306], + [0.5016532103037293,0.2897347174163783,0.03498654363706267], + [0.49304113802383703,0.28465974625144175,0.03421760861207228], + [0.4844290657439447,0.2795847750865052,0.03344867358708189], + [0.4758169934640523,0.2745098039215686,0.032679738562091505], + [0.46720492118415996,0.26943483275663205,0.031910803537101115], + [0.4585928489042676,0.2643598615916955,0.031141868512110725], + [0.44998077662437524,0.25928489042675895,0.03037293348712034], + [0.44136870434448294,0.25420991926182235,0.029603998462129952], + [0.4327566320645906,0.2491349480968858,0.02883506343713956], + [0.42414455978469845,0.2440599769319494,0.028066128412149196], + [0.41553248750480587,0.2389850057670127,0.027297193387158785], + [0.4069204152249135,0.2339100346020761,0.026528258362168395], + [0.39830834294502115,0.22883506343713955,0.02575932333717801], + [0.3896962706651288,0.223760092272203,0.02499038831218762], + [0.38108419838523644,0.21868512110726646,0.02422145328719723], + [0.3724721261053441,0.21361014994232985,0.02345251826220684], + [0.3638600538254517,0.2085351787773933,0.022683583237216455], + [0.3552479815455594,0.20346020761245676,0.02191464821222607], + [0.34663590926566706,0.1983852364475202,0.02114571318723568], + [0.3380238369857747,0.1933102652825836,0.02037677816224529], + [0.32941176470588235,0.18823529411764706,0.0196078431372549] ], + BuGn: [ + [0.9686274509803922,0.9882352941176471,0.9921568627450981], + [0.9664129181084199,0.9873740868896579,0.9916647443291042], + [0.9641983852364475,0.9865128796616687,0.9911726259131104], + [0.9619838523644753,0.9856516724336793,0.9906805074971166], + [0.9597693194925029,0.9847904652056901,0.9901883890811227], + [0.9575547866205306,0.9839292579777009,0.9896962706651288], + [0.9553402537485582,0.9830680507497117,0.9892041522491349], + [0.953125720876586,0.9822068435217225,0.9887120338331411], + [0.9509111880046136,0.9813456362937332,0.9882199154171473], + [0.9486966551326413,0.980484429065744,0.9877277970011534], + [0.946482122260669,0.9796232218377547,0.9872356785851596], + [0.9442675893886967,0.9787620146097655,0.9867435601691658], + [0.9420530565167243,0.9779008073817763,0.9862514417531718], + [0.9398385236447521,0.977039600153787,0.985759323337178], + [0.9376239907727797,0.9761783929257978,0.9852672049211841], + [0.9354094579008074,0.9753171856978086,0.9847750865051903], + [0.933194925028835,0.9744559784698194,0.9842829680891965], + [0.9309803921568628,0.9735947712418301,0.9837908496732026], + [0.9287658592848904,0.9727335640138408,0.9832987312572088], + [0.9265513264129182,0.9718723567858516,0.982806612841215], + [0.9243367935409458,0.9710111495578624,0.982314494425221], + [0.9221222606689735,0.9701499423298732,0.9818223760092272], + [0.9199077277970011,0.969288735101884,0.9813302575932333], + [0.9176931949250289,0.9684275278738947,0.9808381391772395], + [0.9154786620530565,0.9675663206459054,0.9803460207612457], + [0.9132641291810842,0.9667051134179162,0.9798539023452518], + [0.9110495963091119,0.965843906189927,0.979361783929258], + [0.9088350634371396,0.9649826989619378,0.9788696655132642], + [0.9066205305651672,0.9641214917339485,0.9783775470972702], + [0.904405997693195,0.9632602845059592,0.9778854286812764], + [0.9021914648212226,0.96239907727797,0.9773933102652825], + [0.8999769319492503,0.9615378700499808,0.9769011918492887], + [0.8976547481737793,0.9606459054209919,0.9761783929257978], + [0.8945790080738178,0.9595386389850058,0.9738408304498269], + [0.8915032679738563,0.9584313725490197,0.9715032679738562], + [0.8884275278738947,0.9573241061130334,0.9691657054978854], + [0.8853517877739331,0.9562168396770473,0.9668281430219147], + [0.8822760476739716,0.9551095732410612,0.9644905805459438], + [0.87920030757401,0.954002306805075,0.9621530180699731], + [0.8761245674740484,0.9528950403690889,0.9598154555940023], + [0.873048827374087,0.9517877739331027,0.9574778931180316], + [0.8699730872741254,0.9506805074971165,0.9551403306420607], + [0.8668973471741638,0.9495732410611304,0.95280276816609], + [0.8638216070742023,0.9484659746251443,0.9504652056901192], + [0.8607458669742407,0.947358708189158,0.9481276432141484], + [0.8576701268742792,0.9462514417531719,0.9457900807381776], + [0.8545943867743176,0.9451441753171858,0.9434525182622069], + [0.8515186466743561,0.9440369088811996,0.941114955786236], + [0.8484429065743945,0.9429296424452134,0.9387773933102653], + [0.845367166474433,0.9418223760092272,0.9364398308342945], + [0.8422914263744714,0.9407151095732411,0.9341022683583238], + [0.8392156862745098,0.939607843137255,0.9317647058823529], + [0.8361399461745483,0.9385005767012687,0.9294271434063821], + [0.8330642060745868,0.9373933102652826,0.9270895809304114], + [0.8299884659746252,0.9362860438292965,0.9247520184544407], + [0.8269127258746636,0.9351787773933103,0.9224144559784698], + [0.8238369857747021,0.9340715109573241,0.920076893502499], + [0.8207612456747405,0.932964244521338,0.9177393310265283], + [0.8176855055747789,0.9318569780853518,0.9154017685505574], + [0.8146097654748174,0.9307497116493657,0.9130642060745867], + [0.8115340253748559,0.9296424452133795,0.9107266435986159], + [0.8084582852748944,0.9285351787773933,0.9083890811226452], + [0.8053825451749328,0.9274279123414072,0.9060515186466743], + [0.8023068050749712,0.9263206459054211,0.9037139561707036], + [0.7984313725490196,0.9248750480584391,0.9010688196847366], + [0.7921568627450981,0.9224144559784698,0.8975009611687812], + [0.7858823529411766,0.9199538638985006,0.8939331026528259], + [0.779607843137255,0.9174932718185314,0.8903652441368705], + [0.7733333333333333,0.9150326797385622,0.886797385620915], + [0.7670588235294118,0.9125720876585929,0.8832295271049596], + [0.7607843137254903,0.9101114955786236,0.8796616685890042], + [0.7545098039215686,0.9076509034986544,0.8760938100730489], + [0.7482352941176471,0.9051903114186851,0.8725259515570934], + [0.7419607843137255,0.9027297193387159,0.868958093041138], + [0.7356862745098041,0.9002691272587466,0.8653902345251827], + [0.7294117647058824,0.8978085351787775,0.8618223760092272], + [0.7231372549019608,0.8953479430988082,0.8582545174932719], + [0.7168627450980393,0.8928873510188389,0.8546866589773164], + [0.7105882352941176,0.8904267589388697,0.851118800461361], + [0.7043137254901961,0.8879661668589004,0.8475509419454056], + [0.6980392156862745,0.8855055747789312,0.8439830834294502], + [0.691764705882353,0.8830449826989619,0.8404152249134949], + [0.6854901960784314,0.8805843906189927,0.8368473663975394], + [0.6792156862745098,0.8781237985390234,0.833279507881584], + [0.6729411764705883,0.8756632064590543,0.8297116493656286], + [0.6666666666666667,0.873202614379085,0.8261437908496732], + [0.6603921568627451,0.8707420222991157,0.8225759323337178], + [0.6541176470588235,0.8682814302191465,0.8190080738177624], + [0.647843137254902,0.8658208381391772,0.815440215301807], + [0.6415686274509804,0.863360246059208,0.8118723567858516], + [0.6352941176470589,0.8608996539792388,0.8083044982698963], + [0.6290196078431373,0.8584390618992696,0.8047366397539408], + [0.6227450980392157,0.8559784698193003,0.8011687812379854], + [0.6164705882352941,0.8535178777393311,0.79760092272203], + [0.6101960784313726,0.8510572856593618,0.7940330642060746], + [0.6039215686274509,0.8485966935793925,0.7904652056901191], + [0.5976470588235294,0.8460438292964244,0.7865282583621683], + [0.5913725490196078,0.8433371780084583,0.7819761630142252], + [0.5850980392156864,0.8406305267204921,0.7774240676662822], + [0.5788235294117647,0.8379238754325259,0.772871972318339], + [0.5725490196078431,0.8352172241445598,0.7683198769703959], + [0.5662745098039216,0.8325105728565936,0.7637677816224528], + [0.5599999999999999,0.8298039215686275,0.7592156862745097], + [0.5537254901960784,0.8270972702806613,0.7546635909265667], + [0.5474509803921569,0.8243906189926951,0.7501114955786236], + [0.5411764705882353,0.821683967704729,0.7455594002306805], + [0.5349019607843138,0.8189773164167629,0.7410073048827375], + [0.5286274509803921,0.8162706651287966,0.7364552095347943], + [0.5223529411764706,0.8135640138408304,0.7319031141868512], + [0.516078431372549,0.8108573625528642,0.7273510188389081], + [0.5098039215686274,0.8081507112648981,0.722798923490965], + [0.5035294117647059,0.8054440599769319,0.7182468281430219], + [0.4972549019607843,0.8027374086889658,0.7136947327950789], + [0.49098039215686273,0.8000307574009996,0.7091426374471357], + [0.48470588235294126,0.7973241061130335,0.7045905420991927], + [0.47843137254901963,0.7946174548250673,0.7000384467512495], + [0.47215686274509805,0.7919108035371011,0.6954863514033065], + [0.4658823529411765,0.7892041522491349,0.6909342560553633], + [0.4596078431372549,0.7864975009611688,0.6863821607074203], + [0.45333333333333337,0.7837908496732026,0.6818300653594771], + [0.4470588235294118,0.7810841983852365,0.6772779700115341], + [0.4407843137254902,0.7783775470972703,0.6727258746635909], + [0.43450980392156874,0.7756708958093042,0.6681737793156479], + [0.42823529411764705,0.7729642445213379,0.6636216839677047], + [0.4219607843137255,0.7702575932333717,0.6590695886197617], + [0.41568627450980394,0.7675509419454056,0.6545174932718185], + [0.40941176470588236,0.7648442906574394,0.6499653979238755], + [0.40313725490196084,0.7621376393694732,0.6454133025759323], + [0.3977239523260285,0.7595540176855056,0.6403075740099962], + [0.3931718569780854,0.7570934256055363,0.6346482122260669], + [0.3886197616301423,0.7546328335255671,0.6289888504421377], + [0.3840676662821992,0.7521722414455978,0.6233294886582085], + [0.3795155709342562,0.7497116493656286,0.6176701268742794], + [0.374963475586313,0.7472510572856593,0.6120107650903499], + [0.3704113802383699,0.7447904652056901,0.6063514033064207], + [0.3658592848904268,0.7423298731257209,0.6006920415224914], + [0.36130718954248364,0.7398692810457516,0.5950326797385621], + [0.35675509419454055,0.7374086889657824,0.5893733179546329], + [0.35220299884659745,0.7349480968858131,0.5837139561707037], + [0.34765090349865435,0.7324875048058439,0.5780545943867743], + [0.34309880815071125,0.7300269127258746,0.5723952326028451], + [0.33854671280276816,0.7275663206459054,0.5667358708189159], + [0.33399461745482506,0.7251057285659361,0.5610765090349866], + [0.32944252210688196,0.722645136485967,0.5554171472510573], + [0.32489042675893887,0.7201845444059977,0.5497577854671281], + [0.32033833141099577,0.7177239523260285,0.5440984236831988], + [0.31578623606305267,0.7152633602460592,0.5384390618992695], + [0.3112341407151096,0.71280276816609,0.5327797001153403], + [0.3066820453671666,0.7103421760861208,0.5271203383314111], + [0.3021299500192234,0.7078815840061514,0.5214609765474818], + [0.2975778546712803,0.7054209919261822,0.5158016147635525], + [0.2930257593233372,0.702960399846213,0.5101422529796232], + [0.2884736639753941,0.7004998077662438,0.504482891195694], + [0.283921568627451,0.6980392156862745,0.4988235294117647], + [0.2793694732795079,0.6955786236063053,0.49316416762783544], + [0.2748173779315648,0.693118031526336,0.4875048058439062], + [0.2702652825836217,0.6906574394463668,0.481845444059977], + [0.2657131872356786,0.6881968473663975,0.4761860822760477], + [0.26116109188773545,0.6857362552864283,0.4705267204921184], + [0.25660899653979236,0.683275663206459,0.4648673587081892], + [0.25259515570934254,0.6796616685890042,0.4589773164167628], + [0.2489042675893887,0.675355632449058,0.45294886582083815], + [0.2452133794694348,0.6710495963091119,0.4469204152249135], + [0.24152249134948095,0.6667435601691657,0.4408919646289889], + [0.2378316032295272,0.6624375240292196,0.4348635140330644], + [0.23414071510957324,0.6581314878892733,0.42883506343713956], + [0.23044982698961936,0.6538254517493272,0.4228066128412149], + [0.2267589388696655,0.649519415609381,0.4167781622452903], + [0.22306805074971164,0.6452133794694348,0.41074971164936563], + [0.2193771626297578,0.6409073433294886,0.404721261053441], + [0.21568627450980393,0.6366013071895424,0.39869281045751637], + [0.21199538638985005,0.6322952710495963,0.3926643598615917], + [0.2083044982698962,0.6279892349096501,0.38663590926566704], + [0.20461361014994234,0.6236831987697039,0.38060745866974244], + [0.20092272202998845,0.6193771626297577,0.3745790080738178], + [0.1972318339100346,0.6150711264898117,0.3685505574778931], + [0.19354094579008074,0.6107650903498654,0.36252210688196845], + [0.18985005767012686,0.6064590542099192,0.3564936562860438], + [0.186159169550173,0.602153018069973,0.3504652056901192], + [0.18246828143021915,0.5978469819300269,0.3444367550941945], + [0.17877739331026538,0.5935409457900809,0.3384083044982701], + [0.17508650519031144,0.5892349096501346,0.33237985390234526], + [0.17139561707035755,0.5849288735101883,0.3263514033064206], + [0.1677047289504037,0.5806228373702422,0.32032295271049593], + [0.16401384083044984,0.576316801230296,0.31429450211457133], + [0.16032295271049596,0.5720107650903499,0.30826605151864667], + [0.1566320645905421,0.5677047289504037,0.302237600922722], + [0.15294117647058825,0.5633986928104575,0.2962091503267974], + [0.14925028835063436,0.5590926566705113,0.2901806997308727], + [0.1455594002306805,0.5547866205305652,0.2841522491349481], + [0.14186851211072665,0.550480584390619,0.27812379853902347], + [0.13817762399077277,0.5461745482506728,0.27209534794309875], + [0.1340253748558247,0.5423298731257208,0.26828143021914647], + [0.1297193387158785,0.538638985005767,0.26520569011918493], + [0.12541330257593233,0.5349480968858131,0.26212995001922335], + [0.12110726643598617,0.5312572087658592,0.2590542099192618], + [0.11680123029604011,0.5275663206459055,0.25597846981930034], + [0.11249519415609383,0.5238754325259515,0.2529027297193387], + [0.10818915801614765,0.5201845444059976,0.24982698961937716], + [0.10388312187620147,0.5164936562860438,0.2467512495194156], + [0.09957708573625529,0.5128027681660899,0.24367550941945404], + [0.09527104959630911,0.5091118800461361,0.24059976931949248], + [0.09096501345636294,0.5054209919261822,0.23752402921953092], + [0.08665897731641677,0.5017301038062283,0.2344482891195694], + [0.0823529411764706,0.49803921568627446,0.23137254901960783], + [0.07804690503652442,0.49434832756632063,0.22829680891964627], + [0.07374086889657824,0.49065743944636675,0.22522106881968473], + [0.06943483275663206,0.48696655132641287,0.22214532871972317], + [0.0651287966166859,0.48327566320645904,0.2190695886197616], + [0.06082276047673972,0.47958477508650516,0.21599384851980008], + [0.05651672433679354,0.47589388696655127,0.21291810841983852], + [0.05221068819684736,0.47220299884659744,0.20984236831987696], + [0.04790465205690131,0.46851211072664367,0.20676662821991548], + [0.04359861591695502,0.4648212226066897,0.20369088811995384], + [0.03929257977700884,0.46113033448673585,0.2006151480199923], + [0.034986543637062675,0.45743944636678197,0.19753940792003075], + [0.030680507497116496,0.45374855824682814,0.19446366782006919], + [0.026374471357170318,0.45005767012687425,0.19138792772010765], + [0.02206843521722414,0.44636678200692037,0.1883121876201461], + [0.017762399077277974,0.44267589388696654,0.18523644752018453], + [0.013456362937331795,0.43898500576701266,0.182160707420223], + [0.009150326797385616,0.43529411764705883,0.1790849673202614], + [0.004844290657439437,0.43160322952710495,0.17600922722029988], + [0.0005382545174932585,0.42791234140715106,0.17293348712033835], + [0.0,0.42303729334871204,0.170718954248366], + [0.0,0.41799307958477505,0.16862745098039217], + [0.0,0.4129488658208381,0.1665359477124183], + [0.0,0.4079046520569012,0.16444444444444445], + [0.0,0.40286043829296436,0.16235294117647064], + [0.0,0.39781622452902726,0.16026143790849673], + [0.0,0.39277201076509033,0.15816993464052287], + [0.0,0.3877277970011534,0.156078431372549], + [0.0,0.38268358323721646,0.15398692810457515], + [0.0,0.3776393694732795,0.1518954248366013], + [0.0,0.37259515570934254,0.14980392156862746], + [0.0,0.3675509419454056,0.1477124183006536], + [0.0,0.3625067281814687,0.14562091503267974], + [0.0,0.3574625144175317,0.14352941176470588], + [0.0,0.35241830065359475,0.14143790849673202], + [0.0,0.3473740868896578,0.13934640522875816], + [0.0,0.3423298731257209,0.13725490196078433], + [0.0,0.3372856593617839,0.13516339869281047], + [0.0,0.33224144559784696,0.1330718954248366], + [0.0,0.32719723183391003,0.13098039215686275], + [0.0,0.3221530180699732,0.12888888888888894], + [0.0,0.31710880430603616,0.12679738562091503], + [0.0,0.3120645905420992,0.12470588235294117], + [0.0,0.30702037677816224,0.12261437908496732], + [0.0,0.30197616301422525,0.12052287581699346], + [0.0,0.2969319492502883,0.11843137254901961], + [0.0,0.2918877354863514,0.11633986928104575], + [0.0,0.28684352172241445,0.1142483660130719], + [0.0,0.2817993079584775,0.11215686274509803], + [0.0,0.2767550941945406,0.11006535947712418], + [0.0,0.2717108804306036,0.10797385620915033], + [0.0,0.26666666666666666,0.10588235294117647] ], + BuGn_r: [ + [0.0,0.26666666666666666,0.10588235294117647], + [0.0,0.2717108804306036,0.10797385620915033], + [0.0,0.27675509419454053,0.11006535947712418], + [0.0,0.2817993079584775,0.11215686274509803], + [0.0,0.28684352172241445,0.1142483660130719], + [0.0,0.2918877354863514,0.11633986928104575], + [0.0,0.2969319492502883,0.1184313725490196], + [0.0,0.3019761630142253,0.12052287581699346], + [0.0,0.30702037677816224,0.12261437908496732], + [0.0,0.3120645905420992,0.12470588235294117], + [0.0,0.3171088043060361,0.12679738562091503], + [0.0,0.3221530180699731,0.1288888888888889], + [0.0,0.32719723183391003,0.13098039215686275], + [0.0,0.33224144559784696,0.1330718954248366], + [0.0,0.3372856593617839,0.13516339869281047], + [0.0,0.3423298731257209,0.13725490196078433], + [0.0,0.3473740868896578,0.13934640522875816], + [0.0,0.35241830065359475,0.14143790849673202], + [0.0,0.3574625144175317,0.14352941176470588], + [0.0,0.3625067281814687,0.14562091503267974], + [0.0,0.3675509419454056,0.1477124183006536], + [0.0,0.37259515570934254,0.14980392156862746], + [0.0,0.3776393694732795,0.1518954248366013], + [0.0,0.3826835832372164,0.15398692810457515], + [0.0,0.3877277970011534,0.156078431372549], + [0.0,0.39277201076509033,0.15816993464052287], + [0.0,0.3978162245290273,0.16026143790849673], + [0.0,0.40286043829296425,0.1623529411764706], + [0.0,0.4079046520569012,0.16444444444444445], + [0.0,0.4129488658208381,0.1665359477124183], + [0.0,0.41799307958477505,0.16862745098039217], + [0.0,0.423037293348712,0.17071895424836603], + [0.0005382545174932718,0.42791234140715106,0.17293348712033832], + [0.0048442906574394165,0.4316032295271049,0.17600922722029985], + [0.009150326797385621,0.4352941176470588,0.17908496732026144], + [0.013456362937331797,0.43898500576701266,0.182160707420223], + [0.017762399077277974,0.44267589388696654,0.18523644752018453], + [0.022068435217224118,0.44636678200692037,0.18831218762014607], + [0.026374471357170325,0.45005767012687425,0.19138792772010765], + [0.030680507497116496,0.45374855824682814,0.19446366782006919], + [0.03498654363706267,0.45743944636678197,0.19753940792003075], + [0.03929257977700881,0.4611303344867358,0.20061514801999228], + [0.04359861591695502,0.4648212226066897,0.20369088811995387], + [0.04790465205690119,0.46851211072664356,0.2067666282199154], + [0.05221068819684737,0.47220299884659744,0.20984236831987696], + [0.056516724336793514,0.47589388696655127,0.2129181084198385], + [0.06082276047673972,0.47958477508650516,0.21599384851980008], + [0.0651287966166859,0.48327566320645904,0.2190695886197616], + [0.06943483275663206,0.48696655132641287,0.22214532871972317], + [0.07374086889657822,0.49065743944636675,0.2252210688196847], + [0.07804690503652442,0.49434832756632063,0.22829680891964627], + [0.08235294117647059,0.49803921568627446,0.23137254901960783], + [0.08665897731641677,0.5017301038062283,0.2344482891195694], + [0.09096501345636292,0.5054209919261822,0.23752402921953092], + [0.09527104959630912,0.5091118800461361,0.2405997693194925], + [0.09957708573625529,0.5128027681660899,0.24367550941945404], + [0.10388312187620147,0.5164936562860438,0.2467512495194156], + [0.1081891580161476,0.5201845444059976,0.2498269896193771], + [0.11249519415609381,0.5238754325259515,0.2529027297193387], + [0.11680123029603999,0.5275663206459054,0.2559784698193003], + [0.12110726643598617,0.5312572087658592,0.2590542099192618], + [0.1254133025759323,0.5349480968858131,0.26212995001922335], + [0.1297193387158785,0.5386389850057669,0.26520569011918493], + [0.1340253748558247,0.5423298731257208,0.26828143021914647], + [0.1381776239907728,0.5461745482506728,0.2720953479430988], + [0.14186851211072665,0.550480584390619,0.2781237985390234], + [0.14555940023068045,0.554786620530565,0.284152249134948], + [0.1492502883506344,0.5590926566705113,0.29018069973087274], + [0.15294117647058825,0.5633986928104575,0.2962091503267974], + [0.1566320645905421,0.5677047289504037,0.302237600922722], + [0.16032295271049596,0.5720107650903499,0.30826605151864667], + [0.16401384083044984,0.576316801230296,0.31429450211457133], + [0.1677047289504037,0.5806228373702422,0.32032295271049593], + [0.17139561707035755,0.5849288735101884,0.3263514033064206], + [0.17508650519031138,0.5892349096501345,0.33237985390234515], + [0.1787773933102653,0.5935409457900808,0.33840830449826986], + [0.18246828143021915,0.5978469819300269,0.3444367550941945], + [0.186159169550173,0.602153018069973,0.3504652056901192], + [0.18985005767012686,0.6064590542099193,0.35649365628604385], + [0.19354094579008074,0.6107650903498654,0.3625221068819685], + [0.1972318339100346,0.6150711264898115,0.3685505574778931], + [0.20092272202998845,0.6193771626297577,0.3745790080738178], + [0.20461361014994228,0.6236831987697039,0.3806074586697423], + [0.20830449826989617,0.6279892349096501,0.38663590926566704], + [0.21199538638985005,0.6322952710495963,0.3926643598615917], + [0.2156862745098039,0.6366013071895424,0.39869281045751637], + [0.21937716262975776,0.6409073433294886,0.404721261053441], + [0.22306805074971164,0.6452133794694348,0.41074971164936563], + [0.2267589388696655,0.649519415609381,0.4167781622452903], + [0.23044982698961936,0.6538254517493272,0.4228066128412149], + [0.23414071510957318,0.6581314878892733,0.4288350634371395], + [0.23783160322952707,0.6624375240292195,0.4348635140330642], + [0.24152249134948095,0.6667435601691657,0.44089196462898883], + [0.24521337946943483,0.6710495963091119,0.4469204152249135], + [0.24890426758938866,0.675355632449058,0.45294886582083815], + [0.25259515570934254,0.6796616685890042,0.45897731641676276], + [0.25660899653979236,0.683275663206459,0.4648673587081892], + [0.26116109188773545,0.6857362552864283,0.4705267204921184], + [0.2657131872356785,0.6881968473663975,0.47618608227604764], + [0.27026528258362165,0.6906574394463668,0.481845444059977], + [0.2748173779315648,0.693118031526336,0.4875048058439062], + [0.2793694732795079,0.6955786236063053,0.4931641676278355], + [0.283921568627451,0.6980392156862745,0.4988235294117647], + [0.2884736639753941,0.7004998077662438,0.504482891195694], + [0.2930257593233372,0.702960399846213,0.5101422529796232], + [0.2975778546712803,0.7054209919261822,0.5158016147635525], + [0.3021299500192233,0.7078815840061514,0.5214609765474817], + [0.3066820453671665,0.7103421760861207,0.527120338331411], + [0.3112341407151096,0.71280276816609,0.5327797001153403], + [0.31578623606305267,0.7152633602460592,0.5384390618992696], + [0.32033833141099577,0.7177239523260285,0.5440984236831988], + [0.32489042675893887,0.7201845444059977,0.5497577854671281], + [0.32944252210688196,0.722645136485967,0.5554171472510573], + [0.33399461745482506,0.7251057285659361,0.5610765090349865], + [0.3385467128027681,0.7275663206459053,0.5667358708189157], + [0.34309880815071125,0.7300269127258746,0.5723952326028451], + [0.34765090349865435,0.7324875048058439,0.5780545943867743], + [0.35220299884659745,0.7349480968858131,0.5837139561707037], + [0.35675509419454055,0.7374086889657824,0.5893733179546329], + [0.36130718954248364,0.7398692810457516,0.5950326797385621], + [0.36585928489042674,0.7423298731257209,0.6006920415224914], + [0.37041138023836984,0.74479046520569,0.6063514033064207], + [0.37496347558631293,0.7472510572856593,0.6120107650903498], + [0.37951557093425603,0.7497116493656286,0.6176701268742791], + [0.3840676662821991,0.7521722414455978,0.6233294886582084], + [0.3886197616301422,0.7546328335255671,0.6289888504421377], + [0.3931718569780854,0.7570934256055363,0.6346482122260669], + [0.3977239523260285,0.7595540176855056,0.6403075740099962], + [0.4031372549019608,0.7621376393694732,0.6454133025759323], + [0.40941176470588236,0.7648442906574394,0.6499653979238754], + [0.41568627450980394,0.7675509419454056,0.6545174932718185], + [0.4219607843137255,0.7702575932333717,0.6590695886197616], + [0.4282352941176469,0.7729642445213378,0.6636216839677046], + [0.4345098039215686,0.775670895809304,0.6681737793156478], + [0.4407843137254902,0.7783775470972703,0.6727258746635909], + [0.4470588235294118,0.7810841983852365,0.677277970011534], + [0.45333333333333337,0.7837908496732026,0.6818300653594771], + [0.4596078431372549,0.7864975009611688,0.6863821607074202], + [0.46588235294117647,0.7892041522491349,0.6909342560553633], + [0.47215686274509805,0.7919108035371011,0.6954863514033064], + [0.47843137254901963,0.7946174548250673,0.7000384467512495], + [0.4847058823529412,0.7973241061130334,0.7045905420991926], + [0.49098039215686273,0.8000307574009996,0.7091426374471357], + [0.4972549019607843,0.8027374086889658,0.7136947327950788], + [0.5035294117647059,0.8054440599769319,0.7182468281430219], + [0.5098039215686274,0.8081507112648981,0.7227989234909651], + [0.516078431372549,0.8108573625528642,0.7273510188389081], + [0.5223529411764706,0.8135640138408304,0.7319031141868513], + [0.528627450980392,0.8162706651287965,0.7364552095347942], + [0.5349019607843137,0.8189773164167627,0.7410073048827375], + [0.5411764705882353,0.821683967704729,0.7455594002306805], + [0.5474509803921569,0.8243906189926951,0.7501114955786237], + [0.5537254901960784,0.8270972702806613,0.7546635909265667], + [0.56,0.8298039215686275,0.7592156862745099], + [0.5662745098039216,0.8325105728565936,0.7637677816224528], + [0.5725490196078431,0.8352172241445598,0.768319876970396], + [0.5788235294117647,0.837923875432526,0.772871972318339], + [0.5850980392156863,0.8406305267204921,0.7774240676662822], + [0.5913725490196078,0.8433371780084583,0.7819761630142252], + [0.5976470588235294,0.8460438292964244,0.7865282583621684], + [0.6039215686274509,0.8485966935793925,0.7904652056901191], + [0.6101960784313726,0.8510572856593618,0.7940330642060746], + [0.6164705882352941,0.853517877739331,0.79760092272203], + [0.6227450980392156,0.8559784698193003,0.8011687812379854], + [0.629019607843137,0.8584390618992694,0.8047366397539407], + [0.6352941176470588,0.8608996539792387,0.8083044982698961], + [0.6415686274509804,0.863360246059208,0.8118723567858516], + [0.647843137254902,0.8658208381391772,0.815440215301807], + [0.6541176470588235,0.8682814302191465,0.8190080738177624], + [0.6603921568627451,0.8707420222991157,0.8225759323337178], + [0.6666666666666666,0.873202614379085,0.8261437908496732], + [0.6729411764705883,0.8756632064590543,0.8297116493656286], + [0.6792156862745098,0.8781237985390234,0.833279507881584], + [0.6854901960784314,0.8805843906189927,0.8368473663975394], + [0.691764705882353,0.8830449826989619,0.8404152249134949], + [0.6980392156862745,0.8855055747789312,0.8439830834294502], + [0.7043137254901961,0.8879661668589004,0.8475509419454056], + [0.7105882352941176,0.8904267589388697,0.851118800461361], + [0.7168627450980393,0.892887351018839,0.8546866589773164], + [0.7231372549019608,0.8953479430988082,0.8582545174932719], + [0.7294117647058822,0.8978085351787773,0.8618223760092272], + [0.735686274509804,0.9002691272587466,0.8653902345251826], + [0.7419607843137255,0.9027297193387159,0.868958093041138], + [0.7482352941176471,0.9051903114186851,0.8725259515570934], + [0.7545098039215686,0.9076509034986544,0.8760938100730489], + [0.7607843137254903,0.9101114955786236,0.8796616685890042], + [0.7670588235294118,0.9125720876585929,0.8832295271049596], + [0.7733333333333334,0.9150326797385622,0.886797385620915], + [0.779607843137255,0.9174932718185314,0.8903652441368705], + [0.7858823529411765,0.9199538638985006,0.8939331026528259], + [0.7921568627450981,0.9224144559784698,0.8975009611687812], + [0.7984313725490196,0.9248750480584391,0.9010688196847366], + [0.8023068050749712,0.9263206459054211,0.9037139561707036], + [0.8053825451749328,0.9274279123414072,0.9060515186466743], + [0.8084582852748943,0.9285351787773933,0.9083890811226452], + [0.8115340253748559,0.9296424452133795,0.9107266435986159], + [0.8146097654748173,0.9307497116493656,0.9130642060745866], + [0.8176855055747789,0.9318569780853518,0.9154017685505574], + [0.8207612456747405,0.932964244521338,0.9177393310265283], + [0.8238369857747021,0.9340715109573241,0.920076893502499], + [0.8269127258746636,0.9351787773933103,0.9224144559784698], + [0.8299884659746252,0.9362860438292965,0.9247520184544407], + [0.8330642060745868,0.9373933102652826,0.9270895809304114], + [0.8361399461745483,0.9385005767012687,0.9294271434063821], + [0.8392156862745098,0.939607843137255,0.9317647058823529], + [0.8422914263744714,0.9407151095732411,0.9341022683583238], + [0.845367166474433,0.9418223760092272,0.9364398308342945], + [0.8484429065743945,0.9429296424452134,0.9387773933102653], + [0.8515186466743561,0.9440369088811996,0.941114955786236], + [0.8545943867743176,0.9451441753171858,0.9434525182622069], + [0.8576701268742791,0.9462514417531719,0.9457900807381776], + [0.8607458669742407,0.947358708189158,0.9481276432141484], + [0.8638216070742022,0.9484659746251441,0.950465205690119], + [0.8668973471741638,0.9495732410611304,0.95280276816609], + [0.8699730872741254,0.9506805074971165,0.9551403306420607], + [0.873048827374087,0.9517877739331027,0.9574778931180316], + [0.8761245674740484,0.9528950403690889,0.9598154555940023], + [0.87920030757401,0.954002306805075,0.9621530180699731], + [0.8822760476739716,0.9551095732410612,0.9644905805459438], + [0.8853517877739332,0.9562168396770473,0.9668281430219147], + [0.8884275278738947,0.9573241061130335,0.9691657054978854], + [0.8915032679738563,0.9584313725490197,0.9715032679738562], + [0.8945790080738178,0.9595386389850058,0.9738408304498269], + [0.8976547481737793,0.9606459054209919,0.9761783929257978], + [0.8999769319492503,0.9615378700499808,0.9769011918492887], + [0.9021914648212226,0.96239907727797,0.9773933102652825], + [0.904405997693195,0.9632602845059592,0.9778854286812764], + [0.9066205305651672,0.9641214917339486,0.9783775470972702], + [0.9088350634371395,0.9649826989619377,0.978869665513264], + [0.9110495963091119,0.965843906189927,0.979361783929258], + [0.9132641291810842,0.9667051134179162,0.9798539023452518], + [0.9154786620530565,0.9675663206459054,0.9803460207612457], + [0.9176931949250289,0.9684275278738946,0.9808381391772395], + [0.9199077277970011,0.969288735101884,0.9813302575932333], + [0.9221222606689735,0.9701499423298732,0.9818223760092272], + [0.9243367935409458,0.9710111495578624,0.982314494425221], + [0.9265513264129182,0.9718723567858516,0.982806612841215], + [0.9287658592848904,0.9727335640138408,0.9832987312572088], + [0.9309803921568628,0.9735947712418301,0.9837908496732026], + [0.933194925028835,0.9744559784698194,0.9842829680891965], + [0.9354094579008074,0.9753171856978086,0.9847750865051903], + [0.9376239907727797,0.9761783929257978,0.9852672049211841], + [0.9398385236447521,0.977039600153787,0.985759323337178], + [0.9420530565167243,0.9779008073817763,0.9862514417531718], + [0.9442675893886966,0.9787620146097655,0.9867435601691656], + [0.946482122260669,0.9796232218377547,0.9872356785851596], + [0.9486966551326413,0.980484429065744,0.9877277970011534], + [0.9509111880046136,0.9813456362937332,0.9882199154171473], + [0.953125720876586,0.9822068435217225,0.9887120338331411], + [0.9553402537485582,0.9830680507497117,0.9892041522491349], + [0.9575547866205306,0.9839292579777009,0.9896962706651288], + [0.9597693194925029,0.9847904652056901,0.9901883890811227], + [0.9619838523644753,0.9856516724336793,0.9906805074971166], + [0.9641983852364475,0.9865128796616687,0.9911726259131104], + [0.9664129181084198,0.9873740868896579,0.9916647443291042], + [0.9686274509803922,0.9882352941176471,0.9921568627450981] ], + BuPu: [ + [0.9686274509803922,0.9882352941176471,0.9921568627450981], + [0.9657977700884275,0.9862668204536718,0.9910495963091119], + [0.9629680891964629,0.9842983467896963,0.9899423298731258], + [0.9601384083044983,0.982329873125721,0.9888350634371396], + [0.9573087274125336,0.9803613994617455,0.9877277970011534], + [0.954479046520569,0.9783929257977702,0.9866205305651673], + [0.9516493656286044,0.9764244521337947,0.9855132641291812], + [0.9488196847366398,0.9744559784698194,0.9844059976931949], + [0.9459900038446751,0.9724875048058439,0.9832987312572088], + [0.9431603229527105,0.9705190311418685,0.9821914648212227], + [0.9403306420607459,0.9685505574778932,0.9810841983852365], + [0.9375009611687812,0.9665820838139177,0.9799769319492503], + [0.9346712802768166,0.9646136101499424,0.9788696655132642], + [0.931841599384852,0.962645136485967,0.977762399077278], + [0.9290119184928873,0.9606766628219916,0.9766551326412919], + [0.9261822376009228,0.9587081891580161,0.9755478662053056], + [0.9233525567089581,0.9567397154940408,0.9744405997693195], + [0.9205228758169934,0.9547712418300655,0.9733333333333334], + [0.9176931949250289,0.95280276816609,0.9722260668973473], + [0.9148635140330642,0.9508342945021147,0.971118800461361], + [0.9120338331410995,0.9488658208381392,0.9700115340253749], + [0.909204152249135,0.9468973471741639,0.9689042675893887], + [0.9063744713571703,0.9449288735101884,0.9677970011534026], + [0.9035447904652056,0.942960399846213,0.9666897347174164], + [0.9007151095732411,0.9409919261822376,0.9655824682814302], + [0.8978854286812764,0.9390234525182622,0.9644752018454441], + [0.8950557477893117,0.9370549788542869,0.963367935409458], + [0.8922260668973472,0.9350865051903114,0.9622606689734717], + [0.8893963860053825,0.9331180315263361,0.9611534025374856], + [0.886566705113418,0.9311495578623606,0.9600461361014995], + [0.8837370242214533,0.9291810841983853,0.9589388696655133], + [0.8809073433294886,0.9272126105344098,0.9578316032295271], + [0.8779238754325259,0.9251057285659362,0.9566474432910419], + [0.8738638985005767,0.9220299884659747,0.9549250288350635], + [0.8698039215686274,0.9189542483660131,0.953202614379085], + [0.8657439446366781,0.9158785082660515,0.9514801999231065], + [0.861683967704729,0.91280276816609,0.9497577854671281], + [0.8576239907727797,0.9097270280661285,0.9480353710111497], + [0.8535640138408305,0.9066512879661669,0.9463129565551711], + [0.8495040369088812,0.9035755478662053,0.9445905420991927], + [0.845444059976932,0.9004998077662437,0.9428681276432141], + [0.8413840830449827,0.8974240676662822,0.9411457131872357], + [0.8373241061130334,0.8943483275663207,0.9394232987312573], + [0.8332641291810842,0.8912725874663591,0.9377008842752788], + [0.8292041522491349,0.8881968473663976,0.9359784698193003], + [0.8251441753171858,0.885121107266436,0.9342560553633218], + [0.8210841983852365,0.8820453671664744,0.9325336409073434], + [0.8170242214532872,0.8789696270665128,0.9308112264513649], + [0.812964244521338,0.8758938869665513,0.9290888119953864], + [0.8089042675893887,0.8728181468665898,0.927366397539408], + [0.8048442906574395,0.8697424067666282,0.9256439830834294], + [0.8007843137254902,0.8666666666666667,0.923921568627451], + [0.7967243367935409,0.8635909265667051,0.9221991541714726], + [0.7926643598615917,0.8605151864667435,0.920476739715494], + [0.7886043829296424,0.857439446366782,0.9187543252595156], + [0.7845444059976932,0.8543637062668205,0.9170319108035371], + [0.780484429065744,0.8512879661668589,0.9153094963475586], + [0.7764244521337947,0.8482122260668974,0.9135870818915802], + [0.7723644752018455,0.8451364859669358,0.9118646674356017], + [0.7683044982698962,0.8420607458669742,0.9101422529796233], + [0.764244521337947,0.8389850057670126,0.9084198385236448], + [0.7601845444059977,0.8359092656670511,0.9066974240676663], + [0.7561245674740484,0.8328335255670896,0.9049750096116879], + [0.7520645905420992,0.829757785467128,0.9032525951557093], + [0.7480046136101499,0.8267435601691656,0.9015916955017301], + [0.7439446366782007,0.8239138792772011,0.9001153402537486], + [0.7398846597462515,0.8210841983852364,0.898638985005767], + [0.7358246828143022,0.8182545174932718,0.8971626297577855], + [0.731764705882353,0.8154248366013072,0.895686274509804], + [0.7277047289504037,0.8125951557093425,0.8942099192618224], + [0.7236447520184545,0.8097654748173779,0.8927335640138409], + [0.7195847750865052,0.8069357939254133,0.8912572087658592], + [0.7155247981545559,0.8041061130334486,0.8897808535178777], + [0.7114648212226067,0.801276432141484,0.8883044982698962], + [0.7074048442906575,0.7984467512495195,0.8868281430219147], + [0.7033448673587082,0.7956170703575548,0.8853517877739331], + [0.6992848904267589,0.7927873894655901,0.8838754325259516], + [0.6952249134948096,0.7899577085736256,0.88239907727797], + [0.6911649365628605,0.7871280276816609,0.8809227220299884], + [0.6871049596309112,0.7842983467896962,0.8794463667820069], + [0.683044982698962,0.7814686658977317,0.8779700115340253], + [0.6789850057670127,0.778638985005767,0.8764936562860438], + [0.6749250288350636,0.7758093041138024,0.8750173010380623], + [0.6708650519031142,0.7729796232218378,0.8735409457900807], + [0.6668050749711649,0.7701499423298731,0.8720645905420992], + [0.6627450980392157,0.7673202614379085,0.8705882352941177], + [0.6586851211072664,0.7644905805459439,0.869111880046136], + [0.6546251441753173,0.7616608996539793,0.8676355247981545], + [0.650565167243368,0.7588312187620146,0.866159169550173], + [0.6465051903114187,0.75600153787005,0.8646828143021914], + [0.6424452133794695,0.7531718569780854,0.8632064590542099], + [0.6383852364475202,0.7503421760861207,0.8617301038062284], + [0.634325259515571,0.7475124951941561,0.8602537485582468], + [0.6302652825836217,0.7446828143021915,0.8587773933102653], + [0.6262053056516724,0.7418531334102269,0.8573010380622837], + [0.6221453287197232,0.7390234525182623,0.8558246828143021], + [0.6187773933102653,0.7355017301038063,0.8539792387543252], + [0.616562860438293,0.7308266051518647,0.851518646674356], + [0.6143483275663207,0.7261514801999233,0.8490580545943868], + [0.6121337946943484,0.7214763552479816,0.8465974625144175], + [0.609919261822376,0.71680123029604,0.8441368704344483], + [0.6077047289504037,0.7121261053440985,0.841676278354479], + [0.6054901960784314,0.7074509803921569,0.8392156862745098], + [0.6032756632064591,0.7027758554402154,0.8367550941945405], + [0.6010611303344867,0.6981007304882738,0.8342945021145713], + [0.5988465974625145,0.6934256055363323,0.831833910034602], + [0.5966320645905422,0.6887504805843907,0.8293733179546329], + [0.5944175317185698,0.6840753556324491,0.8269127258746636], + [0.5922029988465974,0.6794002306805076,0.8244521337946943], + [0.5899884659746252,0.6747251057285659,0.8219915417147251], + [0.5877739331026528,0.6700499807766244,0.8195309496347558], + [0.5855594002306805,0.6653748558246828,0.8170703575547866], + [0.5833448673587083,0.6606997308727413,0.8146097654748173], + [0.5811303344867359,0.6560246059207997,0.8121491733948482], + [0.5789158016147636,0.6513494809688583,0.809688581314879], + [0.5767012687427913,0.6466743560169166,0.8072279892349097], + [0.574486735870819,0.641999231064975,0.8047673971549404], + [0.5722722029988466,0.6373241061130335,0.8023068050749712], + [0.5700576701268744,0.6326489811610919,0.7998462129950019], + [0.567843137254902,0.6279738562091504,0.7973856209150327], + [0.5656286043829297,0.6232987312572088,0.7949250288350634], + [0.5634140715109573,0.6186236063052672,0.7924644367550941], + [0.5611995386389851,0.6139484813533258,0.790003844675125], + [0.5589850057670127,0.6092733564013841,0.7875432525951558], + [0.5567704728950404,0.6045982314494426,0.7850826605151865], + [0.5545559400230681,0.599923106497501,0.7826220684352172], + [0.5523414071510958,0.5952479815455595,0.780161476355248], + [0.5501268742791234,0.5905728565936179,0.7777008842752787], + [0.5490196078431373,0.5855901576316801,0.7751787773933103], + [0.5490196078431373,0.5802998846597462,0.7725951557093426], + [0.5490196078431373,0.5750096116878124,0.7700115340253749], + [0.5490196078431373,0.5697193387158785,0.7674279123414072], + [0.5490196078431373,0.5644290657439448,0.7648442906574395], + [0.5490196078431373,0.5591387927720108,0.7622606689734718], + [0.5490196078431373,0.5538485198000769,0.759677047289504], + [0.5490196078431373,0.548558246828143,0.7570934256055364], + [0.5490196078431373,0.5432679738562092,0.7545098039215686], + [0.5490196078431373,0.5379777008842753,0.7519261822376009], + [0.5490196078431373,0.5326874279123415,0.7493425605536332], + [0.5490196078431373,0.5273971549404075,0.7467589388696655], + [0.5490196078431373,0.5221068819684737,0.7441753171856978], + [0.5490196078431373,0.5168166089965398,0.7415916955017301], + [0.5490196078431373,0.511526336024606,0.7390080738177625], + [0.5490196078431373,0.5062360630526721,0.7364244521337947], + [0.5490196078431373,0.5009457900807381,0.733840830449827], + [0.5490196078431373,0.4956555171088043,0.7312572087658593], + [0.5490196078431373,0.49036524413687044,0.7286735870818916], + [0.5490196078431373,0.4850749711649366,0.7260899653979238], + [0.5490196078431373,0.47978469819300285,0.7235063437139563], + [0.5490196078431373,0.4744944252210688,0.7209227220299884], + [0.5490196078431373,0.4692041522491349,0.7183391003460208], + [0.5490196078431373,0.46391387927720107,0.715755478662053], + [0.5490196078431373,0.4586236063052672,0.7131718569780854], + [0.5490196078431373,0.45333333333333337,0.7105882352941176], + [0.5490196078431373,0.44804306036139946,0.7080046136101499], + [0.5490196078431373,0.44275278738946555,0.7054209919261822], + [0.5490196078431373,0.4374625144175317,0.7028373702422145], + [0.5490196078431373,0.43217224144559785,0.7002537485582468], + [0.5490196078431373,0.426881968473664,0.6976701268742791], + [0.5490196078431373,0.42159169550173015,0.6950865051903115], + [0.5487120338331412,0.4163783160322953,0.6925797770088428], + [0.5482199154171473,0.41121107266435986,0.6901191849288735], + [0.5477277970011535,0.40604382929642446,0.6876585928489043], + [0.5472356785851596,0.40087658592848907,0.685198000768935], + [0.5467435601691658,0.3957093425605538,0.6827374086889658], + [0.5462514417531719,0.39054209919261823,0.6802768166089965], + [0.545759323337178,0.38537485582468284,0.6778162245290272], + [0.5452672049211842,0.3802076124567474,0.675355632449058], + [0.5447750865051904,0.375040369088812,0.6728950403690888], + [0.5442829680891965,0.3698731257208766,0.6704344482891196], + [0.5437908496732027,0.36470588235294116,0.6679738562091503], + [0.5432987312572088,0.35953863898500577,0.6655132641291811], + [0.5428066128412149,0.3543713956170704,0.6630526720492118], + [0.5423144944252211,0.3492041522491349,0.6605920799692426], + [0.5418223760092272,0.34403690888119953,0.6581314878892733], + [0.5413302575932334,0.33886966551326414,0.6556708958093042], + [0.5408381391772396,0.3337024221453287,0.6532103037293349], + [0.5403460207612457,0.3285351787773933,0.6507497116493657], + [0.5398539023452519,0.3233679354094579,0.6482891195693964], + [0.539361783929258,0.31820069204152246,0.6458285274894271], + [0.5388696655132642,0.31303344867358723,0.643367935409458], + [0.5383775470972703,0.3078662053056517,0.6409073433294886], + [0.5378854286812764,0.3026989619377163,0.6384467512495194], + [0.5373933102652826,0.29753171856978083,0.6359861591695501], + [0.5369011918492888,0.2923644752018454,0.633525567089581], + [0.5364090734332949,0.28719723183391,0.6310649750096117], + [0.5359169550173011,0.2820299884659746,0.6286043829296425], + [0.5354248366013072,0.2768627450980392,0.6261437908496732], + [0.5349327181853133,0.2716955017301038,0.623683198769704], + [0.5344405997693195,0.26652825836216837,0.6212226066897347], + [0.5339484813533256,0.261361014994233,0.6187620146097655], + [0.5334563629373318,0.25619377162629753,0.6163014225297963], + [0.5326874279123414,0.2502883506343714,0.612641291810842], + [0.5318262206843521,0.24413687043444826,0.6085813148788928], + [0.5309650134563629,0.23798539023452517,0.6045213379469435], + [0.5301038062283737,0.23183391003460208,0.6004613610149943], + [0.5292425990003845,0.22568242983467912,0.5964013840830451], + [0.5283813917723952,0.21953094963475586,0.5923414071510957], + [0.527520184544406,0.21337946943483274,0.5882814302191465], + [0.5266589773164168,0.20722798923490965,0.5842214532871972], + [0.5257977700884275,0.20107650903498653,0.580161476355248], + [0.5249365628604383,0.1949250288350634,0.5761014994232987], + [0.524075355632449,0.18877354863514031,0.5720415224913495], + [0.5232141484044598,0.18262206843521722,0.5679815455594003], + [0.5223529411764706,0.1764705882352941,0.563921568627451], + [0.5214917339484814,0.170319108035371,0.5598615916955018], + [0.5206305267204921,0.16416762783544792,0.5558016147635525], + [0.5197693194925028,0.1580161476355248,0.5517416378316032], + [0.5189081122645136,0.15186466743560167,0.547681660899654], + [0.5180469050365244,0.14571318723567858,0.5436216839677047], + [0.5171856978085352,0.1395617070357555,0.5395617070357555], + [0.516324490580546,0.13341022683583237,0.5355017301038062], + [0.5154632833525568,0.12725874663590944,0.5314417531718572], + [0.5146020761245674,0.12110726643598616,0.5273817762399078], + [0.5137408688965782,0.11495578623606306,0.5233217993079585], + [0.512879661668589,0.10880430603613994,0.5192618223760093], + [0.5120184544405998,0.10265282583621685,0.51520184544406], + [0.5111572472126105,0.09650134563629373,0.5111418685121107], + [0.5102960399846213,0.09034986543637064,0.5070818915801615], + [0.509434832756632,0.08419838523644751,0.5030219146482122], + [0.5085736255286428,0.07804690503652442,0.49896193771626296], + [0.5077124183006536,0.0718954248366013,0.4949019607843137], + [0.5068512110726643,0.06574394463667821,0.49084198385236444], + [0.5059900038446751,0.059592464436755116,0.4867820069204152], + [0.5002845059592465,0.057208765859284895,0.4809996155324875], + [0.4938869665513264,0.05536332179930797,0.47497116493656283], + [0.4874894271434064,0.05351787773933103,0.4689427143406382], + [0.48109188773548633,0.0516724336793541,0.46291426374471356], + [0.47469434832756646,0.04982698961937722,0.4568858131487891], + [0.46829680891964626,0.047981545559400235,0.4508573625528643], + [0.4618992695117262,0.04613610149942331,0.44482891195693963], + [0.45550173010380623,0.04429065743944637,0.43880046136101497], + [0.4491041906958862,0.04244521337946944,0.43277201076509036], + [0.44270665128796616,0.04059976931949251,0.4267435601691657], + [0.4363091118800461,0.038754325259515575,0.42071510957324104], + [0.4299115724721261,0.03690888119953864,0.4146866589773164], + [0.42351403306420604,0.03506343713956171,0.4086582083813918], + [0.417116493656286,0.03321799307958478,0.4026297577854671], + [0.410718954248366,0.03137254901960784,0.39660130718954245], + [0.404321414840446,0.029527104959630915,0.39057285659361785], + [0.39792387543252594,0.02768166089965398,0.3845444059976932], + [0.3915263360246059,0.025836216839677052,0.3785159554017685], + [0.38512879661668586,0.023990772779700117,0.3724875048058439], + [0.3787312572087658,0.022145328719723183,0.36645905420991925], + [0.372333717800846,0.020299884659746303,0.3604306036139948], + [0.3659361783929258,0.01845444059976932,0.35440215301807], + [0.3595386389850057,0.016608996539792392,0.3483737024221453], + [0.3531410995770857,0.014763552479815457,0.34234525182622066], + [0.3467435601691657,0.012918108419838523,0.33631680123029606], + [0.34034602076124565,0.011072664359861595,0.3302883506343714], + [0.33394848135332567,0.00922722029988466,0.32425990003844674], + [0.32755094194540557,0.007381776239907725,0.31823144944252213], + [0.3211534025374856,0.005536332179930797,0.31220299884659747], + [0.3147558631295655,0.0036908881199538626,0.3061745482506728], + [0.3083583237216455,0.0018454440599769348,0.3001460976547482], + [0.30196078431372547,0.0,0.29411764705882354] ], + BuPu_r: [ + [0.30196078431372547,0.0,0.29411764705882354], + [0.3083583237216455,0.0018454440599769322,0.3001460976547482], + [0.31475586312956555,0.0036908881199538644,0.3061745482506728], + [0.3211534025374856,0.0055363321799307965,0.31220299884659747], + [0.32755094194540557,0.007381776239907729,0.31823144944252213], + [0.3339484813533256,0.00922722029988466,0.32425990003844674], + [0.34034602076124565,0.011072664359861593,0.3302883506343714], + [0.3467435601691657,0.012918108419838524,0.33631680123029606], + [0.3531410995770857,0.014763552479815457,0.34234525182622066], + [0.35953863898500577,0.01660899653979239,0.3483737024221453], + [0.3659361783929258,0.01845444059976932,0.35440215301807], + [0.3723337178008458,0.020299884659746255,0.3604306036139946], + [0.3787312572087658,0.022145328719723186,0.36645905420991925], + [0.38512879661668586,0.023990772779700117,0.3724875048058439], + [0.3915263360246059,0.02583621683967705,0.3785159554017685], + [0.39792387543252594,0.02768166089965398,0.3845444059976932], + [0.404321414840446,0.029527104959630915,0.39057285659361785], + [0.410718954248366,0.03137254901960784,0.39660130718954245], + [0.417116493656286,0.03321799307958478,0.4026297577854671], + [0.42351403306420604,0.03506343713956171,0.4086582083813918], + [0.4299115724721261,0.03690888119953864,0.4146866589773164], + [0.4363091118800461,0.038754325259515575,0.4207151095732411], + [0.44270665128796616,0.04059976931949251,0.4267435601691657], + [0.44910419069588614,0.04244521337946944,0.4327720107650903], + [0.45550173010380623,0.04429065743944637,0.438800461361015], + [0.4618992695117262,0.0461361014994233,0.44482891195693963], + [0.46829680891964626,0.047981545559400235,0.45085736255286424], + [0.4746943483275663,0.04982698961937717,0.45688581314878896], + [0.48109188773548633,0.0516724336793541,0.46291426374471356], + [0.4874894271434064,0.05351787773933103,0.46894271434063817], + [0.49388696655132636,0.05536332179930796,0.4749711649365629], + [0.5002845059592465,0.057208765859284895,0.4809996155324875], + [0.5059900038446751,0.0595924644367551,0.48678200692041523], + [0.5068512110726643,0.06574394463667817,0.49084198385236444], + [0.5077124183006536,0.07189542483660132,0.4949019607843137], + [0.5085736255286428,0.07804690503652442,0.49896193771626296], + [0.509434832756632,0.08419838523644753,0.5030219146482122], + [0.5102960399846213,0.09034986543637058,0.5070818915801615], + [0.5111572472126105,0.09650134563629373,0.5111418685121107], + [0.5120184544405998,0.10265282583621685,0.51520184544406], + [0.512879661668589,0.10880430603613994,0.5192618223760093], + [0.5137408688965782,0.114955786236063,0.5233217993079584], + [0.5146020761245674,0.12110726643598616,0.5273817762399078], + [0.5154632833525566,0.12725874663590925,0.5314417531718569], + [0.516324490580546,0.13341022683583237,0.5355017301038062], + [0.5171856978085352,0.13956170703575543,0.5395617070357555], + [0.5180469050365244,0.14571318723567858,0.5436216839677047], + [0.5189081122645136,0.15186466743560167,0.547681660899654], + [0.5197693194925028,0.1580161476355248,0.5517416378316032], + [0.5206305267204921,0.16416762783544786,0.5558016147635525], + [0.5214917339484814,0.170319108035371,0.5598615916955018], + [0.5223529411764706,0.1764705882352941,0.563921568627451], + [0.5232141484044598,0.1826220684352172,0.5679815455594003], + [0.524075355632449,0.1887735486351403,0.5720415224913494], + [0.5249365628604383,0.19492502883506344,0.5761014994232987], + [0.5257977700884275,0.20107650903498653,0.5801614763552481], + [0.5266589773164168,0.20722798923490965,0.5842214532871972], + [0.527520184544406,0.21337946943483269,0.5882814302191465], + [0.5283813917723952,0.21953094963475583,0.5923414071510957], + [0.5292425990003845,0.22568242983467895,0.596401384083045], + [0.5301038062283737,0.23183391003460205,0.6004613610149943], + [0.5309650134563629,0.2379853902345251,0.6045213379469435], + [0.5318262206843521,0.24413687043444826,0.6085813148788928], + [0.5326874279123414,0.2502883506343714,0.612641291810842], + [0.5334563629373318,0.2561937716262976,0.6163014225297963], + [0.5339484813533256,0.261361014994233,0.6187620146097655], + [0.5344405997693195,0.2665282583621683,0.6212226066897347], + [0.5349327181853133,0.2716955017301038,0.623683198769704], + [0.5354248366013072,0.2768627450980392,0.6261437908496732], + [0.5359169550173011,0.2820299884659746,0.6286043829296425], + [0.5364090734332949,0.28719723183391,0.6310649750096117], + [0.5369011918492888,0.29236447520184544,0.633525567089581], + [0.5373933102652826,0.29753171856978083,0.6359861591695501], + [0.5378854286812764,0.3026989619377163,0.6384467512495194], + [0.5383775470972703,0.30786620530565156,0.6409073433294886], + [0.5388696655132641,0.31303344867358707,0.6433679354094579], + [0.539361783929258,0.31820069204152246,0.6458285274894272], + [0.5398539023452519,0.3233679354094579,0.6482891195693964], + [0.5403460207612457,0.3285351787773933,0.6507497116493657], + [0.5408381391772396,0.33370242214532875,0.6532103037293349], + [0.5413302575932334,0.33886966551326414,0.6556708958093042], + [0.5418223760092272,0.34403690888119953,0.6581314878892733], + [0.5423144944252211,0.34920415224913487,0.6605920799692425], + [0.5428066128412149,0.3543713956170703,0.6630526720492118], + [0.5432987312572088,0.35953863898500577,0.6655132641291811], + [0.5437908496732027,0.36470588235294116,0.6679738562091503], + [0.5442829680891965,0.3698731257208766,0.6704344482891196], + [0.5447750865051904,0.375040369088812,0.6728950403690888], + [0.5452672049211842,0.3802076124567474,0.675355632449058], + [0.545759323337178,0.3853748558246828,0.6778162245290272], + [0.5462514417531719,0.3905420991926182,0.6802768166089965], + [0.5467435601691657,0.3957093425605536,0.6827374086889657], + [0.5472356785851596,0.40087658592848907,0.685198000768935], + [0.5477277970011535,0.40604382929642446,0.6876585928489043], + [0.5482199154171473,0.41121107266435986,0.6901191849288735], + [0.5487120338331412,0.41637831603229525,0.6925797770088428], + [0.5490196078431373,0.4215916955017301,0.6950865051903113], + [0.5490196078431373,0.426881968473664,0.6976701268742791], + [0.5490196078431373,0.4321722414455978,0.7002537485582467], + [0.5490196078431373,0.4374625144175317,0.7028373702422145], + [0.5490196078431373,0.4427527873894656,0.7054209919261822], + [0.5490196078431373,0.44804306036139946,0.7080046136101499], + [0.5490196078431373,0.45333333333333337,0.7105882352941176], + [0.5490196078431373,0.4586236063052672,0.7131718569780854], + [0.5490196078431373,0.46391387927720107,0.715755478662053], + [0.5490196078431373,0.469204152249135,0.7183391003460208], + [0.5490196078431373,0.47449442522106877,0.7209227220299884], + [0.5490196078431373,0.47978469819300273,0.7235063437139562], + [0.5490196078431373,0.4850749711649366,0.7260899653979239], + [0.5490196078431373,0.49036524413687044,0.7286735870818916], + [0.5490196078431373,0.4956555171088043,0.7312572087658593], + [0.5490196078431373,0.5009457900807381,0.733840830449827], + [0.5490196078431373,0.5062360630526721,0.7364244521337947], + [0.5490196078431373,0.511526336024606,0.7390080738177623], + [0.5490196078431373,0.5168166089965397,0.7415916955017301], + [0.5490196078431373,0.5221068819684737,0.7441753171856978], + [0.5490196078431373,0.5273971549404075,0.7467589388696655], + [0.5490196078431373,0.5326874279123415,0.7493425605536332], + [0.5490196078431373,0.5379777008842753,0.7519261822376009], + [0.5490196078431373,0.5432679738562092,0.7545098039215686], + [0.5490196078431373,0.548558246828143,0.7570934256055364], + [0.5490196078431373,0.5538485198000769,0.759677047289504], + [0.5490196078431373,0.5591387927720107,0.7622606689734717], + [0.5490196078431373,0.5644290657439446,0.7648442906574394], + [0.5490196078431373,0.5697193387158785,0.7674279123414072], + [0.5490196078431373,0.5750096116878124,0.7700115340253748], + [0.5490196078431373,0.5802998846597462,0.7725951557093426], + [0.5490196078431373,0.5855901576316801,0.7751787773933103], + [0.5501268742791234,0.5905728565936179,0.7777008842752787], + [0.5523414071510958,0.5952479815455595,0.780161476355248], + [0.5545559400230681,0.599923106497501,0.7826220684352172], + [0.5567704728950404,0.6045982314494426,0.7850826605151865], + [0.5589850057670127,0.609273356401384,0.7875432525951557], + [0.5611995386389851,0.6139484813533257,0.790003844675125], + [0.5634140715109573,0.6186236063052672,0.7924644367550941], + [0.5656286043829297,0.6232987312572088,0.7949250288350634], + [0.567843137254902,0.6279738562091504,0.7973856209150327], + [0.5700576701268744,0.6326489811610919,0.7998462129950019], + [0.5722722029988466,0.6373241061130335,0.8023068050749712], + [0.574486735870819,0.641999231064975,0.8047673971549404], + [0.5767012687427913,0.6466743560169166,0.8072279892349097], + [0.5789158016147636,0.6513494809688581,0.8096885813148789], + [0.5811303344867359,0.6560246059207997,0.8121491733948482], + [0.5833448673587083,0.6606997308727413,0.8146097654748173], + [0.5855594002306805,0.6653748558246828,0.8170703575547866], + [0.5877739331026529,0.6700499807766245,0.8195309496347558], + [0.5899884659746252,0.6747251057285659,0.8219915417147251], + [0.5922029988465976,0.6794002306805076,0.8244521337946943], + [0.5944175317185697,0.6840753556324489,0.8269127258746635], + [0.5966320645905421,0.6887504805843907,0.8293733179546328], + [0.5988465974625145,0.6934256055363323,0.831833910034602], + [0.6010611303344867,0.6981007304882738,0.8342945021145713], + [0.6032756632064591,0.7027758554402154,0.8367550941945405], + [0.6054901960784314,0.7074509803921569,0.8392156862745098], + [0.6077047289504037,0.7121261053440985,0.841676278354479], + [0.609919261822376,0.71680123029604,0.8441368704344483], + [0.6121337946943484,0.7214763552479816,0.8465974625144175], + [0.6143483275663206,0.7261514801999231,0.8490580545943868], + [0.616562860438293,0.7308266051518647,0.851518646674356], + [0.6187773933102653,0.7355017301038063,0.8539792387543252], + [0.6221453287197232,0.7390234525182623,0.8558246828143021], + [0.6262053056516724,0.7418531334102269,0.8573010380622837], + [0.6302652825836217,0.7446828143021915,0.8587773933102653], + [0.634325259515571,0.7475124951941561,0.8602537485582468], + [0.6383852364475201,0.7503421760861206,0.8617301038062283], + [0.6424452133794695,0.7531718569780854,0.8632064590542099], + [0.6465051903114187,0.75600153787005,0.8646828143021914], + [0.650565167243368,0.7588312187620146,0.866159169550173], + [0.6546251441753173,0.7616608996539792,0.8676355247981545], + [0.6586851211072664,0.7644905805459439,0.869111880046136], + [0.6627450980392157,0.7673202614379085,0.8705882352941177], + [0.6668050749711649,0.7701499423298731,0.8720645905420992], + [0.6708650519031142,0.7729796232218378,0.8735409457900807], + [0.6749250288350634,0.7758093041138023,0.8750173010380623], + [0.6789850057670127,0.778638985005767,0.8764936562860438], + [0.683044982698962,0.7814686658977317,0.8779700115340253], + [0.6871049596309112,0.7842983467896962,0.8794463667820069], + [0.6911649365628605,0.7871280276816609,0.8809227220299884], + [0.6952249134948097,0.7899577085736256,0.88239907727797], + [0.699284890426759,0.7927873894655901,0.8838754325259516], + [0.703344867358708,0.7956170703575547,0.8853517877739331], + [0.7074048442906574,0.7984467512495194,0.8868281430219147], + [0.7114648212226067,0.801276432141484,0.8883044982698962], + [0.7155247981545559,0.8041061130334486,0.8897808535178777], + [0.7195847750865052,0.8069357939254133,0.8912572087658592], + [0.7236447520184545,0.8097654748173779,0.8927335640138409], + [0.7277047289504037,0.8125951557093425,0.8942099192618224], + [0.731764705882353,0.8154248366013072,0.895686274509804], + [0.7358246828143022,0.8182545174932718,0.8971626297577855], + [0.7398846597462514,0.8210841983852364,0.898638985005767], + [0.7439446366782007,0.8239138792772011,0.9001153402537486], + [0.7480046136101499,0.8267435601691656,0.9015916955017301], + [0.7520645905420992,0.829757785467128,0.9032525951557093], + [0.7561245674740484,0.8328335255670896,0.9049750096116879], + [0.7601845444059977,0.835909265667051,0.9066974240676663], + [0.764244521337947,0.8389850057670126,0.9084198385236447], + [0.7683044982698961,0.8420607458669741,0.9101422529796231], + [0.7723644752018455,0.8451364859669358,0.9118646674356017], + [0.7764244521337947,0.8482122260668973,0.9135870818915802], + [0.780484429065744,0.8512879661668589,0.9153094963475586], + [0.7845444059976932,0.8543637062668205,0.9170319108035371], + [0.7886043829296424,0.8574394463667819,0.9187543252595156], + [0.7926643598615917,0.8605151864667435,0.920476739715494], + [0.7967243367935409,0.8635909265667051,0.9221991541714726], + [0.8007843137254902,0.8666666666666667,0.923921568627451], + [0.8048442906574395,0.8697424067666282,0.9256439830834294], + [0.8089042675893887,0.8728181468665898,0.927366397539408], + [0.812964244521338,0.8758938869665513,0.9290888119953864], + [0.8170242214532872,0.8789696270665128,0.9308112264513649], + [0.8210841983852364,0.8820453671664744,0.9325336409073434], + [0.8251441753171856,0.885121107266436,0.9342560553633218], + [0.8292041522491349,0.8881968473663976,0.9359784698193003], + [0.8332641291810841,0.891272587466359,0.9377008842752788], + [0.8373241061130334,0.8943483275663207,0.9394232987312573], + [0.8413840830449827,0.8974240676662822,0.9411457131872357], + [0.845444059976932,0.9004998077662438,0.9428681276432141], + [0.8495040369088812,0.9035755478662053,0.9445905420991927], + [0.8535640138408305,0.9066512879661669,0.9463129565551711], + [0.8576239907727797,0.9097270280661285,0.9480353710111495], + [0.861683967704729,0.91280276816609,0.9497577854671281], + [0.8657439446366781,0.9158785082660515,0.9514801999231065], + [0.8698039215686274,0.9189542483660131,0.953202614379085], + [0.8738638985005767,0.9220299884659746,0.9549250288350635], + [0.8779238754325259,0.9251057285659362,0.9566474432910419], + [0.8809073433294886,0.9272126105344098,0.9578316032295271], + [0.8837370242214533,0.9291810841983853,0.9589388696655133], + [0.886566705113418,0.9311495578623606,0.9600461361014995], + [0.8893963860053825,0.9331180315263361,0.9611534025374856], + [0.8922260668973471,0.9350865051903114,0.9622606689734717], + [0.8950557477893117,0.9370549788542869,0.963367935409458], + [0.8978854286812764,0.9390234525182622,0.9644752018454441], + [0.9007151095732411,0.9409919261822376,0.9655824682814302], + [0.9035447904652056,0.942960399846213,0.9666897347174164], + [0.9063744713571703,0.9449288735101884,0.9677970011534026], + [0.909204152249135,0.9468973471741639,0.9689042675893887], + [0.9120338331410995,0.9488658208381392,0.9700115340253749], + [0.9148635140330642,0.9508342945021147,0.971118800461361], + [0.9176931949250289,0.95280276816609,0.9722260668973473], + [0.9205228758169934,0.9547712418300655,0.9733333333333334], + [0.9233525567089581,0.9567397154940408,0.9744405997693195], + [0.9261822376009228,0.9587081891580161,0.9755478662053056], + [0.9290119184928873,0.9606766628219916,0.9766551326412919], + [0.931841599384852,0.962645136485967,0.977762399077278], + [0.9346712802768166,0.9646136101499424,0.9788696655132642], + [0.9375009611687811,0.9665820838139177,0.9799769319492503], + [0.9403306420607459,0.9685505574778932,0.9810841983852365], + [0.9431603229527105,0.9705190311418685,0.9821914648212227], + [0.9459900038446751,0.9724875048058439,0.9832987312572088], + [0.9488196847366397,0.9744559784698194,0.9844059976931949], + [0.9516493656286044,0.9764244521337947,0.9855132641291812], + [0.954479046520569,0.9783929257977702,0.9866205305651673], + [0.9573087274125336,0.9803613994617455,0.9877277970011534], + [0.9601384083044983,0.982329873125721,0.9888350634371396], + [0.9629680891964629,0.9842983467896963,0.9899423298731258], + [0.9657977700884275,0.9862668204536718,0.9910495963091119], + [0.9686274509803922,0.9882352941176471,0.9921568627450981] ], + CMRmap: [ + [0.0,0.0,0.0], + [0.004705882352941176,0.004705882352941176,0.01568627450980392], + [0.009411764705882352,0.009411764705882352,0.03137254901960784], + [0.014117647058823528,0.014117647058823528,0.047058823529411764], + [0.018823529411764704,0.018823529411764704,0.06274509803921569], + [0.023529411764705882,0.023529411764705882,0.0784313725490196], + [0.028235294117647056,0.028235294117647056,0.09411764705882353], + [0.03294117647058823,0.03294117647058823,0.10980392156862745], + [0.03764705882352941,0.03764705882352941,0.12549019607843137], + [0.042352941176470586,0.042352941176470586,0.1411764705882353], + [0.047058823529411764,0.047058823529411764,0.1568627450980392], + [0.05176470588235294,0.05176470588235294,0.17254901960784313], + [0.05647058823529411,0.05647058823529411,0.18823529411764706], + [0.06117647058823529,0.06117647058823529,0.20392156862745098], + [0.06588235294117646,0.06588235294117646,0.2196078431372549], + [0.07058823529411765,0.07058823529411765,0.23529411764705882], + [0.07529411764705882,0.07529411764705882,0.25098039215686274], + [0.08,0.08,0.26666666666666666], + [0.08470588235294117,0.08470588235294117,0.2823529411764706], + [0.08941176470588234,0.08941176470588234,0.2980392156862745], + [0.09411764705882353,0.09411764705882353,0.3137254901960784], + [0.0988235294117647,0.0988235294117647,0.32941176470588235], + [0.10352941176470588,0.10352941176470588,0.34509803921568627], + [0.10823529411764705,0.10823529411764705,0.3607843137254902], + [0.11294117647058823,0.11294117647058823,0.3764705882352941], + [0.11764705882352941,0.11764705882352941,0.39215686274509803], + [0.12235294117647058,0.12235294117647058,0.40784313725490196], + [0.12705882352941175,0.12705882352941175,0.4235294117647059], + [0.13176470588235292,0.13176470588235292,0.4392156862745098], + [0.13647058823529412,0.13647058823529412,0.4549019607843137], + [0.1411764705882353,0.1411764705882353,0.47058823529411764], + [0.14588235294117646,0.14588235294117646,0.48627450980392156], + [0.15058823529411763,0.15,0.5009803921568627], + [0.15529411764705878,0.15,0.5088235294117647], + [0.16,0.15,0.5166666666666667], + [0.16470588235294117,0.15,0.5245098039215687], + [0.16941176470588235,0.15,0.5323529411764706], + [0.1741176470588235,0.15,0.5401960784313725], + [0.17882352941176471,0.15,0.5480392156862746], + [0.18352941176470589,0.15,0.5558823529411765], + [0.18823529411764706,0.15,0.5637254901960784], + [0.1929411764705882,0.15,0.5715686274509804], + [0.1976470588235294,0.15,0.5794117647058823], + [0.20235294117647057,0.15,0.5872549019607843], + [0.20705882352941174,0.15,0.5950980392156863], + [0.2117647058823529,0.15,0.6029411764705882], + [0.2164705882352941,0.15,0.6107843137254902], + [0.22117647058823528,0.15,0.6186274509803922], + [0.22588235294117648,0.15,0.6264705882352941], + [0.2305882352941176,0.15,0.634313725490196], + [0.23529411764705882,0.15,0.642156862745098], + [0.24,0.15,0.65], + [0.24470588235294116,0.15,0.657843137254902], + [0.2494117647058823,0.15,0.6656862745098039], + [0.2541176470588235,0.15,0.6735294117647059], + [0.2588235294117647,0.15,0.6813725490196079], + [0.2635294117647059,0.15,0.6892156862745098], + [0.268235294117647,0.15,0.6970588235294117], + [0.27294117647058824,0.15,0.7049019607843137], + [0.27764705882352936,0.15,0.7127450980392157], + [0.2823529411764706,0.15,0.7205882352941176], + [0.2870588235294117,0.15,0.7284313725490196], + [0.2917647058823529,0.15,0.7362745098039216], + [0.2964705882352941,0.15,0.7441176470588236], + [0.3023529411764706,0.1503921568627451,0.7480392156862745], + [0.31176470588235294,0.15196078431372548,0.7401960784313726], + [0.3211764705882352,0.15352941176470586,0.7323529411764707], + [0.3305882352941176,0.15509803921568627,0.7245098039215686], + [0.33999999999999997,0.15666666666666668,0.7166666666666667], + [0.3494117647058823,0.15823529411764706,0.7088235294117647], + [0.3588235294117647,0.15980392156862744,0.7009803921568627], + [0.36823529411764705,0.16137254901960785,0.6931372549019608], + [0.3776470588235294,0.16294117647058823,0.6852941176470588], + [0.3870588235294118,0.16450980392156864,0.6774509803921569], + [0.39647058823529396,0.166078431372549,0.669607843137255], + [0.40588235294117647,0.16764705882352943,0.6617647058823529], + [0.4152941176470588,0.1692156862745098,0.653921568627451], + [0.42470588235294116,0.1707843137254902,0.6460784313725491], + [0.4341176470588235,0.1723529411764706,0.638235294117647], + [0.44352941176470584,0.17392156862745098,0.6303921568627451], + [0.4529411764705882,0.17549019607843136,0.6225490196078431], + [0.4623529411764705,0.17705882352941177,0.6147058823529412], + [0.47176470588235275,0.17862745098039212,0.6068627450980393], + [0.48117647058823526,0.18019607843137256,0.5990196078431372], + [0.49058823529411766,0.18176470588235294,0.5911764705882353], + [0.5,0.18333333333333335,0.5833333333333334], + [0.5094117647058823,0.18490196078431373,0.5754901960784313], + [0.5188235294117647,0.1864705882352941,0.5676470588235294], + [0.528235294117647,0.18803921568627452,0.5598039215686275], + [0.5376470588235294,0.1896078431372549,0.5519607843137255], + [0.5470588235294116,0.19117647058823528,0.5441176470588236], + [0.556470588235294,0.1927450980392157,0.5362745098039216], + [0.5658823529411765,0.1943137254901961,0.5284313725490196], + [0.5752941176470587,0.19588235294117648,0.5205882352941177], + [0.5847058823529412,0.19745098039215686,0.5127450980392156], + [0.5941176470588234,0.19901960784313727,0.5049019607843137], + [0.6047058823529412,0.20058823529411765,0.4958823529411765], + [0.6172549019607843,0.20215686274509806,0.48490196078431375], + [0.6298039215686273,0.2037254901960784,0.47392156862745116], + [0.6423529411764706,0.20529411764705882,0.46294117647058824], + [0.6549019607843137,0.20686274509803923,0.4519607843137255], + [0.6674509803921569,0.2084313725490196,0.44098039215686274], + [0.6799999999999999,0.21000000000000002,0.43], + [0.6925490196078431,0.2115686274509804,0.41901960784313724], + [0.7050980392156863,0.21313725490196078,0.4080392156862745], + [0.7176470588235294,0.2147058823529412,0.3970588235294118], + [0.7301960784313724,0.21627450980392154,0.38607843137254916], + [0.7427450980392156,0.21784313725490195,0.3750980392156863], + [0.7552941176470588,0.21941176470588236,0.36411764705882355], + [0.7678431372549019,0.22098039215686274,0.3531372549019608], + [0.7803921568627451,0.22254901960784315,0.34215686274509804], + [0.7929411764705883,0.22411764705882353,0.3311764705882353], + [0.8054901960784313,0.2256862745098039,0.32019607843137254], + [0.8180392156862745,0.22725490196078432,0.3092156862745098], + [0.8305882352941174,0.22882352941176468,0.29823529411764726], + [0.8431372549019608,0.2303921568627451,0.28725490196078435], + [0.855686274509804,0.2319607843137255,0.2762745098039216], + [0.868235294117647,0.23352941176470587,0.26529411764705885], + [0.8807843137254902,0.23509803921568628,0.25431372549019615], + [0.8933333333333333,0.23666666666666666,0.24333333333333335], + [0.9058823529411765,0.23823529411764705,0.23235294117647065], + [0.9184313725490196,0.23980392156862745,0.2213725490196079], + [0.9309803921568626,0.2413725490196078,0.21039215686274532], + [0.9435294117647058,0.24294117647058824,0.1994117647058824], + [0.956078431372549,0.24450980392156862,0.18843137254901965], + [0.9686274509803922,0.24607843137254903,0.1774509803921569], + [0.9811764705882353,0.24764705882352941,0.16647058823529415], + [0.9937254901960784,0.2492156862745098,0.1554901960784314], + [0.9984313725490196,0.25392156862745097,0.1476470588235294], + [0.9952941176470588,0.26176470588235295,0.14294117647058824], + [0.9921568627450981,0.2696078431372549,0.13823529411764707], + [0.9890196078431372,0.2774509803921569,0.13352941176470587], + [0.9858823529411765,0.2852941176470586,0.12882352941176484], + [0.9827450980392157,0.2931372549019608,0.12411764705882353], + [0.9796078431372549,0.30098039215686273,0.11941176470588236], + [0.9764705882352941,0.3088235294117647,0.11470588235294117], + [0.9733333333333334,0.31666666666666665,0.10999999999999999], + [0.9701960784313726,0.32450980392156864,0.10529411764705882], + [0.9670588235294117,0.3323529411764706,0.10058823529411764], + [0.9639215686274509,0.34019607843137256,0.09588235294117647], + [0.9607843137254902,0.3480392156862745,0.09117647058823529], + [0.9576470588235294,0.3558823529411765,0.08647058823529412], + [0.9545098039215686,0.3637254901960784,0.08176470588235293], + [0.9513725490196079,0.3715686274509804,0.07705882352941176], + [0.9482352941176471,0.37941176470588234,0.07235294117647058], + [0.9450980392156862,0.3872549019607843,0.06764705882352941], + [0.9419607843137255,0.3950980392156863,0.06294117647058822], + [0.9388235294117647,0.40294117647058825,0.05823529411764705], + [0.935686274509804,0.41078431372548996,0.053529411764706006], + [0.9325490196078432,0.41862745098039217,0.048823529411764696], + [0.9294117647058824,0.42647058823529416,0.044117647058823525], + [0.9262745098039216,0.4343137254901961,0.03941176470588234], + [0.9231372549019607,0.442156862745098,0.03470588235294117], + [0.92,0.45,0.03], + [0.9168627450980392,0.457843137254902,0.025294117647058814], + [0.9137254901960784,0.46568627450980393,0.02058823529411763], + [0.9105882352941177,0.47352941176470587,0.01588235294117646], + [0.9074509803921569,0.48137254901960785,0.011176470588235288], + [0.9043137254901961,0.48921568627450984,0.006470588235294117], + [0.9011764705882354,0.4970588235294118,0.001764705882352946], + [0.9,0.5049019607843137,0.00196078431372549], + [0.9,0.5127450980392156,0.005098039215686275], + [0.9,0.5205882352941177,0.00823529411764706], + [0.9,0.5284313725490196,0.011372549019607844], + [0.9,0.5362745098039213,0.014509803921568538], + [0.9,0.5441176470588235,0.017647058823529415], + [0.9,0.5519607843137255,0.020784313725490198], + [0.9,0.5598039215686275,0.023921568627450984], + [0.9,0.5676470588235294,0.027058823529411764], + [0.9,0.5754901960784313,0.03019607843137255], + [0.9,0.5833333333333334,0.03333333333333333], + [0.9,0.5911764705882353,0.036470588235294116], + [0.9,0.5990196078431372,0.039607843137254906], + [0.9,0.6068627450980392,0.04274509803921569], + [0.9,0.6147058823529412,0.04588235294117647], + [0.9,0.6225490196078431,0.049019607843137254], + [0.9,0.6303921568627451,0.052156862745098044], + [0.9,0.638235294117647,0.05529411764705883], + [0.9,0.6460784313725491,0.05843137254901962], + [0.9,0.653921568627451,0.0615686274509804], + [0.9,0.6617647058823527,0.0647058823529411], + [0.9,0.669607843137255,0.06784313725490197], + [0.9,0.6774509803921569,0.07098039215686275], + [0.9,0.6852941176470588,0.07411764705882354], + [0.9,0.6931372549019608,0.07725490196078433], + [0.9,0.7009803921568627,0.0803921568627451], + [0.9,0.7088235294117647,0.0835294117647059], + [0.9,0.7166666666666667,0.08666666666666667], + [0.9,0.7245098039215686,0.08980392156862746], + [0.9,0.7323529411764707,0.09294117647058825], + [0.9,0.7401960784313726,0.09607843137254903], + [0.9,0.7480392156862745,0.09921568627450982], + [0.9,0.7535294117647059,0.10941176470588236], + [0.9,0.758235294117647,0.12196078431372549], + [0.9,0.7629411764705882,0.13450980392156864], + [0.9,0.7676470588235295,0.14705882352941177], + [0.9,0.7723529411764705,0.15960784313725457], + [0.9,0.7770588235294118,0.17215686274509806], + [0.9,0.7817647058823529,0.1847058823529412], + [0.9,0.7864705882352941,0.19725490196078432], + [0.9,0.7911764705882353,0.20980392156862748], + [0.9,0.7958823529411765,0.22235294117647061], + [0.9,0.8005882352941176,0.23490196078431375], + [0.9,0.8052941176470588,0.24745098039215688], + [0.9,0.81,0.26], + [0.9,0.8147058823529412,0.27254901960784317], + [0.9,0.8194117647058824,0.2850980392156863], + [0.9,0.8241176470588235,0.29764705882352943], + [0.9,0.8288235294117647,0.31019607843137254], + [0.9,0.8335294117647059,0.3227450980392157], + [0.9,0.8382352941176471,0.33529411764705885], + [0.9,0.8429411764705883,0.347843137254902], + [0.9,0.8476470588235293,0.36039215686274473], + [0.9,0.8523529411764706,0.3729411764705882], + [0.9,0.8570588235294118,0.3854901960784314], + [0.9,0.861764705882353,0.39803921568627454], + [0.9,0.8664705882352941,0.4105882352941177], + [0.9,0.8711764705882353,0.42313725490196086], + [0.9,0.8758823529411766,0.4356862745098039], + [0.9,0.8805882352941177,0.44823529411764707], + [0.9,0.8852941176470588,0.4607843137254902], + [0.9,0.89,0.4733333333333334], + [0.9,0.8947058823529412,0.48588235294117654], + [0.9,0.8994117647058824,0.4984313725490196], + [0.9027450980392157,0.9027450980392157,0.5137254901960784], + [0.9058823529411765,0.9058823529411765,0.5294117647058824], + [0.9090196078431373,0.9090196078431373,0.5450980392156862], + [0.9121568627450981,0.9121568627450981,0.5607843137254902], + [0.9152941176470587,0.9152941176470587,0.5764705882352936], + [0.9184313725490196,0.9184313725490196,0.592156862745098], + [0.9215686274509804,0.9215686274509804,0.607843137254902], + [0.9247058823529412,0.9247058823529412,0.6235294117647059], + [0.927843137254902,0.927843137254902,0.6392156862745098], + [0.9309803921568628,0.9309803921568628,0.6549019607843137], + [0.9341176470588235,0.9341176470588235,0.6705882352941177], + [0.9372549019607843,0.9372549019607843,0.6862745098039216], + [0.9403921568627451,0.9403921568627451,0.7019607843137254], + [0.943529411764706,0.943529411764706,0.7176470588235294], + [0.9466666666666667,0.9466666666666667,0.7333333333333334], + [0.9498039215686275,0.9498039215686275,0.7490196078431373], + [0.9529411764705883,0.9529411764705883,0.7647058823529411], + [0.956078431372549,0.956078431372549,0.7803921568627451], + [0.9592156862745098,0.9592156862745098,0.7960784313725491], + [0.9623529411764706,0.9623529411764706,0.8117647058823529], + [0.9654901960784313,0.9654901960784313,0.8274509803921564], + [0.9686274509803922,0.9686274509803922,0.8431372549019608], + [0.971764705882353,0.971764705882353,0.8588235294117648], + [0.9749019607843137,0.9749019607843137,0.8745098039215686], + [0.9780392156862745,0.9780392156862745,0.8901960784313725], + [0.9811764705882353,0.9811764705882353,0.9058823529411765], + [0.9843137254901961,0.9843137254901961,0.9215686274509804], + [0.9874509803921568,0.9874509803921568,0.9372549019607843], + [0.9905882352941177,0.9905882352941177,0.9529411764705882], + [0.9937254901960785,0.9937254901960785,0.9686274509803922], + [0.9968627450980392,0.9968627450980392,0.9843137254901961], + [1.0,1.0,1.0] ], + CMRmap_r: [ + [1.0,1.0,1.0], + [0.9968627450980392,0.9968627450980392,0.9843137254901961], + [0.9937254901960785,0.9937254901960785,0.9686274509803922], + [0.9905882352941177,0.9905882352941177,0.9529411764705882], + [0.9874509803921568,0.9874509803921568,0.9372549019607843], + [0.9843137254901961,0.9843137254901961,0.9215686274509804], + [0.9811764705882353,0.9811764705882353,0.9058823529411765], + [0.9780392156862745,0.9780392156862745,0.8901960784313725], + [0.9749019607843137,0.9749019607843137,0.8745098039215686], + [0.971764705882353,0.971764705882353,0.8588235294117648], + [0.9686274509803922,0.9686274509803922,0.8431372549019608], + [0.9654901960784313,0.9654901960784313,0.8274509803921568], + [0.9623529411764706,0.9623529411764706,0.8117647058823529], + [0.9592156862745098,0.9592156862745098,0.7960784313725491], + [0.956078431372549,0.956078431372549,0.7803921568627451], + [0.9529411764705883,0.9529411764705883,0.7647058823529411], + [0.9498039215686275,0.9498039215686275,0.7490196078431373], + [0.9466666666666667,0.9466666666666667,0.7333333333333334], + [0.943529411764706,0.943529411764706,0.7176470588235294], + [0.9403921568627451,0.9403921568627451,0.7019607843137254], + [0.9372549019607843,0.9372549019607843,0.6862745098039216], + [0.9341176470588235,0.9341176470588235,0.6705882352941177], + [0.9309803921568628,0.9309803921568628,0.6549019607843137], + [0.927843137254902,0.927843137254902,0.6392156862745098], + [0.9247058823529412,0.9247058823529412,0.6235294117647059], + [0.9215686274509804,0.9215686274509804,0.607843137254902], + [0.9184313725490196,0.9184313725490196,0.592156862745098], + [0.9152941176470588,0.9152941176470588,0.5764705882352941], + [0.9121568627450981,0.9121568627450981,0.5607843137254902], + [0.9090196078431373,0.9090196078431373,0.5450980392156863], + [0.9058823529411765,0.9058823529411765,0.5294117647058824], + [0.9027450980392158,0.9027450980392158,0.5137254901960784], + [0.9,0.8994117647058824,0.4984313725490196], + [0.9,0.8947058823529412,0.48588235294117654], + [0.9,0.89,0.47333333333333333], + [0.9,0.8852941176470589,0.4607843137254902], + [0.9,0.8805882352941177,0.44823529411764707], + [0.9,0.8758823529411766,0.435686274509804], + [0.9,0.8711764705882353,0.42313725490196075], + [0.9,0.8664705882352941,0.41058823529411764], + [0.9,0.861764705882353,0.39803921568627454], + [0.9,0.8570588235294119,0.3854901960784315], + [0.9,0.8523529411764706,0.3729411764705882], + [0.9,0.8476470588235294,0.36039215686274506], + [0.9,0.8429411764705883,0.34784313725490196], + [0.9,0.8382352941176471,0.3352941176470589], + [0.9,0.8335294117647059,0.3227450980392157], + [0.9,0.8288235294117647,0.31019607843137254], + [0.9,0.8241176470588235,0.2976470588235294], + [0.9,0.8194117647058824,0.2850980392156863], + [0.9,0.8147058823529412,0.27254901960784317], + [0.9,0.81,0.26], + [0.9,0.8052941176470588,0.24745098039215685], + [0.9,0.8005882352941177,0.2349019607843138], + [0.9,0.7958823529411765,0.2223529411764706], + [0.9,0.7911764705882353,0.20980392156862743], + [0.9,0.7864705882352941,0.19725490196078432], + [0.9,0.781764705882353,0.18470588235294128], + [0.9,0.7770588235294118,0.172156862745098], + [0.9,0.7723529411764706,0.1596078431372549], + [0.9,0.7676470588235293,0.14705882352941174], + [0.9,0.7629411764705882,0.1345098039215687], + [0.9,0.7582352941176471,0.12196078431372548], + [0.9,0.7535294117647059,0.10941176470588232], + [0.9,0.7480392156862745,0.09921568627450982], + [0.9,0.7401960784313726,0.09607843137254903], + [0.9,0.7323529411764707,0.09294117647058829], + [0.9,0.7245098039215686,0.08980392156862746], + [0.9,0.7166666666666667,0.08666666666666667], + [0.9,0.7088235294117647,0.08352941176470588], + [0.9,0.7009803921568627,0.0803921568627451], + [0.9,0.6931372549019608,0.07725490196078431], + [0.9,0.6852941176470588,0.07411764705882354], + [0.9,0.6774509803921569,0.07098039215686275], + [0.9,0.669607843137255,0.06784313725490201], + [0.9,0.6617647058823529,0.06470588235294117], + [0.9,0.653921568627451,0.06156862745098039], + [0.9,0.6460784313725491,0.05843137254901961], + [0.9,0.638235294117647,0.05529411764705883], + [0.9,0.6303921568627451,0.05215686274509804], + [0.9,0.6225490196078431,0.04901960784313726], + [0.9,0.6147058823529412,0.04588235294117648], + [0.9,0.6068627450980393,0.04274509803921574], + [0.9,0.5990196078431372,0.039607843137254906], + [0.9,0.5911764705882353,0.03647058823529413], + [0.9,0.5833333333333334,0.03333333333333334], + [0.9,0.5754901960784313,0.03019607843137255], + [0.9,0.5676470588235294,0.027058823529411774], + [0.9,0.5598039215686275,0.023921568627450984], + [0.9,0.5519607843137255,0.020784313725490194], + [0.9,0.5441176470588236,0.01764705882352946], + [0.9,0.5362745098039216,0.014509803921568629], + [0.9,0.5284313725490196,0.011372549019607853], + [0.9,0.5205882352941177,0.008235294117647063], + [0.9,0.5127450980392156,0.005098039215686273], + [0.9,0.5049019607843137,0.001960784313725497], + [0.9011764705882354,0.4970588235294118,0.001764705882352941], + [0.9043137254901961,0.4892156862745098,0.006470588235294118], + [0.9074509803921569,0.48137254901960796,0.011176470588235227], + [0.9105882352941177,0.47352941176470587,0.01588235294117647], + [0.9137254901960784,0.46568627450980393,0.020588235294117647], + [0.9168627450980392,0.45784313725490194,0.025294117647058825], + [0.92,0.45,0.03], + [0.9231372549019607,0.442156862745098,0.03470588235294118], + [0.9262745098039216,0.4343137254901961,0.039411764705882354], + [0.9294117647058824,0.4264705882352941,0.04411764705882353], + [0.9325490196078431,0.4186274509803923,0.04882352941176464], + [0.9356862745098039,0.4107843137254902,0.05352941176470588], + [0.9388235294117647,0.40294117647058825,0.05823529411764706], + [0.9419607843137255,0.39509803921568626,0.06294117647058824], + [0.9450980392156862,0.3872549019607843,0.06764705882352941], + [0.9482352941176471,0.37941176470588234,0.07235294117647059], + [0.9513725490196079,0.3715686274509804,0.07705882352941175], + [0.9545098039215686,0.36372549019607847,0.08176470588235293], + [0.9576470588235294,0.3558823529411766,0.08647058823529404], + [0.9607843137254902,0.3480392156862745,0.09117647058823529], + [0.9639215686274509,0.34019607843137256,0.09588235294117646], + [0.9670588235294117,0.33235294117647063,0.10058823529411763], + [0.9701960784313726,0.32450980392156864,0.10529411764705882], + [0.9733333333333334,0.31666666666666665,0.10999999999999999], + [0.9764705882352941,0.3088235294117647,0.11470588235294116], + [0.9796078431372549,0.3009803921568628,0.11941176470588234], + [0.9827450980392156,0.2931372549019609,0.12411764705882344], + [0.9858823529411764,0.2852941176470588,0.1288235294117647], + [0.9890196078431372,0.2774509803921569,0.13352941176470587], + [0.9921568627450981,0.26960784313725494,0.13823529411764704], + [0.9952941176470588,0.26176470588235295,0.1429411764705882], + [0.9984313725490196,0.25392156862745097,0.1476470588235294], + [0.9937254901960785,0.2492156862745098,0.15549019607843137], + [0.9811764705882353,0.24764705882352941,0.16647058823529412], + [0.9686274509803922,0.24607843137254903,0.17745098039215684], + [0.956078431372549,0.24450980392156862,0.1884313725490196], + [0.9435294117647063,0.24294117647058827,0.19941176470588204], + [0.9309803921568628,0.24137254901960783,0.2103921568627451], + [0.9184313725490196,0.23980392156862745,0.22137254901960784], + [0.9058823529411765,0.23823529411764707,0.2323529411764706], + [0.8933333333333333,0.23666666666666666,0.24333333333333332], + [0.8807843137254902,0.23509803921568628,0.25431372549019604], + [0.868235294117647,0.23352941176470587,0.2652941176470588], + [0.855686274509804,0.2319607843137255,0.27627450980392154], + [0.8431372549019608,0.2303921568627451,0.2872549019607843], + [0.8305882352941176,0.2288235294117647,0.29823529411764704], + [0.8180392156862745,0.22725490196078432,0.3092156862745098], + [0.8054901960784313,0.22568627450980394,0.32019607843137254], + [0.7929411764705883,0.22411764705882353,0.3311764705882353], + [0.7803921568627451,0.22254901960784315,0.34215686274509804], + [0.7678431372549019,0.22098039215686274,0.3531372549019608], + [0.7552941176470588,0.21941176470588236,0.36411764705882355], + [0.7427450980392161,0.217843137254902,0.37509803921568596], + [0.7301960784313726,0.21627450980392157,0.38607843137254905], + [0.7176470588235293,0.2147058823529412,0.3970588235294118], + [0.7050980392156863,0.21313725490196078,0.40803921568627455], + [0.6925490196078431,0.2115686274509804,0.4190196078431373], + [0.6799999999999999,0.21000000000000002,0.42999999999999994], + [0.6674509803921569,0.2084313725490196,0.4409803921568627], + [0.6549019607843136,0.20686274509803923,0.45196078431372544], + [0.6423529411764706,0.20529411764705882,0.4629411764705882], + [0.6298039215686274,0.20372549019607844,0.47392156862745094], + [0.6172549019607843,0.20215686274509803,0.4849019607843137], + [0.6047058823529412,0.20058823529411765,0.49588235294117644], + [0.5941176470588235,0.19901960784313727,0.5049019607843137], + [0.5847058823529412,0.19745098039215686,0.5127450980392156], + [0.5752941176470588,0.19588235294117648,0.5205882352941177], + [0.5658823529411765,0.1943137254901961,0.5284313725490196], + [0.5564705882352944,0.19274509803921575,0.5362745098039213], + [0.5470588235294117,0.1911764705882353,0.5441176470588235], + [0.5376470588235294,0.1896078431372549,0.5519607843137255], + [0.528235294117647,0.18803921568627452,0.5598039215686275], + [0.5188235294117647,0.18647058823529414,0.5676470588235294], + [0.5094117647058823,0.18490196078431373,0.5754901960784313], + [0.5,0.18333333333333335,0.5833333333333334], + [0.49058823529411766,0.18176470588235294,0.5911764705882353], + [0.4811764705882353,0.18019607843137256,0.5990196078431372], + [0.4717647058823529,0.17862745098039218,0.6068627450980392], + [0.4623529411764706,0.17705882352941177,0.6147058823529412], + [0.45294117647058824,0.1754901960784314,0.6225490196078431], + [0.44352941176470584,0.17392156862745098,0.6303921568627451], + [0.4341176470588235,0.1723529411764706,0.638235294117647], + [0.42470588235294116,0.1707843137254902,0.6460784313725491], + [0.4152941176470588,0.1692156862745098,0.653921568627451], + [0.4058823529411767,0.16764705882352945,0.6617647058823527], + [0.39647058823529413,0.16607843137254902,0.669607843137255], + [0.38705882352941173,0.1645098039215686,0.6774509803921569], + [0.3776470588235294,0.16294117647058823,0.6852941176470588], + [0.36823529411764705,0.16137254901960785,0.6931372549019608], + [0.35882352941176465,0.15980392156862744,0.7009803921568627], + [0.3494117647058823,0.15823529411764706,0.7088235294117647], + [0.33999999999999997,0.15666666666666668,0.7166666666666667], + [0.3305882352941176,0.15509803921568627,0.7245098039215686], + [0.3211764705882353,0.1535294117647059,0.7323529411764707], + [0.31176470588235294,0.15196078431372548,0.7401960784313726], + [0.30235294117647055,0.1503921568627451,0.7480392156862745], + [0.2964705882352941,0.15,0.7441176470588236], + [0.2917647058823529,0.15,0.7362745098039216], + [0.28705882352941176,0.15,0.7284313725490196], + [0.2823529411764706,0.15,0.7205882352941176], + [0.2776470588235295,0.15,0.7127450980392159], + [0.27294117647058824,0.15,0.7049019607843138], + [0.26823529411764707,0.15,0.6970588235294117], + [0.2635294117647059,0.15,0.6892156862745098], + [0.2588235294117647,0.15,0.6813725490196079], + [0.2541176470588235,0.15,0.6735294117647059], + [0.24941176470588233,0.15,0.6656862745098039], + [0.24470588235294116,0.15,0.657843137254902], + [0.24,0.15,0.65], + [0.23529411764705882,0.15,0.642156862745098], + [0.23058823529411765,0.15,0.634313725490196], + [0.22588235294117648,0.15,0.6264705882352941], + [0.22117647058823528,0.15,0.6186274509803922], + [0.2164705882352941,0.15,0.6107843137254902], + [0.2117647058823529,0.15,0.6029411764705882], + [0.20705882352941174,0.15,0.5950980392156863], + [0.2023529411764707,0.15,0.5872549019607846], + [0.1976470588235294,0.15,0.5794117647058823], + [0.19294117647058823,0.15,0.5715686274509804], + [0.18823529411764706,0.15,0.5637254901960784], + [0.18352941176470589,0.15,0.5558823529411765], + [0.17882352941176471,0.15,0.5480392156862746], + [0.17411764705882352,0.15,0.5401960784313725], + [0.16941176470588235,0.15,0.5323529411764706], + [0.16470588235294117,0.15,0.5245098039215687], + [0.16,0.15,0.5166666666666666], + [0.1552941176470588,0.15,0.5088235294117647], + [0.15058823529411763,0.15,0.5009803921568627], + [0.14588235294117646,0.14588235294117646,0.48627450980392156], + [0.1411764705882353,0.1411764705882353,0.47058823529411764], + [0.13647058823529412,0.13647058823529412,0.4549019607843137], + [0.13176470588235295,0.13176470588235295,0.4392156862745098], + [0.1270588235294119,0.1270588235294119,0.4235294117647063], + [0.12235294117647058,0.12235294117647058,0.40784313725490196], + [0.11764705882352941,0.11764705882352941,0.39215686274509803], + [0.11294117647058824,0.11294117647058824,0.3764705882352941], + [0.10823529411764705,0.10823529411764705,0.3607843137254902], + [0.10352941176470587,0.10352941176470587,0.34509803921568627], + [0.0988235294117647,0.0988235294117647,0.32941176470588235], + [0.09411764705882353,0.09411764705882353,0.3137254901960784], + [0.08941176470588236,0.08941176470588236,0.2980392156862745], + [0.08470588235294117,0.08470588235294117,0.2823529411764706], + [0.08,0.08,0.26666666666666666], + [0.07529411764705882,0.07529411764705882,0.25098039215686274], + [0.07058823529411765,0.07058823529411765,0.23529411764705882], + [0.06588235294117646,0.06588235294117646,0.2196078431372549], + [0.06117647058823529,0.06117647058823529,0.20392156862745098], + [0.05647058823529412,0.05647058823529412,0.18823529411764706], + [0.051764705882353074,0.051764705882353074,0.17254901960784358], + [0.047058823529411764,0.047058823529411764,0.1568627450980392], + [0.04235294117647058,0.04235294117647058,0.1411764705882353], + [0.03764705882352941,0.03764705882352941,0.12549019607843137], + [0.03294117647058824,0.03294117647058824,0.10980392156862745], + [0.028235294117647053,0.028235294117647053,0.09411764705882353], + [0.023529411764705882,0.023529411764705882,0.0784313725490196], + [0.01882352941176471,0.01882352941176471,0.06274509803921569], + [0.01411764705882354,0.01411764705882354,0.047058823529411764], + [0.009411764705882342,0.009411764705882342,0.03137254901960784], + [0.004705882352941171,0.004705882352941171,0.01568627450980392], + [0.0,0.0,0.0] ], + Dark2: [ + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4] ], + Dark2_r: [ + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.4,0.4,0.4], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.6509803921568628,0.4627450980392157,0.11372549019607843], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.9019607843137255,0.6705882352941176,0.00784313725490196], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.4,0.6509803921568628,0.11764705882352941], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.9058823529411765,0.1607843137254902,0.5411764705882353], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.4588235294117647,0.4392156862745098,0.7019607843137254], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.8509803921568627,0.37254901960784315,0.00784313725490196], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667], + [0.10588235294117647,0.6196078431372549,0.4666666666666667] ], + GnBu: [ + [0.9686274509803922,0.9882352941176471,0.9411764705882353], + [0.9657977700884275,0.987128027681661,0.9385928489042675], + [0.9629680891964629,0.9860207612456747,0.9360092272202999], + [0.9601384083044983,0.9849134948096886,0.9334256055363321], + [0.9573087274125336,0.9838062283737025,0.9308419838523645], + [0.954479046520569,0.9826989619377163,0.9282583621683967], + [0.9516493656286044,0.9815916955017301,0.925674740484429], + [0.9488196847366398,0.980484429065744,0.9230911188004614], + [0.9459900038446751,0.9793771626297578,0.9205074971164936], + [0.9431603229527105,0.9782698961937717,0.917923875432526], + [0.9403306420607459,0.9771626297577855,0.9153402537485582], + [0.9375009611687812,0.9760553633217993,0.9127566320645906], + [0.9346712802768166,0.9749480968858132,0.9101730103806228], + [0.931841599384852,0.9738408304498269,0.9075893886966551], + [0.9290119184928873,0.9727335640138408,0.9050057670126874], + [0.9261822376009228,0.9716262975778547,0.9024221453287197], + [0.9233525567089581,0.9705190311418685,0.899838523644752], + [0.9205228758169934,0.9694117647058823,0.8972549019607843], + [0.9176931949250289,0.9683044982698962,0.8946712802768165], + [0.9148635140330642,0.96719723183391,0.8920876585928489], + [0.9120338331410995,0.9660899653979238,0.8895040369088811], + [0.909204152249135,0.9649826989619377,0.8869204152249135], + [0.9063744713571703,0.9638754325259515,0.8843367935409457], + [0.9035447904652056,0.9627681660899654,0.881753171856978], + [0.9007151095732411,0.9616608996539792,0.8791695501730104], + [0.8978854286812764,0.960553633217993,0.8765859284890426], + [0.8950557477893117,0.9594463667820069,0.874002306805075], + [0.8922260668973472,0.9583391003460208,0.8714186851211072], + [0.8893963860053825,0.9572318339100345,0.8688350634371396], + [0.886566705113418,0.9561245674740484,0.8662514417531718], + [0.8837370242214533,0.9550173010380623,0.8636678200692041], + [0.8809073433294886,0.9539100346020761,0.8610841983852364], + [0.8781237985390234,0.9528181468665897,0.8584851980007688], + [0.8756632064590543,0.951833910034602,0.8557785467128027], + [0.873202614379085,0.9508496732026144,0.8530718954248365], + [0.8707420222991157,0.9498654363706266,0.8503652441368704], + [0.8682814302191465,0.9488811995386389,0.8476585928489042], + [0.8658208381391772,0.9478969627066512,0.8449519415609381], + [0.863360246059208,0.9469127258746636,0.8422452902729719], + [0.8608996539792387,0.9459284890426758,0.8395386389850057], + [0.8584390618992696,0.9449442522106881,0.8368319876970396], + [0.8559784698193003,0.9439600153787004,0.8341253364090734], + [0.8535178777393311,0.9429757785467128,0.8314186851211073], + [0.8510572856593618,0.9419915417147251,0.8287120338331411], + [0.8485966935793926,0.9410073048827373,0.826005382545175], + [0.8461361014994233,0.9400230680507496,0.8232987312572088], + [0.8436755094194541,0.939038831218762,0.8205920799692425], + [0.8412149173394848,0.9380545943867743,0.8178854286812764], + [0.8387543252595155,0.9370703575547865,0.8151787773933102], + [0.8362937331795464,0.9360861207227988,0.8124721261053441], + [0.8338331410995771,0.9351018838908112,0.8097654748173779], + [0.8313725490196079,0.9341176470588235,0.8070588235294117], + [0.8289119569396386,0.9331334102268358,0.8043521722414456], + [0.8264513648596694,0.932149173394848,0.8016455209534794], + [0.8239907727797001,0.9311649365628604,0.7989388696655133], + [0.8215301806997309,0.9301806997308727,0.7962322183775471], + [0.8190695886197616,0.929196462898885,0.7935255670895809], + [0.8166089965397925,0.9282122260668974,0.7908189158016148], + [0.8141484044598232,0.9272279892349096,0.7881122645136486], + [0.8116878123798539,0.9262437524029219,0.7854056132256825], + [0.8092272202998847,0.9252595155709342,0.7826989619377163], + [0.8067666282199155,0.9242752787389465,0.7799923106497502], + [0.8043060361399462,0.9232910419069588,0.777285659361784], + [0.8018454440599769,0.9223068050749711,0.7745790080738177], + [0.7988927335640139,0.9211380238369857,0.7720569011918493], + [0.7944636678200693,0.9194156093810073,0.7700884275278739], + [0.7900346020761246,0.9176931949250288,0.7681199538638985], + [0.78560553633218,0.9159707804690503,0.7661514801999232], + [0.7811764705882354,0.9142483660130718,0.7641830065359477], + [0.7767474048442907,0.9125259515570934,0.7622145328719724], + [0.7723183391003461,0.910803537101115,0.7602460592079969], + [0.7678892733564014,0.9090811226451364,0.7582775855440216], + [0.7634602076124568,0.907358708189158,0.7563091118800461], + [0.7590311418685122,0.9056362937331796,0.7543406382160708], + [0.7546020761245675,0.903913879277201,0.7523721645520954], + [0.7501730103806229,0.9021914648212226,0.75040369088812], + [0.7457439446366783,0.9004690503652442,0.7484352172241446], + [0.7413148788927336,0.8987466359092656,0.7464667435601692], + [0.736885813148789,0.8970242214532872,0.7444982698961938], + [0.7324567474048443,0.8953018069973087,0.7425297962322184], + [0.7280276816608997,0.8935793925413302,0.740561322568243], + [0.7235986159169551,0.8918569780853518,0.7385928489042676], + [0.7191695501730104,0.8901345636293734,0.7366243752402922], + [0.7147404844290658,0.8884121491733948,0.7346559015763169], + [0.7103114186851212,0.8866897347174164,0.7326874279123414], + [0.7058823529411765,0.8849673202614379,0.7307189542483661], + [0.7014532871972319,0.8832449058054594,0.7287504805843906], + [0.6970242214532872,0.881522491349481,0.7267820069204153], + [0.6925951557093426,0.8798000768935025,0.7248135332564398], + [0.688166089965398,0.878077662437524,0.7228450595924645], + [0.6837370242214533,0.8763552479815456,0.7208765859284891], + [0.6793079584775087,0.8746328335255671,0.7189081122645137], + [0.674878892733564,0.8729104190695887,0.7169396386005383], + [0.6704498269896194,0.8711880046136101,0.7149711649365629], + [0.6660207612456748,0.8694655901576317,0.7130026912725875], + [0.6615916955017301,0.8677431757016533,0.7110342176086121], + [0.6567474048442906,0.8658823529411765,0.7104959630911188], + [0.6512110726643598,0.8637908496732026,0.7123414071510957], + [0.6456747404844292,0.8616993464052288,0.7141868512110727], + [0.6401384083044983,0.8596078431372549,0.7160322952710496], + [0.6346020761245674,0.8575163398692811,0.7178777393310266], + [0.6290657439446367,0.8554248366013072,0.7197231833910035], + [0.6235294117647059,0.8533333333333334,0.7215686274509804], + [0.6179930795847751,0.8512418300653595,0.7234140715109574], + [0.6124567474048442,0.8491503267973857,0.7252595155709343], + [0.6069204152249135,0.8470588235294118,0.7271049596309113], + [0.6013840830449828,0.844967320261438,0.7289504036908881], + [0.5958477508650519,0.842875816993464,0.730795847750865], + [0.590311418685121,0.8407843137254902,0.732641291810842], + [0.5847750865051903,0.8386928104575164,0.7344867358708189], + [0.5792387543252595,0.8366013071895425,0.7363321799307959], + [0.5737024221453287,0.8345098039215687,0.7381776239907728], + [0.568166089965398,0.8324183006535948,0.7400230680507498], + [0.5626297577854671,0.830326797385621,0.7418685121107267], + [0.5570934256055364,0.8282352941176472,0.7437139561707036], + [0.5515570934256055,0.8261437908496733,0.7455594002306806], + [0.5460207612456748,0.8240522875816993,0.7474048442906575], + [0.540484429065744,0.8219607843137255,0.7492502883506345], + [0.5349480968858131,0.8198692810457516,0.7510957324106113], + [0.5294117647058824,0.8177777777777778,0.7529411764705882], + [0.5238754325259516,0.8156862745098039,0.7547866205305652], + [0.5183391003460207,0.8135947712418301,0.7566320645905421], + [0.51280276816609,0.8115032679738563,0.758477508650519], + [0.5072664359861592,0.8094117647058824,0.760322952710496], + [0.5017301038062284,0.8073202614379086,0.7621683967704729], + [0.49619377162629763,0.8052287581699347,0.7640138408304499], + [0.4906574394463668,0.8031372549019609,0.7658592848904268], + [0.485121107266436,0.801045751633987,0.7677047289504038], + [0.4795847750865052,0.7984621299500193,0.7695501730103806], + [0.4740484429065744,0.7953863898500577,0.7713956170703576], + [0.4685121107266436,0.7923106497500961,0.7732410611303345], + [0.4629757785467128,0.7892349096501345,0.7750865051903114], + [0.4574394463667822,0.7861591695501732,0.7769319492502883], + [0.4519031141868512,0.7830834294502115,0.7787773933102653], + [0.4463667820069204,0.7800076893502499,0.7806228373702422], + [0.4408304498269896,0.7769319492502884,0.7824682814302192], + [0.43529411764705883,0.7738562091503268,0.7843137254901961], + [0.42975778546712806,0.7707804690503652,0.7861591695501731], + [0.42422145328719724,0.7677047289504038,0.78800461361015], + [0.41868512110726647,0.7646289888504422,0.7898500576701268], + [0.41314878892733564,0.7615532487504806,0.7916955017301038], + [0.40761245674740487,0.758477508650519,0.7935409457900807], + [0.40207612456747405,0.7554017685505575,0.7953863898500577], + [0.3965397923875433,0.7523260284505959,0.7972318339100346], + [0.39100346020761245,0.7492502883506343,0.7990772779700115], + [0.3854671280276817,0.7461745482506728,0.8009227220299885], + [0.37993079584775086,0.7430988081507113,0.8027681660899654], + [0.3743944636678201,0.7400230680507497,0.8046136101499424], + [0.36885813148788943,0.7369473279507882,0.8064590542099191], + [0.3633217993079585,0.7338715878508266,0.8083044982698961], + [0.3577854671280277,0.730795847750865,0.8101499423298731], + [0.3522491349480969,0.7277201076509034,0.81199538638985], + [0.3467128027681661,0.724644367550942,0.8138408304498269], + [0.3411764705882353,0.7215686274509804,0.8156862745098039], + [0.33564013840830453,0.7184928873510188,0.8175317185697808], + [0.3301038062283737,0.7154171472510572,0.8193771626297578], + [0.3245674740484429,0.7123414071510957,0.8212226066897347], + [0.3190311418685121,0.7092656670511341,0.8230680507497116], + [0.31349480968858134,0.7061899269511726,0.8249134948096886], + [0.3079584775086506,0.703114186851211,0.8267589388696654], + [0.3031910803537101,0.6989619377162629,0.825836216839677], + [0.29888504421376394,0.6941637831603229,0.8232525951557093], + [0.29457900807381776,0.6893656286043829,0.8206689734717416], + [0.2902729719338716,0.6845674740484429,0.8180853517877739], + [0.28596693579392557,0.679769319492503,0.8155017301038062], + [0.2816608996539793,0.6749711649365628,0.8129181084198385], + [0.2773548635140331,0.6701730103806228,0.8103344867358708], + [0.2730488273740869,0.6653748558246828,0.8077508650519031], + [0.26874279123414074,0.6605767012687428,0.8051672433679353], + [0.26443675509419456,0.6557785467128028,0.8025836216839677], + [0.2601307189542484,0.6509803921568628,0.7999999999999999], + [0.2558246828143022,0.6461822376009227,0.7974163783160323], + [0.25151864667435603,0.6413840830449827,0.7948327566320645], + [0.24721261053440985,0.6365859284890427,0.7922491349480969], + [0.24290657439446367,0.6317877739331026,0.7896655132641291], + [0.23860053825451752,0.6269896193771627,0.7870818915801615], + [0.2342945021145713,0.6221914648212226,0.7844982698961938], + [0.22998846597462516,0.6173933102652825,0.781914648212226], + [0.22568242983467898,0.6125951557093425,0.7793310265282584], + [0.2213763936947328,0.6077970011534025,0.7767474048442906], + [0.21707035755478676,0.6029988465974626,0.774163783160323], + [0.21276432141484047,0.5982006920415225,0.7715801614763552], + [0.2084582852748943,0.5934025374855825,0.7689965397923876], + [0.20415224913494812,0.5886043829296425,0.7664129181084198], + [0.19984621299500194,0.5838062283737024,0.7638292964244522], + [0.19554017685505576,0.5790080738177624,0.7612456747404844], + [0.19123414071510958,0.5742099192618224,0.7586620530565167], + [0.1869281045751634,0.5694117647058824,0.756078431372549], + [0.18262206843521722,0.5646136101499424,0.7534948096885813], + [0.17831603229527107,0.5598154555940024,0.7509111880046137], + [0.1740099961553249,0.5550173010380623,0.7483275663206459], + [0.1697039600153787,0.5502191464821223,0.7457439446366783], + [0.16539792387543253,0.5456978085351788,0.7434371395617071], + [0.16109188773548636,0.5412687427912342,0.7412226066897347], + [0.15678585159554018,0.5368396770472895,0.7390080738177625], + [0.15247981545559403,0.5324106113033449,0.7367935409457901], + [0.14817377931564796,0.5279815455594004,0.7345790080738178], + [0.14386774317570167,0.5235524798154556,0.7323644752018454], + [0.1395617070357555,0.519123414071511,0.7301499423298732], + [0.1352556708958093,0.5146943483275663,0.7279354094579008], + [0.13094963475586313,0.5102652825836217,0.7257208765859285], + [0.12664359861591695,0.505836216839677,0.7235063437139562], + [0.12233756247597079,0.5014071510957324,0.7212918108419839], + [0.11803152633602461,0.4969780853517878,0.7190772779700115], + [0.11372549019607844,0.49254901960784314,0.7168627450980393], + [0.10941945405613226,0.4881199538638985,0.7146482122260669], + [0.10511341791618609,0.48369088811995387,0.7124336793540946], + [0.10080738177623991,0.4792618223760092,0.7102191464821223], + [0.09650134563629374,0.4748327566320646,0.70800461361015], + [0.09219530949634756,0.47040369088811995,0.7057900807381776], + [0.08788927335640138,0.4659746251441753,0.7035755478662054], + [0.0835832372164552,0.4615455594002307,0.701361014994233], + [0.07927720107650915,0.45711649365628615,0.6991464821222607], + [0.07497116493656286,0.4526874279123414,0.6969319492502883], + [0.07066512879661668,0.44825836216839676,0.6947174163783161], + [0.06635909265667052,0.4438292964244521,0.6925028835063437], + [0.06205305651672434,0.4394002306805075,0.6902883506343714], + [0.05774702037677816,0.43497116493656285,0.6880738177623991], + [0.05344098423683198,0.4305420991926182,0.6858592848904268], + [0.04913494809688582,0.4261130334486736,0.6836447520184545], + [0.04482891195693964,0.42168396770472893,0.6814302191464822], + [0.04052287581699346,0.4172549019607843,0.6792156862745098], + [0.03621683967704728,0.41282583621683966,0.6770011534025375], + [0.0319108035371011,0.408396770472895,0.6747866205305653], + [0.03137254901960784,0.4035371011149558,0.6698808150711265], + [0.03137254901960784,0.3986159169550173,0.6645905420991927], + [0.03137254901960784,0.39369473279507883,0.6593002691272588], + [0.03137254901960784,0.38877354863514035,0.654009996155325], + [0.03137254901960784,0.383852364475202,0.6487197231833912], + [0.03137254901960784,0.37893118031526335,0.6434294502114571], + [0.03137254901960784,0.3740099961553249,0.6381391772395233], + [0.03137254901960784,0.3690888119953864,0.6328489042675894], + [0.03137254901960784,0.36416762783544787,0.6275586312956556], + [0.03137254901960784,0.3592464436755094,0.6222683583237216], + [0.03137254901960784,0.3543252595155709,0.6169780853517878], + [0.03137254901960784,0.34940407535563245,0.6116878123798539], + [0.03137254901960784,0.344482891195694,0.6063975394079201], + [0.03137254901960784,0.3395617070357555,0.6011072664359862], + [0.03137254901960784,0.33464052287581697,0.5958169934640523], + [0.03137254901960784,0.3297193387158785,0.5905267204921184], + [0.03137254901960784,0.32479815455594,0.5852364475201846], + [0.03137254901960784,0.31987697039600155,0.5799461745482507], + [0.03137254901960784,0.314955786236063,0.5746559015763169], + [0.03137254901960784,0.31003460207612454,0.5693656286043829], + [0.03137254901960784,0.30511341791618624,0.5640753556324491], + [0.03137254901960784,0.3001922337562476,0.5587850826605152], + [0.03137254901960784,0.2952710495963091,0.5534948096885813], + [0.03137254901960784,0.29034986543637065,0.5482045367166475], + [0.03137254901960784,0.2854286812764321,0.5429142637447135], + [0.03137254901960784,0.28050749711649364,0.5376239907727797], + [0.03137254901960784,0.27558631295655517,0.5323337178008458], + [0.03137254901960784,0.2706651287966167,0.527043444828912], + [0.03137254901960784,0.26574394463667816,0.5217531718569781], + [0.03137254901960784,0.2608227604767397,0.5164628988850442], + [0.03137254901960784,0.2559015763168012,0.5111726259131103], + [0.03137254901960784,0.25098039215686274,0.5058823529411764] ], + GnBu_r: [ + [0.03137254901960784,0.25098039215686274,0.5058823529411764], + [0.03137254901960784,0.2559015763168012,0.5111726259131103], + [0.03137254901960784,0.2608227604767397,0.5164628988850442], + [0.03137254901960784,0.2657439446366782,0.5217531718569781], + [0.03137254901960784,0.2706651287966167,0.527043444828912], + [0.03137254901960784,0.27558631295655517,0.5323337178008458], + [0.03137254901960784,0.28050749711649364,0.5376239907727797], + [0.03137254901960784,0.2854286812764321,0.5429142637447135], + [0.03137254901960784,0.29034986543637065,0.5482045367166475], + [0.03137254901960784,0.2952710495963091,0.5534948096885813], + [0.03137254901960784,0.3001922337562476,0.5587850826605152], + [0.03137254901960784,0.30511341791618607,0.564075355632449], + [0.03137254901960784,0.31003460207612454,0.5693656286043829], + [0.03137254901960784,0.314955786236063,0.5746559015763169], + [0.03137254901960784,0.31987697039600155,0.5799461745482507], + [0.03137254901960784,0.32479815455594,0.5852364475201846], + [0.03137254901960784,0.3297193387158785,0.5905267204921184], + [0.03137254901960784,0.33464052287581697,0.5958169934640523], + [0.03137254901960784,0.3395617070357555,0.6011072664359862], + [0.03137254901960784,0.344482891195694,0.6063975394079201], + [0.03137254901960784,0.34940407535563245,0.6116878123798539], + [0.03137254901960784,0.3543252595155709,0.6169780853517878], + [0.03137254901960784,0.3592464436755094,0.6222683583237216], + [0.03137254901960784,0.36416762783544787,0.6275586312956556], + [0.03137254901960784,0.3690888119953864,0.6328489042675894], + [0.03137254901960784,0.3740099961553249,0.6381391772395233], + [0.03137254901960784,0.37893118031526335,0.6434294502114571], + [0.03137254901960784,0.3838523644752019,0.648719723183391], + [0.03137254901960784,0.38877354863514035,0.654009996155325], + [0.03137254901960784,0.39369473279507883,0.6593002691272588], + [0.03137254901960784,0.3986159169550173,0.6645905420991927], + [0.03137254901960784,0.4035371011149558,0.6698808150711265], + [0.031910803537101115,0.408396770472895,0.6747866205305653], + [0.03621683967704726,0.41282583621683966,0.6770011534025375], + [0.040522875816993466,0.4172549019607843,0.6792156862745099], + [0.04482891195693964,0.42168396770472893,0.6814302191464822], + [0.04913494809688582,0.4261130334486736,0.6836447520184545], + [0.05344098423683196,0.4305420991926182,0.6858592848904268], + [0.05774702037677817,0.43497116493656285,0.6880738177623991], + [0.06205305651672434,0.4394002306805075,0.6902883506343714], + [0.0663590926566705,0.4438292964244521,0.6925028835063437], + [0.07066512879661666,0.44825836216839676,0.6947174163783161], + [0.07497116493656286,0.4526874279123414,0.6969319492502883], + [0.07927720107650904,0.45711649365628604,0.6991464821222607], + [0.08358323721645522,0.4615455594002307,0.701361014994233], + [0.08788927335640136,0.4659746251441753,0.7035755478662054], + [0.09219530949634756,0.47040369088811995,0.7057900807381776], + [0.09650134563629374,0.4748327566320646,0.70800461361015], + [0.10080738177623991,0.4792618223760092,0.7102191464821223], + [0.10511341791618606,0.48369088811995387,0.7124336793540946], + [0.10941945405613226,0.4881199538638985,0.7146482122260669], + [0.11372549019607843,0.49254901960784314,0.7168627450980393], + [0.11803152633602461,0.4969780853517878,0.7190772779700115], + [0.12233756247597076,0.5014071510957324,0.7212918108419839], + [0.12664359861591695,0.505836216839677,0.7235063437139562], + [0.13094963475586313,0.5102652825836217,0.7257208765859285], + [0.1352556708958093,0.5146943483275663,0.7279354094579008], + [0.13956170703575543,0.519123414071511,0.7301499423298732], + [0.14386774317570167,0.5235524798154556,0.7323644752018454], + [0.14817377931564785,0.5279815455594002,0.7345790080738178], + [0.15247981545559403,0.5324106113033449,0.7367935409457901], + [0.15678585159554015,0.5368396770472895,0.7390080738177625], + [0.16109188773548636,0.5412687427912342,0.7412226066897347], + [0.16539792387543253,0.5456978085351788,0.7434371395617071], + [0.1697039600153787,0.5502191464821223,0.7457439446366783], + [0.1740099961553249,0.5550173010380623,0.7483275663206459], + [0.178316032295271,0.5598154555940023,0.7509111880046135], + [0.18262206843521725,0.5646136101499424,0.7534948096885813], + [0.1869281045751634,0.5694117647058824,0.756078431372549], + [0.19123414071510958,0.5742099192618224,0.7586620530565167], + [0.19554017685505576,0.5790080738177624,0.7612456747404844], + [0.19984621299500194,0.5838062283737024,0.7638292964244522], + [0.20415224913494812,0.5886043829296425,0.7664129181084198], + [0.2084582852748943,0.5934025374855825,0.7689965397923876], + [0.21276432141484042,0.5982006920415225,0.7715801614763552], + [0.21707035755478665,0.6029988465974625,0.774163783160323], + [0.22137639369473283,0.6077970011534025,0.7767474048442906], + [0.22568242983467898,0.6125951557093425,0.7793310265282584], + [0.22998846597462516,0.6173933102652825,0.781914648212226], + [0.23429450211457134,0.6221914648212226,0.7844982698961938], + [0.2386005382545175,0.6269896193771626,0.7870818915801614], + [0.24290657439446367,0.6317877739331026,0.7896655132641291], + [0.2472126105344098,0.6365859284890426,0.7922491349480968], + [0.25151864667435603,0.6413840830449826,0.7948327566320645], + [0.2558246828143022,0.6461822376009227,0.7974163783160323], + [0.2601307189542484,0.6509803921568628,0.7999999999999999], + [0.26443675509419456,0.6557785467128028,0.8025836216839677], + [0.26874279123414074,0.6605767012687428,0.8051672433679353], + [0.2730488273740869,0.6653748558246828,0.8077508650519031], + [0.27735486351403305,0.6701730103806228,0.8103344867358708], + [0.2816608996539792,0.6749711649365627,0.8129181084198385], + [0.2859669357939254,0.6797693194925029,0.8155017301038062], + [0.2902729719338716,0.6845674740484429,0.8180853517877739], + [0.29457900807381776,0.6893656286043829,0.8206689734717416], + [0.29888504421376394,0.6941637831603229,0.8232525951557093], + [0.3031910803537101,0.6989619377162629,0.825836216839677], + [0.3079584775086505,0.7031141868512111,0.8267589388696654], + [0.31349480968858134,0.7061899269511726,0.8249134948096886], + [0.31903114186851206,0.7092656670511341,0.8230680507497117], + [0.32456747404844294,0.7123414071510957,0.8212226066897347], + [0.3301038062283737,0.7154171472510572,0.8193771626297578], + [0.33564013840830453,0.7184928873510188,0.8175317185697808], + [0.3411764705882353,0.7215686274509804,0.8156862745098039], + [0.34671280276816613,0.724644367550942,0.8138408304498269], + [0.3522491349480969,0.7277201076509034,0.81199538638985], + [0.3577854671280277,0.730795847750865,0.8101499423298731], + [0.36332179930795844,0.7338715878508265,0.8083044982698961], + [0.36885813148788926,0.7369473279507881,0.8064590542099193], + [0.3743944636678201,0.7400230680507497,0.8046136101499424], + [0.3799307958477509,0.7430988081507113,0.8027681660899654], + [0.3854671280276817,0.7461745482506728,0.8009227220299885], + [0.39100346020761245,0.7492502883506343,0.7990772779700115], + [0.3965397923875433,0.7523260284505959,0.7972318339100346], + [0.40207612456747405,0.7554017685505575,0.7953863898500577], + [0.40761245674740476,0.758477508650519,0.7935409457900807], + [0.41314878892733564,0.7615532487504806,0.7916955017301038], + [0.4186851211072664,0.7646289888504422,0.7898500576701268], + [0.42422145328719724,0.7677047289504038,0.78800461361015], + [0.42975778546712806,0.7707804690503652,0.7861591695501731], + [0.43529411764705883,0.7738562091503268,0.7843137254901961], + [0.4408304498269896,0.7769319492502884,0.7824682814302192], + [0.4463667820069204,0.7800076893502499,0.7806228373702422], + [0.45190311418685114,0.7830834294502115,0.7787773933102653], + [0.457439446366782,0.7861591695501731,0.7769319492502884], + [0.4629757785467128,0.7892349096501345,0.7750865051903114], + [0.46851211072664356,0.7923106497500961,0.7732410611303345], + [0.4740484429065744,0.7953863898500577,0.7713956170703576], + [0.4795847750865052,0.7984621299500193,0.7695501730103806], + [0.485121107266436,0.801045751633987,0.7677047289504038], + [0.4906574394463668,0.8031372549019609,0.7658592848904268], + [0.4961937716262976,0.8052287581699347,0.7640138408304499], + [0.5017301038062284,0.8073202614379086,0.762168396770473], + [0.5072664359861591,0.8094117647058824,0.7603229527104961], + [0.5128027681660899,0.8115032679738563,0.7584775086505191], + [0.5183391003460207,0.8135947712418301,0.7566320645905421], + [0.5238754325259516,0.8156862745098039,0.7547866205305652], + [0.5294117647058824,0.8177777777777778,0.7529411764705882], + [0.5349480968858131,0.8198692810457516,0.7510957324106113], + [0.5404844290657439,0.8219607843137255,0.7492502883506345], + [0.5460207612456748,0.8240522875816993,0.7474048442906575], + [0.5515570934256055,0.8261437908496733,0.7455594002306806], + [0.5570934256055363,0.8282352941176471,0.7437139561707036], + [0.5626297577854671,0.830326797385621,0.7418685121107267], + [0.568166089965398,0.8324183006535948,0.7400230680507498], + [0.5737024221453287,0.8345098039215687,0.7381776239907728], + [0.5792387543252595,0.8366013071895425,0.7363321799307959], + [0.5847750865051903,0.8386928104575164,0.7344867358708189], + [0.5903114186851212,0.8407843137254902,0.732641291810842], + [0.5958477508650517,0.842875816993464,0.7307958477508651], + [0.6013840830449827,0.844967320261438,0.7289504036908881], + [0.6069204152249135,0.8470588235294118,0.7271049596309113], + [0.6124567474048443,0.8491503267973857,0.7252595155709343], + [0.6179930795847751,0.8512418300653595,0.7234140715109574], + [0.6235294117647059,0.8533333333333334,0.7215686274509804], + [0.6290657439446367,0.8554248366013072,0.7197231833910035], + [0.6346020761245674,0.8575163398692811,0.7178777393310266], + [0.6401384083044983,0.8596078431372549,0.7160322952710496], + [0.6456747404844291,0.8616993464052288,0.7141868512110727], + [0.6512110726643598,0.8637908496732026,0.7123414071510957], + [0.6567474048442906,0.8658823529411765,0.7104959630911188], + [0.6615916955017301,0.8677431757016533,0.7110342176086121], + [0.6660207612456748,0.8694655901576317,0.7130026912725875], + [0.6704498269896194,0.8711880046136101,0.7149711649365629], + [0.674878892733564,0.8729104190695887,0.7169396386005383], + [0.6793079584775086,0.8746328335255671,0.7189081122645137], + [0.6837370242214533,0.8763552479815456,0.720876585928489], + [0.688166089965398,0.878077662437524,0.7228450595924645], + [0.6925951557093426,0.8798000768935025,0.7248135332564398], + [0.6970242214532872,0.881522491349481,0.7267820069204153], + [0.7014532871972319,0.8832449058054594,0.7287504805843906], + [0.7058823529411765,0.8849673202614379,0.7307189542483661], + [0.7103114186851212,0.8866897347174164,0.7326874279123414], + [0.7147404844290658,0.8884121491733948,0.7346559015763169], + [0.7191695501730104,0.8901345636293733,0.7366243752402922], + [0.7235986159169551,0.8918569780853518,0.7385928489042676], + [0.7280276816608997,0.8935793925413302,0.740561322568243], + [0.7324567474048443,0.8953018069973087,0.7425297962322184], + [0.736885813148789,0.8970242214532872,0.7444982698961938], + [0.7413148788927336,0.8987466359092656,0.7464667435601692], + [0.7457439446366783,0.9004690503652442,0.7484352172241446], + [0.7501730103806228,0.9021914648212226,0.75040369088812], + [0.7546020761245675,0.903913879277201,0.7523721645520953], + [0.7590311418685122,0.9056362937331796,0.7543406382160708], + [0.7634602076124568,0.907358708189158,0.7563091118800461], + [0.7678892733564014,0.9090811226451364,0.7582775855440216], + [0.7723183391003461,0.910803537101115,0.7602460592079969], + [0.7767474048442907,0.9125259515570934,0.7622145328719724], + [0.7811764705882354,0.9142483660130718,0.7641830065359477], + [0.78560553633218,0.9159707804690503,0.7661514801999232], + [0.7900346020761246,0.9176931949250288,0.7681199538638985], + [0.7944636678200693,0.9194156093810073,0.7700884275278739], + [0.7988927335640139,0.9211380238369857,0.7720569011918493], + [0.8018454440599769,0.9223068050749711,0.7745790080738177], + [0.8043060361399462,0.9232910419069588,0.777285659361784], + [0.8067666282199154,0.9242752787389465,0.7799923106497502], + [0.8092272202998847,0.9252595155709342,0.7826989619377163], + [0.8116878123798539,0.9262437524029219,0.7854056132256824], + [0.8141484044598232,0.9272279892349096,0.7881122645136486], + [0.8166089965397925,0.9282122260668972,0.7908189158016148], + [0.8190695886197616,0.929196462898885,0.7935255670895809], + [0.8215301806997309,0.9301806997308727,0.7962322183775471], + [0.8239907727797001,0.9311649365628604,0.7989388696655133], + [0.8264513648596694,0.932149173394848,0.8016455209534794], + [0.8289119569396386,0.9331334102268358,0.8043521722414456], + [0.8313725490196079,0.9341176470588235,0.8070588235294117], + [0.8338331410995771,0.9351018838908112,0.8097654748173779], + [0.8362937331795464,0.9360861207227988,0.8124721261053441], + [0.8387543252595155,0.9370703575547865,0.8151787773933102], + [0.8412149173394848,0.9380545943867743,0.8178854286812764], + [0.8436755094194541,0.939038831218762,0.8205920799692425], + [0.8461361014994233,0.9400230680507496,0.8232987312572088], + [0.8485966935793926,0.9410073048827373,0.826005382545175], + [0.8510572856593617,0.941991541714725,0.828712033833141], + [0.8535178777393311,0.9429757785467128,0.8314186851211073], + [0.8559784698193003,0.9439600153787004,0.8341253364090734], + [0.8584390618992696,0.9449442522106881,0.8368319876970396], + [0.8608996539792387,0.9459284890426758,0.8395386389850057], + [0.863360246059208,0.9469127258746636,0.8422452902729719], + [0.8658208381391772,0.9478969627066512,0.8449519415609381], + [0.8682814302191465,0.9488811995386389,0.8476585928489042], + [0.8707420222991157,0.9498654363706266,0.8503652441368704], + [0.873202614379085,0.9508496732026144,0.8530718954248365], + [0.8756632064590542,0.951833910034602,0.8557785467128027], + [0.8781237985390234,0.9528181468665897,0.8584851980007688], + [0.8809073433294886,0.953910034602076,0.8610841983852364], + [0.8837370242214533,0.9550173010380623,0.8636678200692041], + [0.886566705113418,0.9561245674740484,0.8662514417531718], + [0.8893963860053825,0.9572318339100345,0.8688350634371396], + [0.8922260668973471,0.9583391003460207,0.8714186851211071], + [0.8950557477893117,0.9594463667820069,0.874002306805075], + [0.8978854286812764,0.960553633217993,0.8765859284890426], + [0.9007151095732411,0.9616608996539792,0.8791695501730104], + [0.9035447904652056,0.9627681660899654,0.881753171856978], + [0.9063744713571703,0.9638754325259515,0.8843367935409457], + [0.909204152249135,0.9649826989619377,0.8869204152249135], + [0.9120338331410995,0.9660899653979239,0.8895040369088811], + [0.9148635140330642,0.96719723183391,0.8920876585928489], + [0.9176931949250289,0.9683044982698962,0.8946712802768165], + [0.9205228758169934,0.9694117647058823,0.8972549019607843], + [0.9233525567089581,0.9705190311418685,0.899838523644752], + [0.9261822376009228,0.9716262975778547,0.9024221453287197], + [0.9290119184928873,0.9727335640138408,0.9050057670126874], + [0.931841599384852,0.9738408304498269,0.9075893886966551], + [0.9346712802768166,0.9749480968858132,0.9101730103806228], + [0.9375009611687811,0.9760553633217993,0.9127566320645905], + [0.9403306420607459,0.9771626297577855,0.9153402537485582], + [0.9431603229527105,0.9782698961937717,0.917923875432526], + [0.9459900038446751,0.9793771626297578,0.9205074971164936], + [0.9488196847366397,0.980484429065744,0.9230911188004614], + [0.9516493656286044,0.9815916955017301,0.925674740484429], + [0.954479046520569,0.9826989619377163,0.9282583621683967], + [0.9573087274125336,0.9838062283737025,0.9308419838523645], + [0.9601384083044983,0.9849134948096886,0.9334256055363321], + [0.9629680891964629,0.9860207612456747,0.9360092272202999], + [0.9657977700884275,0.987128027681661,0.9385928489042675], + [0.9686274509803922,0.9882352941176471,0.9411764705882353] ], + Greens: [ + [0.9686274509803922,0.9882352941176471,0.9607843137254902], + [0.9664129181084199,0.9873740868896579,0.9582006920415225], + [0.9641983852364475,0.9865128796616687,0.9556170703575548], + [0.9619838523644753,0.9856516724336793,0.9530334486735871], + [0.9597693194925029,0.9847904652056901,0.9504498269896194], + [0.9575547866205306,0.9839292579777009,0.9478662053056517], + [0.9553402537485582,0.9830680507497117,0.9452825836216839], + [0.953125720876586,0.9822068435217225,0.9426989619377163], + [0.9509111880046136,0.9813456362937332,0.9401153402537485], + [0.9486966551326413,0.980484429065744,0.9375317185697809], + [0.946482122260669,0.9796232218377547,0.9349480968858132], + [0.9442675893886967,0.9787620146097655,0.9323644752018455], + [0.9420530565167243,0.9779008073817763,0.9297808535178778], + [0.9398385236447521,0.977039600153787,0.92719723183391], + [0.9376239907727797,0.9761783929257978,0.9246136101499424], + [0.9354094579008074,0.9753171856978086,0.9220299884659746], + [0.933194925028835,0.9744559784698194,0.919446366782007], + [0.9309803921568628,0.9735947712418301,0.9168627450980392], + [0.9287658592848904,0.9727335640138408,0.9142791234140715], + [0.9265513264129182,0.9718723567858516,0.9116955017301038], + [0.9243367935409458,0.9710111495578624,0.9091118800461361], + [0.9221222606689735,0.9701499423298732,0.9065282583621684], + [0.9199077277970011,0.969288735101884,0.9039446366782007], + [0.9176931949250289,0.9684275278738947,0.901361014994233], + [0.9154786620530565,0.9675663206459054,0.8987773933102653], + [0.9132641291810842,0.9667051134179162,0.8961937716262975], + [0.9110495963091119,0.965843906189927,0.8936101499423299], + [0.9088350634371396,0.9649826989619378,0.8910265282583621], + [0.9066205305651672,0.9641214917339485,0.8884429065743944], + [0.904405997693195,0.9632602845059592,0.8858592848904268], + [0.9021914648212226,0.96239907727797,0.883275663206459], + [0.8999769319492503,0.9615378700499808,0.8806920415224914], + [0.8975778546712803,0.9605997693194925,0.8779392541330258], + [0.8938869665513265,0.959123414071511,0.874002306805075], + [0.8901960784313726,0.9576470588235294,0.8700653594771242], + [0.8865051903114187,0.9561707035755479,0.8661284121491734], + [0.8828143021914648,0.9546943483275664,0.8621914648212226], + [0.879123414071511,0.9532179930795848,0.8582545174932719], + [0.8754325259515571,0.9517416378316033,0.8543175701653211], + [0.8717416378316033,0.9502652825836218,0.8503806228373703], + [0.8680507497116494,0.9487889273356401,0.8464436755094195], + [0.8643598615916955,0.9473125720876586,0.8425067281814687], + [0.8606689734717416,0.9458362168396771,0.8385697808535179], + [0.8569780853517878,0.9443598615916955,0.834632833525567], + [0.8532871972318339,0.942883506343714,0.8306958861976163], + [0.8495963091118801,0.9414071510957325,0.8267589388696656], + [0.8459054209919262,0.9399307958477509,0.8228219915417148], + [0.8422145328719723,0.9384544405997693,0.818885044213764], + [0.8385236447520185,0.9369780853517877,0.8149480968858132], + [0.8348327566320646,0.9355017301038062,0.8110111495578624], + [0.8311418685121108,0.9340253748558247,0.8070742022299116], + [0.8274509803921569,0.9325490196078431,0.8031372549019608], + [0.823760092272203,0.9310726643598616,0.79920030757401], + [0.8200692041522492,0.9295963091118801,0.7952633602460593], + [0.8163783160322953,0.9281199538638985,0.7913264129181085], + [0.8126874279123414,0.9266435986159169,0.7873894655901577], + [0.8089965397923875,0.9251672433679354,0.7834525182622069], + [0.8053056516724337,0.9236908881199538,0.779515570934256], + [0.8016147635524798,0.9222145328719723,0.7755786236063053], + [0.797923875432526,0.9207381776239908,0.7716416762783544], + [0.7942329873125721,0.9192618223760092,0.7677047289504036], + [0.7905420991926182,0.9177854671280277,0.763767781622453], + [0.7868512110726644,0.9163091118800462,0.7598308342945022], + [0.7831603229527105,0.9148327566320645,0.7558938869665514], + [0.7792233756247597,0.9132333717800846,0.7518031526336024], + [0.7745482506728182,0.9112648981161091,0.7472510572856593], + [0.7698731257208766,0.9092964244521338,0.7426989619377163], + [0.7651980007689351,0.9073279507881584,0.7381468665897731], + [0.7605228758169935,0.905359477124183,0.73359477124183], + [0.7558477508650518,0.9033910034602076,0.7290426758938869], + [0.7511726259131103,0.9014225297962322,0.7244905805459438], + [0.7464975009611687,0.8994540561322568,0.7199384851980007], + [0.7418223760092272,0.8974855824682814,0.7153863898500576], + [0.7371472510572856,0.895517108804306,0.7108342945021145], + [0.7324721261053442,0.8935486351403307,0.7062821991541715], + [0.7277970011534025,0.8915801614763552,0.7017301038062284], + [0.723121876201461,0.8896116878123799,0.6971780084582853], + [0.7184467512495194,0.8876432141484044,0.6926259131103422], + [0.7137716262975778,0.8856747404844291,0.6880738177623991], + [0.7090965013456363,0.8837062668204536,0.683521722414456], + [0.7044213763936947,0.8817377931564783,0.6789696270665129], + [0.6997462514417532,0.8797693194925028,0.6744175317185698], + [0.6950711264898117,0.8778008458285275,0.6698654363706267], + [0.6903960015378701,0.8758323721645521,0.6653133410226836], + [0.6857208765859285,0.8738638985005767,0.6607612456747405], + [0.681045751633987,0.8718954248366013,0.6562091503267974], + [0.6763706266820454,0.8699269511726259,0.6516570549788543], + [0.6716955017301038,0.8679584775086505,0.6471049596309112], + [0.6670203767781623,0.8659900038446751,0.6425528642829681], + [0.6623452518262207,0.8640215301806997,0.638000768935025], + [0.6576701268742792,0.8620530565167244,0.6334486735870819], + [0.6529950019223376,0.8600845828527489,0.6288965782391387], + [0.648319876970396,0.8581161091887736,0.6243444828911957], + [0.6436447520184544,0.8561476355247981,0.6197923875432525], + [0.6389696270665128,0.8541791618608228,0.6152402921953095], + [0.6342945021145713,0.8522106881968473,0.6106881968473663], + [0.6292964244521337,0.8500115340253749,0.6061361014994232], + [0.623760092272203,0.8474279123414071,0.6015840061514801], + [0.6182237600922723,0.8448442906574395,0.5970319108035371], + [0.6126874279123414,0.8422606689734717,0.5924798154555939], + [0.6071510957324106,0.839677047289504,0.5879277201076508], + [0.6016147635524798,0.8370934256055363,0.5833756247597077], + [0.596078431372549,0.8345098039215686,0.5788235294117646], + [0.5905420991926182,0.831926182237601,0.5742714340638215], + [0.5850057670126874,0.8293425605536332,0.5697193387158784], + [0.5794694348327566,0.8267589388696656,0.5651672433679353], + [0.5739331026528259,0.8241753171856978,0.5606151480199923], + [0.568396770472895,0.8215916955017301,0.5560630526720491], + [0.5628604382929643,0.8190080738177624,0.551510957324106], + [0.5573241061130334,0.8164244521337947,0.546958861976163], + [0.5517877739331026,0.813840830449827,0.5424067666282198], + [0.5462514417531719,0.8112572087658593,0.5378546712802768], + [0.5407151095732411,0.8086735870818916,0.5333025759323338], + [0.5351787773933102,0.8060899653979239,0.5287504805843906], + [0.5296424452133796,0.8035063437139562,0.5241983852364476], + [0.5241061130334487,0.8009227220299885,0.5196462898885044], + [0.5185697808535179,0.7983391003460207,0.5150941945405614], + [0.513033448673587,0.7957554786620531,0.5105420991926182], + [0.5074971164936563,0.7931718569780853,0.5059900038446752], + [0.5019607843137255,0.7905882352941177,0.501437908496732], + [0.4964244521337947,0.78800461361015,0.49688581314878894], + [0.4908881199538639,0.7854209919261823,0.49233371780084584], + [0.4853517877739332,0.7828373702422146,0.4877816224529028], + [0.4798154555940023,0.7802537485582468,0.48322952710495964], + [0.4742791234140715,0.7776701268742792,0.47867743175701655], + [0.46874279123414075,0.7750865051903114,0.47412533640907345], + [0.46320645905420993,0.7725028835063438,0.46957324106113035], + [0.4576701268742791,0.769919261822376,0.46502114571318726], + [0.45176470588235296,0.7670895809304115,0.4612072279892349], + [0.4454901960784314,0.7640138408304499,0.4581314878892734], + [0.4392156862745098,0.7609381007304883,0.45505574778931185], + [0.4329411764705882,0.7578623606305268,0.45198000768935026], + [0.42666666666666686,0.7547866205305653,0.4489042675893888], + [0.4203921568627451,0.7517108804306036,0.44582852748942714], + [0.41411764705882353,0.748635140330642,0.4427527873894656], + [0.40784313725490196,0.7455594002306806,0.4396770472895041], + [0.4015686274509804,0.742483660130719,0.4366013071895425], + [0.3952941176470588,0.7394079200307574,0.43352556708958095], + [0.38901960784313727,0.7363321799307958,0.43044982698961937], + [0.3827450980392157,0.7332564398308343,0.42737408688965783], + [0.3764705882352941,0.7301806997308727,0.42429834678969625], + [0.37019607843137253,0.7271049596309112,0.4212226066897347], + [0.36392156862745095,0.7240292195309497,0.4181468665897732], + [0.35764705882352943,0.7209534794309881,0.4150711264898116], + [0.3513725490196078,0.7178777393310265,0.41199538638985006], + [0.34509803921568627,0.7148019992310649,0.4089196462898885], + [0.3388235294117647,0.7117262591311034,0.40584390618992694], + [0.3325490196078431,0.7086505190311418,0.4027681660899654], + [0.3262745098039217,0.7055747789311804,0.39969242599000393], + [0.31999999999999995,0.7024990388312188,0.3966166858900423], + [0.3137254901960784,0.6994232987312572,0.3935409457900807], + [0.30745098039215685,0.6963475586312956,0.39046520569011917], + [0.30117647058823527,0.693271818531334,0.38738946559015763], + [0.2949019607843137,0.6901960784313725,0.38431372549019605], + [0.2886274509803921,0.687120338331411,0.3812379853902345], + [0.2823529411764706,0.6840445982314494,0.378162245290273], + [0.276078431372549,0.6809688581314879,0.3750865051903114], + [0.2698039215686274,0.6778931180315263,0.37201076509034986], + [0.26352941176470585,0.6748173779315647,0.36893502499038827], + [0.25725490196078427,0.6717416378316032,0.36585928489042674], + [0.25259515570934254,0.6681276432141483,0.3628604382929642], + [0.2489042675893887,0.6641906958861976,0.35990772779700114], + [0.2452133794694348,0.6602537485582468,0.35695501730103807], + [0.24152249134948095,0.656316801230296,0.35400230680507494], + [0.2378316032295272,0.6523798539023453,0.3510495963091119], + [0.23414071510957324,0.6484429065743944,0.3480968858131488], + [0.23044982698961936,0.6445059592464436,0.34514417531718566], + [0.2267589388696655,0.6405690119184928,0.3421914648212226], + [0.22306805074971164,0.636632064590542,0.3392387543252595], + [0.2193771626297578,0.6326951172625913,0.3362860438292964], + [0.21568627450980393,0.6287581699346405,0.3333333333333333], + [0.21199538638985005,0.6248212226066897,0.33038062283737024], + [0.2083044982698962,0.6208842752787389,0.3274279123414071], + [0.20461361014994234,0.6169473279507881,0.32447520184544404], + [0.20092272202998845,0.6130103806228373,0.32152249134948097], + [0.1972318339100346,0.6090734332948865,0.31856978085351784], + [0.19354094579008074,0.6051364859669357,0.31561707035755476], + [0.18985005767012686,0.601199538638985,0.3126643598615917], + [0.186159169550173,0.5972625913110342,0.30971164936562856], + [0.18246828143021915,0.5933256439830834,0.3067589388696655], + [0.17877739331026538,0.5893886966551327,0.30380622837370247], + [0.17508650519031144,0.5854517493271818,0.3008535178777393], + [0.17139561707035755,0.581514801999231,0.2979008073817762], + [0.1677047289504037,0.5775778546712802,0.29494809688581314], + [0.16401384083044984,0.5736409073433294,0.29199538638985], + [0.16032295271049596,0.5697039600153786,0.28904267589388694], + [0.1566320645905421,0.5657670126874279,0.28608996539792386], + [0.15294117647058825,0.5618300653594771,0.28313725490196073], + [0.14925028835063436,0.5578931180315263,0.28018454440599766], + [0.1455594002306805,0.5539561707035755,0.2772318339100346], + [0.14186851211072665,0.5500192233756247,0.27427912341407146], + [0.13817762399077277,0.5460822760476739,0.2713264129181084], + [0.1340253748558247,0.5423298731257208,0.26828143021914647], + [0.1297193387158785,0.538638985005767,0.26520569011918493], + [0.12541330257593233,0.5349480968858131,0.26212995001922335], + [0.12110726643598617,0.5312572087658592,0.2590542099192618], + [0.11680123029604011,0.5275663206459055,0.25597846981930034], + [0.11249519415609383,0.5238754325259515,0.2529027297193387], + [0.10818915801614765,0.5201845444059976,0.24982698961937716], + [0.10388312187620147,0.5164936562860438,0.2467512495194156], + [0.09957708573625529,0.5128027681660899,0.24367550941945404], + [0.09527104959630911,0.5091118800461361,0.24059976931949248], + [0.09096501345636294,0.5054209919261822,0.23752402921953092], + [0.08665897731641677,0.5017301038062283,0.2344482891195694], + [0.0823529411764706,0.49803921568627446,0.23137254901960783], + [0.07804690503652442,0.49434832756632063,0.22829680891964627], + [0.07374086889657824,0.49065743944636675,0.22522106881968473], + [0.06943483275663206,0.48696655132641287,0.22214532871972317], + [0.0651287966166859,0.48327566320645904,0.2190695886197616], + [0.06082276047673972,0.47958477508650516,0.21599384851980008], + [0.05651672433679354,0.47589388696655127,0.21291810841983852], + [0.05221068819684736,0.47220299884659744,0.20984236831987696], + [0.04790465205690131,0.46851211072664367,0.20676662821991548], + [0.04359861591695502,0.4648212226066897,0.20369088811995384], + [0.03929257977700884,0.46113033448673585,0.2006151480199923], + [0.034986543637062675,0.45743944636678197,0.19753940792003075], + [0.030680507497116496,0.45374855824682814,0.19446366782006919], + [0.026374471357170318,0.45005767012687425,0.19138792772010765], + [0.02206843521722414,0.44636678200692037,0.1883121876201461], + [0.017762399077277974,0.44267589388696654,0.18523644752018453], + [0.013456362937331795,0.43898500576701266,0.182160707420223], + [0.009150326797385616,0.43529411764705883,0.1790849673202614], + [0.004844290657439437,0.43160322952710495,0.17600922722029988], + [0.0005382545174932585,0.42791234140715106,0.17293348712033835], + [0.0,0.42303729334871204,0.170718954248366], + [0.0,0.41799307958477505,0.16862745098039217], + [0.0,0.4129488658208381,0.1665359477124183], + [0.0,0.4079046520569012,0.16444444444444445], + [0.0,0.40286043829296436,0.16235294117647064], + [0.0,0.39781622452902726,0.16026143790849673], + [0.0,0.39277201076509033,0.15816993464052287], + [0.0,0.3877277970011534,0.156078431372549], + [0.0,0.38268358323721646,0.15398692810457515], + [0.0,0.3776393694732795,0.1518954248366013], + [0.0,0.37259515570934254,0.14980392156862746], + [0.0,0.3675509419454056,0.1477124183006536], + [0.0,0.3625067281814687,0.14562091503267974], + [0.0,0.3574625144175317,0.14352941176470588], + [0.0,0.35241830065359475,0.14143790849673202], + [0.0,0.3473740868896578,0.13934640522875816], + [0.0,0.3423298731257209,0.13725490196078433], + [0.0,0.3372856593617839,0.13516339869281047], + [0.0,0.33224144559784696,0.1330718954248366], + [0.0,0.32719723183391003,0.13098039215686275], + [0.0,0.3221530180699732,0.12888888888888894], + [0.0,0.31710880430603616,0.12679738562091503], + [0.0,0.3120645905420992,0.12470588235294117], + [0.0,0.30702037677816224,0.12261437908496732], + [0.0,0.30197616301422525,0.12052287581699346], + [0.0,0.2969319492502883,0.11843137254901961], + [0.0,0.2918877354863514,0.11633986928104575], + [0.0,0.28684352172241445,0.1142483660130719], + [0.0,0.2817993079584775,0.11215686274509803], + [0.0,0.2767550941945406,0.11006535947712418], + [0.0,0.2717108804306036,0.10797385620915033], + [0.0,0.26666666666666666,0.10588235294117647] ], + Greens_r: [ + [0.0,0.26666666666666666,0.10588235294117647], + [0.0,0.2717108804306036,0.10797385620915033], + [0.0,0.27675509419454053,0.11006535947712418], + [0.0,0.2817993079584775,0.11215686274509803], + [0.0,0.28684352172241445,0.1142483660130719], + [0.0,0.2918877354863514,0.11633986928104575], + [0.0,0.2969319492502883,0.1184313725490196], + [0.0,0.3019761630142253,0.12052287581699346], + [0.0,0.30702037677816224,0.12261437908496732], + [0.0,0.3120645905420992,0.12470588235294117], + [0.0,0.3171088043060361,0.12679738562091503], + [0.0,0.3221530180699731,0.1288888888888889], + [0.0,0.32719723183391003,0.13098039215686275], + [0.0,0.33224144559784696,0.1330718954248366], + [0.0,0.3372856593617839,0.13516339869281047], + [0.0,0.3423298731257209,0.13725490196078433], + [0.0,0.3473740868896578,0.13934640522875816], + [0.0,0.35241830065359475,0.14143790849673202], + [0.0,0.3574625144175317,0.14352941176470588], + [0.0,0.3625067281814687,0.14562091503267974], + [0.0,0.3675509419454056,0.1477124183006536], + [0.0,0.37259515570934254,0.14980392156862746], + [0.0,0.3776393694732795,0.1518954248366013], + [0.0,0.3826835832372164,0.15398692810457515], + [0.0,0.3877277970011534,0.156078431372549], + [0.0,0.39277201076509033,0.15816993464052287], + [0.0,0.3978162245290273,0.16026143790849673], + [0.0,0.40286043829296425,0.1623529411764706], + [0.0,0.4079046520569012,0.16444444444444445], + [0.0,0.4129488658208381,0.1665359477124183], + [0.0,0.41799307958477505,0.16862745098039217], + [0.0,0.423037293348712,0.17071895424836603], + [0.0005382545174932718,0.42791234140715106,0.17293348712033832], + [0.0048442906574394165,0.4316032295271049,0.17600922722029985], + [0.009150326797385621,0.4352941176470588,0.17908496732026144], + [0.013456362937331797,0.43898500576701266,0.182160707420223], + [0.017762399077277974,0.44267589388696654,0.18523644752018453], + [0.022068435217224118,0.44636678200692037,0.18831218762014607], + [0.026374471357170325,0.45005767012687425,0.19138792772010765], + [0.030680507497116496,0.45374855824682814,0.19446366782006919], + [0.03498654363706267,0.45743944636678197,0.19753940792003075], + [0.03929257977700881,0.4611303344867358,0.20061514801999228], + [0.04359861591695502,0.4648212226066897,0.20369088811995387], + [0.04790465205690119,0.46851211072664356,0.2067666282199154], + [0.05221068819684737,0.47220299884659744,0.20984236831987696], + [0.056516724336793514,0.47589388696655127,0.2129181084198385], + [0.06082276047673972,0.47958477508650516,0.21599384851980008], + [0.0651287966166859,0.48327566320645904,0.2190695886197616], + [0.06943483275663206,0.48696655132641287,0.22214532871972317], + [0.07374086889657822,0.49065743944636675,0.2252210688196847], + [0.07804690503652442,0.49434832756632063,0.22829680891964627], + [0.08235294117647059,0.49803921568627446,0.23137254901960783], + [0.08665897731641677,0.5017301038062283,0.2344482891195694], + [0.09096501345636292,0.5054209919261822,0.23752402921953092], + [0.09527104959630912,0.5091118800461361,0.2405997693194925], + [0.09957708573625529,0.5128027681660899,0.24367550941945404], + [0.10388312187620147,0.5164936562860438,0.2467512495194156], + [0.1081891580161476,0.5201845444059976,0.2498269896193771], + [0.11249519415609381,0.5238754325259515,0.2529027297193387], + [0.11680123029603999,0.5275663206459054,0.2559784698193003], + [0.12110726643598617,0.5312572087658592,0.2590542099192618], + [0.1254133025759323,0.5349480968858131,0.26212995001922335], + [0.1297193387158785,0.5386389850057669,0.26520569011918493], + [0.1340253748558247,0.5423298731257208,0.26828143021914647], + [0.1381776239907728,0.5460822760476739,0.2713264129181084], + [0.14186851211072665,0.5500192233756247,0.2742791234140715], + [0.14555940023068045,0.5539561707035754,0.27723183391003453], + [0.1492502883506344,0.5578931180315263,0.28018454440599766], + [0.15294117647058825,0.5618300653594771,0.2831372549019608], + [0.1566320645905421,0.5657670126874279,0.28608996539792386], + [0.16032295271049596,0.5697039600153786,0.28904267589388694], + [0.16401384083044984,0.5736409073433294,0.29199538638985006], + [0.1677047289504037,0.5775778546712802,0.29494809688581314], + [0.17139561707035755,0.581514801999231,0.2979008073817762], + [0.17508650519031138,0.5854517493271818,0.3008535178777393], + [0.1787773933102653,0.5893886966551326,0.3038062283737024], + [0.18246828143021915,0.5933256439830834,0.3067589388696655], + [0.186159169550173,0.5972625913110342,0.30971164936562856], + [0.18985005767012686,0.601199538638985,0.3126643598615917], + [0.19354094579008074,0.6051364859669357,0.31561707035755476], + [0.1972318339100346,0.6090734332948865,0.31856978085351784], + [0.20092272202998845,0.6130103806228373,0.32152249134948097], + [0.20461361014994228,0.616947327950788,0.324475201845444], + [0.20830449826989617,0.6208842752787389,0.3274279123414071], + [0.21199538638985005,0.6248212226066897,0.33038062283737024], + [0.2156862745098039,0.6287581699346405,0.3333333333333333], + [0.21937716262975776,0.6326951172625912,0.3362860438292964], + [0.22306805074971164,0.636632064590542,0.3392387543252595], + [0.2267589388696655,0.6405690119184928,0.3421914648212226], + [0.23044982698961936,0.6445059592464436,0.34514417531718566], + [0.23414071510957318,0.6484429065743944,0.34809688581314874], + [0.23783160322952707,0.6523798539023452,0.35104959630911187], + [0.24152249134948095,0.656316801230296,0.35400230680507494], + [0.24521337946943483,0.6602537485582468,0.35695501730103807], + [0.24890426758938866,0.6641906958861976,0.35990772779700114], + [0.25259515570934254,0.6681276432141483,0.3628604382929642], + [0.2572549019607843,0.6717416378316032,0.36585928489042674], + [0.26352941176470585,0.6748173779315647,0.36893502499038827], + [0.26980392156862737,0.6778931180315263,0.3720107650903498], + [0.276078431372549,0.6809688581314879,0.3750865051903114], + [0.2823529411764706,0.6840445982314494,0.378162245290273], + [0.28862745098039216,0.687120338331411,0.3812379853902345], + [0.29490196078431374,0.6901960784313725,0.38431372549019605], + [0.30117647058823527,0.6932718185313341,0.38738946559015763], + [0.30745098039215685,0.6963475586312956,0.39046520569011917], + [0.3137254901960784,0.6994232987312572,0.39354094579008075], + [0.3199999999999999,0.7024990388312187,0.39661668589004223], + [0.3262745098039216,0.7055747789311803,0.3996924259900038], + [0.3325490196078431,0.7086505190311418,0.4027681660899654], + [0.3388235294117647,0.7117262591311034,0.40584390618992694], + [0.34509803921568627,0.714801999231065,0.4089196462898885], + [0.35137254901960785,0.7178777393310265,0.41199538638985006], + [0.3576470588235294,0.7209534794309881,0.4150711264898116], + [0.36392156862745095,0.7240292195309497,0.4181468665897732], + [0.3701960784313724,0.7271049596309112,0.42122260668973466], + [0.3764705882352941,0.7301806997308727,0.42429834678969625], + [0.38274509803921564,0.7332564398308343,0.42737408688965783], + [0.38901960784313727,0.7363321799307958,0.43044982698961937], + [0.3952941176470588,0.7394079200307574,0.43352556708958095], + [0.4015686274509804,0.742483660130719,0.4366013071895425], + [0.40784313725490196,0.7455594002306806,0.4396770472895041], + [0.4141176470588235,0.748635140330642,0.4427527873894656], + [0.420392156862745,0.7517108804306036,0.44582852748942714], + [0.42666666666666664,0.7547866205305652,0.44890426758938873], + [0.4329411764705882,0.7578623606305268,0.45198000768935026], + [0.4392156862745098,0.7609381007304883,0.4550557477893118], + [0.4454901960784313,0.7640138408304499,0.4581314878892734], + [0.45176470588235296,0.7670895809304115,0.4612072279892349], + [0.4576701268742791,0.769919261822376,0.46502114571318726], + [0.46320645905420993,0.7725028835063438,0.46957324106113035], + [0.4687427912341407,0.7750865051903114,0.47412533640907345], + [0.4742791234140715,0.7776701268742792,0.47867743175701655], + [0.4798154555940021,0.7802537485582468,0.48322952710495953], + [0.4853517877739331,0.7828373702422146,0.48778162245290274], + [0.4908881199538639,0.7854209919261823,0.49233371780084584], + [0.4964244521337947,0.78800461361015,0.49688581314878894], + [0.5019607843137255,0.7905882352941177,0.501437908496732], + [0.5074971164936563,0.7931718569780853,0.5059900038446751], + [0.513033448673587,0.7957554786620531,0.5105420991926182], + [0.5185697808535179,0.7983391003460207,0.5150941945405613], + [0.5241061130334487,0.8009227220299885,0.5196462898885044], + [0.5296424452133794,0.8035063437139562,0.5241983852364475], + [0.5351787773933102,0.8060899653979239,0.5287504805843906], + [0.5407151095732411,0.8086735870818916,0.5333025759323337], + [0.5462514417531719,0.8112572087658593,0.5378546712802768], + [0.5517877739331026,0.813840830449827,0.54240676662822], + [0.5573241061130334,0.8164244521337947,0.546958861976163], + [0.5628604382929643,0.8190080738177624,0.5515109573241062], + [0.5683967704728948,0.8215916955017301,0.556063052672049], + [0.5739331026528258,0.8241753171856978,0.5606151480199923], + [0.5794694348327566,0.8267589388696656,0.5651672433679353], + [0.5850057670126874,0.8293425605536332,0.5697193387158785], + [0.5905420991926182,0.831926182237601,0.5742714340638215], + [0.596078431372549,0.8345098039215686,0.5788235294117647], + [0.6016147635524798,0.8370934256055363,0.5833756247597077], + [0.6071510957324107,0.839677047289504,0.5879277201076509], + [0.6126874279123414,0.8422606689734717,0.5924798154555939], + [0.6182237600922722,0.8448442906574394,0.5970319108035371], + [0.623760092272203,0.8474279123414071,0.6015840061514801], + [0.6292964244521337,0.8500115340253749,0.6061361014994233], + [0.6342945021145713,0.8522106881968473,0.6106881968473663], + [0.6389696270665128,0.8541791618608228,0.6152402921953094], + [0.6436447520184544,0.8561476355247981,0.6197923875432525], + [0.648319876970396,0.8581161091887736,0.6243444828911956], + [0.6529950019223374,0.8600845828527489,0.6288965782391386], + [0.6576701268742791,0.8620530565167243,0.6334486735870819], + [0.6623452518262206,0.8640215301806997,0.638000768935025], + [0.6670203767781622,0.8659900038446751,0.6425528642829681], + [0.6716955017301038,0.8679584775086505,0.6471049596309112], + [0.6763706266820454,0.8699269511726259,0.6516570549788543], + [0.681045751633987,0.8718954248366013,0.6562091503267974], + [0.6857208765859285,0.8738638985005767,0.6607612456747405], + [0.6903960015378701,0.8758323721645521,0.6653133410226836], + [0.6950711264898116,0.8778008458285275,0.6698654363706267], + [0.6997462514417532,0.8797693194925028,0.6744175317185698], + [0.7044213763936947,0.8817377931564783,0.6789696270665129], + [0.7090965013456363,0.8837062668204536,0.683521722414456], + [0.7137716262975778,0.8856747404844291,0.6880738177623991], + [0.7184467512495194,0.8876432141484044,0.6926259131103422], + [0.723121876201461,0.8896116878123799,0.6971780084582853], + [0.7277970011534024,0.8915801614763552,0.7017301038062282], + [0.7324721261053441,0.8935486351403306,0.7062821991541715], + [0.7371472510572856,0.895517108804306,0.7108342945021145], + [0.7418223760092272,0.8974855824682814,0.7153863898500576], + [0.7464975009611687,0.8994540561322568,0.7199384851980007], + [0.7511726259131104,0.9014225297962322,0.7244905805459438], + [0.7558477508650518,0.9033910034602076,0.7290426758938869], + [0.7605228758169935,0.905359477124183,0.73359477124183], + [0.765198000768935,0.9073279507881584,0.7381468665897731], + [0.7698731257208766,0.9092964244521338,0.7426989619377162], + [0.7745482506728182,0.9112648981161091,0.7472510572856593], + [0.7792233756247597,0.9132333717800846,0.7518031526336024], + [0.7831603229527105,0.9148327566320645,0.7558938869665514], + [0.7868512110726643,0.9163091118800462,0.7598308342945022], + [0.7905420991926182,0.9177854671280277,0.7637677816224528], + [0.7942329873125721,0.9192618223760092,0.7677047289504036], + [0.7979238754325259,0.9207381776239907,0.7716416762783543], + [0.8016147635524798,0.9222145328719723,0.7755786236063053], + [0.8053056516724337,0.9236908881199538,0.779515570934256], + [0.8089965397923875,0.9251672433679354,0.7834525182622069], + [0.8126874279123414,0.9266435986159169,0.7873894655901577], + [0.8163783160322953,0.9281199538638985,0.7913264129181085], + [0.8200692041522492,0.9295963091118801,0.7952633602460593], + [0.823760092272203,0.9310726643598616,0.79920030757401], + [0.8274509803921569,0.9325490196078431,0.8031372549019608], + [0.8311418685121107,0.9340253748558247,0.8070742022299116], + [0.8348327566320646,0.9355017301038062,0.8110111495578624], + [0.8385236447520185,0.9369780853517877,0.8149480968858132], + [0.8422145328719723,0.9384544405997693,0.818885044213764], + [0.8459054209919262,0.9399307958477509,0.8228219915417148], + [0.8495963091118801,0.9414071510957324,0.8267589388696654], + [0.8532871972318339,0.942883506343714,0.8306958861976163], + [0.8569780853517877,0.9443598615916955,0.8346328335255669], + [0.8606689734717416,0.945836216839677,0.8385697808535179], + [0.8643598615916955,0.9473125720876586,0.8425067281814687], + [0.8680507497116494,0.9487889273356401,0.8464436755094195], + [0.8717416378316033,0.9502652825836218,0.8503806228373703], + [0.8754325259515571,0.9517416378316033,0.8543175701653211], + [0.879123414071511,0.9532179930795848,0.8582545174932719], + [0.8828143021914648,0.9546943483275664,0.8621914648212226], + [0.8865051903114187,0.9561707035755479,0.8661284121491734], + [0.8901960784313726,0.9576470588235294,0.8700653594771242], + [0.8938869665513265,0.959123414071511,0.874002306805075], + [0.8975778546712803,0.9605997693194925,0.8779392541330258], + [0.8999769319492503,0.9615378700499808,0.8806920415224914], + [0.9021914648212226,0.96239907727797,0.883275663206459], + [0.904405997693195,0.9632602845059592,0.8858592848904268], + [0.9066205305651672,0.9641214917339486,0.8884429065743945], + [0.9088350634371395,0.9649826989619377,0.891026528258362], + [0.9110495963091119,0.965843906189927,0.8936101499423299], + [0.9132641291810842,0.9667051134179162,0.8961937716262975], + [0.9154786620530565,0.9675663206459054,0.8987773933102653], + [0.9176931949250289,0.9684275278738946,0.9013610149942329], + [0.9199077277970011,0.969288735101884,0.9039446366782007], + [0.9221222606689735,0.9701499423298732,0.9065282583621684], + [0.9243367935409458,0.9710111495578624,0.9091118800461361], + [0.9265513264129182,0.9718723567858516,0.9116955017301038], + [0.9287658592848904,0.9727335640138408,0.9142791234140715], + [0.9309803921568628,0.9735947712418301,0.9168627450980392], + [0.933194925028835,0.9744559784698194,0.919446366782007], + [0.9354094579008074,0.9753171856978086,0.9220299884659746], + [0.9376239907727797,0.9761783929257978,0.9246136101499424], + [0.9398385236447521,0.977039600153787,0.92719723183391], + [0.9420530565167243,0.9779008073817763,0.9297808535178778], + [0.9442675893886966,0.9787620146097655,0.9323644752018454], + [0.946482122260669,0.9796232218377547,0.9349480968858132], + [0.9486966551326413,0.980484429065744,0.9375317185697809], + [0.9509111880046136,0.9813456362937332,0.9401153402537485], + [0.953125720876586,0.9822068435217225,0.9426989619377163], + [0.9553402537485582,0.9830680507497117,0.945282583621684], + [0.9575547866205306,0.9839292579777009,0.9478662053056517], + [0.9597693194925029,0.9847904652056901,0.9504498269896194], + [0.9619838523644753,0.9856516724336793,0.9530334486735871], + [0.9641983852364475,0.9865128796616687,0.9556170703575548], + [0.9664129181084198,0.9873740868896579,0.9582006920415225], + [0.9686274509803922,0.9882352941176471,0.9607843137254902] ], + Greys: [ + [1.0,1.0,1.0], + [0.9981545559400231,0.9981545559400231,0.9981545559400231], + [0.9963091118800461,0.9963091118800461,0.9963091118800461], + [0.9944636678200692,0.9944636678200692,0.9944636678200692], + [0.9926182237600922,0.9926182237600922,0.9926182237600922], + [0.9907727797001153,0.9907727797001153,0.9907727797001153], + [0.9889273356401385,0.9889273356401385,0.9889273356401385], + [0.9870818915801615,0.9870818915801615,0.9870818915801615], + [0.9852364475201846,0.9852364475201846,0.9852364475201846], + [0.9833910034602076,0.9833910034602076,0.9833910034602076], + [0.9815455594002307,0.9815455594002307,0.9815455594002307], + [0.9797001153402537,0.9797001153402537,0.9797001153402537], + [0.9778546712802768,0.9778546712802768,0.9778546712802768], + [0.9760092272202999,0.9760092272202999,0.9760092272202999], + [0.9741637831603229,0.9741637831603229,0.9741637831603229], + [0.972318339100346,0.972318339100346,0.972318339100346], + [0.970472895040369,0.970472895040369,0.970472895040369], + [0.9686274509803922,0.9686274509803922,0.9686274509803922], + [0.9667820069204152,0.9667820069204152,0.9667820069204152], + [0.9649365628604383,0.9649365628604383,0.9649365628604383], + [0.9630911188004614,0.9630911188004614,0.9630911188004614], + [0.9612456747404844,0.9612456747404844,0.9612456747404844], + [0.9594002306805075,0.9594002306805075,0.9594002306805075], + [0.9575547866205305,0.9575547866205305,0.9575547866205305], + [0.9557093425605536,0.9557093425605536,0.9557093425605536], + [0.9538638985005767,0.9538638985005767,0.9538638985005767], + [0.9520184544405997,0.9520184544405997,0.9520184544405997], + [0.9501730103806229,0.9501730103806229,0.9501730103806229], + [0.9483275663206459,0.9483275663206459,0.9483275663206459], + [0.946482122260669,0.946482122260669,0.946482122260669], + [0.9446366782006921,0.9446366782006921,0.9446366782006921], + [0.9427912341407151,0.9427912341407151,0.9427912341407151], + [0.9408227604767397,0.9408227604767397,0.9408227604767397], + [0.9379930795847751,0.9379930795847751,0.9379930795847751], + [0.9351633986928104,0.9351633986928104,0.9351633986928104], + [0.9323337178008458,0.9323337178008458,0.9323337178008458], + [0.9295040369088812,0.9295040369088812,0.9295040369088812], + [0.9266743560169166,0.9266743560169166,0.9266743560169166], + [0.9238446751249519,0.9238446751249519,0.9238446751249519], + [0.9210149942329873,0.9210149942329873,0.9210149942329873], + [0.9181853133410227,0.9181853133410227,0.9181853133410227], + [0.915355632449058,0.915355632449058,0.915355632449058], + [0.9125259515570934,0.9125259515570934,0.9125259515570934], + [0.9096962706651288,0.9096962706651288,0.9096962706651288], + [0.9068665897731641,0.9068665897731641,0.9068665897731641], + [0.9040369088811996,0.9040369088811996,0.9040369088811996], + [0.9012072279892349,0.9012072279892349,0.9012072279892349], + [0.8983775470972702,0.8983775470972702,0.8983775470972702], + [0.8955478662053056,0.8955478662053056,0.8955478662053056], + [0.892718185313341,0.892718185313341,0.892718185313341], + [0.8898885044213763,0.8898885044213763,0.8898885044213763], + [0.8870588235294118,0.8870588235294118,0.8870588235294118], + [0.8842291426374471,0.8842291426374471,0.8842291426374471], + [0.8813994617454826,0.8813994617454826,0.8813994617454826], + [0.8785697808535179,0.8785697808535179,0.8785697808535179], + [0.8757400999615532,0.8757400999615532,0.8757400999615532], + [0.8729104190695887,0.8729104190695887,0.8729104190695887], + [0.870080738177624,0.870080738177624,0.870080738177624], + [0.8672510572856593,0.8672510572856593,0.8672510572856593], + [0.8644213763936948,0.8644213763936948,0.8644213763936948], + [0.8615916955017301,0.8615916955017301,0.8615916955017301], + [0.8587620146097654,0.8587620146097654,0.8587620146097654], + [0.8559323337178009,0.8559323337178009,0.8559323337178009], + [0.8531026528258362,0.8531026528258362,0.8531026528258362], + [0.8501191849288735,0.8501191849288735,0.8501191849288735], + [0.8466743560169165,0.8466743560169165,0.8466743560169165], + [0.8432295271049597,0.8432295271049597,0.8432295271049597], + [0.8397846981930027,0.8397846981930027,0.8397846981930027], + [0.8363398692810458,0.8363398692810458,0.8363398692810458], + [0.8328950403690888,0.8328950403690888,0.8328950403690888], + [0.8294502114571318,0.8294502114571318,0.8294502114571318], + [0.826005382545175,0.826005382545175,0.826005382545175], + [0.822560553633218,0.822560553633218,0.822560553633218], + [0.819115724721261,0.819115724721261,0.819115724721261], + [0.8156708958093042,0.8156708958093042,0.8156708958093042], + [0.8122260668973471,0.8122260668973471,0.8122260668973471], + [0.8087812379853903,0.8087812379853903,0.8087812379853903], + [0.8053364090734333,0.8053364090734333,0.8053364090734333], + [0.8018915801614763,0.8018915801614763,0.8018915801614763], + [0.7984467512495195,0.7984467512495195,0.7984467512495195], + [0.7950019223375625,0.7950019223375625,0.7950019223375625], + [0.7915570934256055,0.7915570934256055,0.7915570934256055], + [0.7881122645136487,0.7881122645136487,0.7881122645136487], + [0.7846674356016916,0.7846674356016916,0.7846674356016916], + [0.7812226066897348,0.7812226066897348,0.7812226066897348], + [0.7777777777777778,0.7777777777777778,0.7777777777777778], + [0.7743329488658208,0.7743329488658208,0.7743329488658208], + [0.770888119953864,0.770888119953864,0.770888119953864], + [0.767443291041907,0.767443291041907,0.767443291041907], + [0.76399846212995,0.76399846212995,0.76399846212995], + [0.7605536332179932,0.7605536332179932,0.7605536332179932], + [0.7571088043060361,0.7571088043060361,0.7571088043060361], + [0.7536639753940793,0.7536639753940793,0.7536639753940793], + [0.7502191464821223,0.7502191464821223,0.7502191464821223], + [0.7467743175701653,0.7467743175701653,0.7467743175701653], + [0.7433294886582085,0.7433294886582085,0.7433294886582085], + [0.7393771626297578,0.7393771626297578,0.7393771626297578], + [0.7345790080738178,0.7345790080738178,0.7345790080738178], + [0.7297808535178778,0.7297808535178778,0.7297808535178778], + [0.7249826989619378,0.7249826989619378,0.7249826989619378], + [0.7201845444059978,0.7201845444059978,0.7201845444059978], + [0.7153863898500576,0.7153863898500576,0.7153863898500576], + [0.7105882352941176,0.7105882352941176,0.7105882352941176], + [0.7057900807381776,0.7057900807381776,0.7057900807381776], + [0.7009919261822376,0.7009919261822376,0.7009919261822376], + [0.6961937716262976,0.6961937716262976,0.6961937716262976], + [0.6913956170703577,0.6913956170703577,0.6913956170703577], + [0.6865974625144176,0.6865974625144176,0.6865974625144176], + [0.6817993079584775,0.6817993079584775,0.6817993079584775], + [0.6770011534025375,0.6770011534025375,0.6770011534025375], + [0.6722029988465975,0.6722029988465975,0.6722029988465975], + [0.6674048442906575,0.6674048442906575,0.6674048442906575], + [0.6626066897347175,0.6626066897347175,0.6626066897347175], + [0.6578085351787775,0.6578085351787775,0.6578085351787775], + [0.6530103806228374,0.6530103806228374,0.6530103806228374], + [0.6482122260668974,0.6482122260668974,0.6482122260668974], + [0.6434140715109573,0.6434140715109573,0.6434140715109573], + [0.6386159169550173,0.6386159169550173,0.6386159169550173], + [0.6338177623990773,0.6338177623990773,0.6338177623990773], + [0.6290196078431373,0.6290196078431373,0.6290196078431373], + [0.6242214532871972,0.6242214532871972,0.6242214532871972], + [0.6194232987312572,0.6194232987312572,0.6194232987312572], + [0.6146251441753172,0.6146251441753172,0.6146251441753172], + [0.6098269896193772,0.6098269896193772,0.6098269896193772], + [0.6050288350634372,0.6050288350634372,0.6050288350634372], + [0.6002306805074972,0.6002306805074972,0.6002306805074972], + [0.5954325259515572,0.5954325259515572,0.5954325259515572], + [0.590634371395617,0.590634371395617,0.590634371395617], + [0.586082276047674,0.586082276047674,0.586082276047674], + [0.5817762399077279,0.5817762399077279,0.5817762399077279], + [0.5774702037677817,0.5774702037677817,0.5774702037677817], + [0.5731641676278355,0.5731641676278355,0.5731641676278355], + [0.5688581314878894,0.5688581314878894,0.5688581314878894], + [0.5645520953479432,0.5645520953479432,0.5645520953479432], + [0.560246059207997,0.560246059207997,0.560246059207997], + [0.5559400230680508,0.5559400230680508,0.5559400230680508], + [0.5516339869281046,0.5516339869281046,0.5516339869281046], + [0.5473279507881584,0.5473279507881584,0.5473279507881584], + [0.5430219146482123,0.5430219146482123,0.5430219146482123], + [0.5387158785082661,0.5387158785082661,0.5387158785082661], + [0.5344098423683199,0.5344098423683199,0.5344098423683199], + [0.5301038062283737,0.5301038062283737,0.5301038062283737], + [0.5257977700884275,0.5257977700884275,0.5257977700884275], + [0.5214917339484814,0.5214917339484814,0.5214917339484814], + [0.5171856978085352,0.5171856978085352,0.5171856978085352], + [0.512879661668589,0.512879661668589,0.512879661668589], + [0.5085736255286428,0.5085736255286428,0.5085736255286428], + [0.5042675893886966,0.5042675893886966,0.5042675893886966], + [0.4999615532487506,0.4999615532487506,0.4999615532487506], + [0.4956555171088043,0.4956555171088043,0.4956555171088043], + [0.4913494809688581,0.4913494809688581,0.4913494809688581], + [0.48704344482891193,0.48704344482891193,0.48704344482891193], + [0.48273740868896575,0.48273740868896575,0.48273740868896575], + [0.47843137254901963,0.47843137254901963,0.47843137254901963], + [0.47412533640907345,0.47412533640907345,0.47412533640907345], + [0.46981930026912727,0.46981930026912727,0.46981930026912727], + [0.4655132641291811,0.4655132641291811,0.4655132641291811], + [0.4612072279892349,0.4612072279892349,0.4612072279892349], + [0.45690119184928873,0.45690119184928873,0.45690119184928873], + [0.45259515570934256,0.45259515570934256,0.45259515570934256], + [0.44844290657439445,0.44844290657439445,0.44844290657439445], + [0.44438292964244525,0.44438292964244525,0.44438292964244525], + [0.440322952710496,0.440322952710496,0.440322952710496], + [0.4362629757785467,0.4362629757785467,0.4362629757785467], + [0.4322029988465976,0.4322029988465976,0.4322029988465976], + [0.4281430219146482,0.4281430219146482,0.4281430219146482], + [0.424083044982699,0.424083044982699,0.424083044982699], + [0.42002306805074974,0.42002306805074974,0.42002306805074974], + [0.4159630911188005,0.4159630911188005,0.4159630911188005], + [0.4119031141868512,0.4119031141868512,0.4119031141868512], + [0.40784313725490196,0.40784313725490196,0.40784313725490196], + [0.40378316032295275,0.40378316032295275,0.40378316032295275], + [0.3997231833910035,0.3997231833910035,0.3997231833910035], + [0.39566320645905423,0.39566320645905423,0.39566320645905423], + [0.39160322952710497,0.39160322952710497,0.39160322952710497], + [0.3875432525951557,0.3875432525951557,0.3875432525951557], + [0.3834832756632065,0.3834832756632065,0.3834832756632065], + [0.37942329873125724,0.37942329873125724,0.37942329873125724], + [0.375363321799308,0.375363321799308,0.375363321799308], + [0.3713033448673587,0.3713033448673587,0.3713033448673587], + [0.36724336793540957,0.36724336793540957,0.36724336793540957], + [0.3631833910034602,0.3631833910034602,0.3631833910034602], + [0.35912341407151094,0.35912341407151094,0.35912341407151094], + [0.35506343713956173,0.35506343713956173,0.35506343713956173], + [0.35100346020761247,0.35100346020761247,0.35100346020761247], + [0.3469434832756632,0.3469434832756632,0.3469434832756632], + [0.342883506343714,0.342883506343714,0.342883506343714], + [0.33882352941176475,0.33882352941176475,0.33882352941176475], + [0.3347635524798155,0.3347635524798155,0.3347635524798155], + [0.3307035755478662,0.3307035755478662,0.3307035755478662], + [0.32664359861591696,0.32664359861591696,0.32664359861591696], + [0.3225836216839677,0.3225836216839677,0.3225836216839677], + [0.3174163783160323,0.3174163783160323,0.3174163783160323], + [0.31188004613610154,0.31188004613610154,0.31188004613610154], + [0.3063437139561707,0.3063437139561707,0.3063437139561707], + [0.30080738177623995,0.30080738177623995,0.30080738177623995], + [0.2952710495963093,0.2952710495963093,0.2952710495963093], + [0.28973471741637835,0.28973471741637835,0.28973471741637835], + [0.2841983852364475,0.2841983852364475,0.2841983852364475], + [0.27866205305651676,0.27866205305651676,0.27866205305651676], + [0.27312572087658593,0.27312572087658593,0.27312572087658593], + [0.26758938869665516,0.26758938869665516,0.26758938869665516], + [0.26205305651672434,0.26205305651672434,0.26205305651672434], + [0.25651672433679357,0.25651672433679357,0.25651672433679357], + [0.25098039215686274,0.25098039215686274,0.25098039215686274], + [0.24544405997693197,0.24544405997693197,0.24544405997693197], + [0.23990772779700117,0.23990772779700117,0.23990772779700117], + [0.23437139561707038,0.23437139561707038,0.23437139561707038], + [0.22883506343713958,0.22883506343713958,0.22883506343713958], + [0.22329873125720878,0.22329873125720878,0.22329873125720878], + [0.21776239907727798,0.21776239907727798,0.21776239907727798], + [0.2122260668973472,0.2122260668973472,0.2122260668973472], + [0.20668973471741653,0.20668973471741653,0.20668973471741653], + [0.2011534025374856,0.2011534025374856,0.2011534025374856], + [0.1956170703575548,0.1956170703575548,0.1956170703575548], + [0.190080738177624,0.190080738177624,0.190080738177624], + [0.1845444059976932,0.1845444059976932,0.1845444059976932], + [0.1790080738177624,0.1790080738177624,0.1790080738177624], + [0.1734717416378316,0.1734717416378316,0.1734717416378316], + [0.1679354094579008,0.1679354094579008,0.1679354094579008], + [0.16239907727797,0.16239907727797,0.16239907727797], + [0.1568627450980392,0.1568627450980392,0.1568627450980392], + [0.15132641291810842,0.15132641291810842,0.15132641291810842], + [0.14579008073817765,0.14579008073817765,0.14579008073817765], + [0.14111495578623606,0.14111495578623606,0.14111495578623606], + [0.13656286043829297,0.13656286043829297,0.13656286043829297], + [0.13201076509034987,0.13201076509034987,0.13201076509034987], + [0.12745866974240677,0.12745866974240677,0.12745866974240677], + [0.12290657439446381,0.12290657439446381,0.12290657439446381], + [0.11835447904652058,0.11835447904652058,0.11835447904652058], + [0.11380238369857748,0.11380238369857748,0.11380238369857748], + [0.10925028835063438,0.10925028835063438,0.10925028835063438], + [0.10469819300269129,0.10469819300269129,0.10469819300269129], + [0.10014609765474819,0.10014609765474819,0.10014609765474819], + [0.09559400230680508,0.09559400230680508,0.09559400230680508], + [0.09104190695886198,0.09104190695886198,0.09104190695886198], + [0.08648981161091888,0.08648981161091888,0.08648981161091888], + [0.08193771626297579,0.08193771626297579,0.08193771626297579], + [0.07738562091503269,0.07738562091503269,0.07738562091503269], + [0.07283352556708958,0.07283352556708958,0.07283352556708958], + [0.06828143021914648,0.06828143021914648,0.06828143021914648], + [0.06372933487120339,0.06372933487120339,0.06372933487120339], + [0.05917723952326029,0.05917723952326029,0.05917723952326029], + [0.05462514417531719,0.05462514417531719,0.05462514417531719], + [0.05007304882737422,0.05007304882737422,0.05007304882737422], + [0.045520953479431,0.045520953479431,0.045520953479431], + [0.04096885813148789,0.04096885813148789,0.04096885813148789], + [0.03641676278354479,0.03641676278354479,0.03641676278354479], + [0.03186466743560169,0.03186466743560169,0.03186466743560169], + [0.027312572087658596,0.027312572087658596,0.027312572087658596], + [0.0227604767397155,0.0227604767397155,0.0227604767397155], + [0.018208381391772388,0.018208381391772388,0.018208381391772388], + [0.013656286043829291,0.013656286043829291,0.013656286043829291], + [0.009104190695886194,0.009104190695886194,0.009104190695886194], + [0.004552095347943097,0.004552095347943097,0.004552095347943097], + [0.0,0.0,0.0] ], + Greys_r: [ + [0.0,0.0,0.0], + [0.004552095347943099,0.004552095347943099,0.004552095347943099], + [0.009104190695886197,0.009104190695886197,0.009104190695886197], + [0.013656286043829298,0.013656286043829298,0.013656286043829298], + [0.018208381391772395,0.018208381391772395,0.018208381391772395], + [0.022760476739715495,0.022760476739715495,0.022760476739715495], + [0.027312572087658596,0.027312572087658596,0.027312572087658596], + [0.03186466743560169,0.03186466743560169,0.03186466743560169], + [0.03641676278354479,0.03641676278354479,0.03641676278354479], + [0.040968858131487894,0.040968858131487894,0.040968858131487894], + [0.04552095347943099,0.04552095347943099,0.04552095347943099], + [0.05007304882737409,0.05007304882737409,0.05007304882737409], + [0.05462514417531719,0.05462514417531719,0.05462514417531719], + [0.05917723952326029,0.05917723952326029,0.05917723952326029], + [0.06372933487120339,0.06372933487120339,0.06372933487120339], + [0.06828143021914648,0.06828143021914648,0.06828143021914648], + [0.07283352556708958,0.07283352556708958,0.07283352556708958], + [0.07738562091503269,0.07738562091503269,0.07738562091503269], + [0.08193771626297579,0.08193771626297579,0.08193771626297579], + [0.08648981161091888,0.08648981161091888,0.08648981161091888], + [0.09104190695886198,0.09104190695886198,0.09104190695886198], + [0.09559400230680508,0.09559400230680508,0.09559400230680508], + [0.10014609765474818,0.10014609765474818,0.10014609765474818], + [0.10469819300269129,0.10469819300269129,0.10469819300269129], + [0.10925028835063438,0.10925028835063438,0.10925028835063438], + [0.11380238369857748,0.11380238369857748,0.11380238369857748], + [0.11835447904652058,0.11835447904652058,0.11835447904652058], + [0.12290657439446367,0.12290657439446367,0.12290657439446367], + [0.12745866974240677,0.12745866974240677,0.12745866974240677], + [0.13201076509034987,0.13201076509034987,0.13201076509034987], + [0.13656286043829297,0.13656286043829297,0.13656286043829297], + [0.14111495578623606,0.14111495578623606,0.14111495578623606], + [0.14579008073817765,0.14579008073817765,0.14579008073817765], + [0.1513264129181084,0.1513264129181084,0.1513264129181084], + [0.1568627450980392,0.1568627450980392,0.1568627450980392], + [0.16239907727797004,0.16239907727797004,0.16239907727797004], + [0.1679354094579008,0.1679354094579008,0.1679354094579008], + [0.17347174163783158,0.17347174163783158,0.17347174163783158], + [0.1790080738177624,0.1790080738177624,0.1790080738177624], + [0.18454440599769323,0.18454440599769323,0.18454440599769323], + [0.190080738177624,0.190080738177624,0.190080738177624], + [0.19561707035755477,0.19561707035755477,0.19561707035755477], + [0.2011534025374856,0.2011534025374856,0.2011534025374856], + [0.2066897347174164,0.2066897347174164,0.2066897347174164], + [0.2122260668973472,0.2122260668973472,0.2122260668973472], + [0.21776239907727796,0.21776239907727796,0.21776239907727796], + [0.22329873125720878,0.22329873125720878,0.22329873125720878], + [0.22883506343713958,0.22883506343713958,0.22883506343713958], + [0.23437139561707038,0.23437139561707038,0.23437139561707038], + [0.23990772779700115,0.23990772779700115,0.23990772779700115], + [0.24544405997693197,0.24544405997693197,0.24544405997693197], + [0.25098039215686274,0.25098039215686274,0.25098039215686274], + [0.25651672433679357,0.25651672433679357,0.25651672433679357], + [0.2620530565167243,0.2620530565167243,0.2620530565167243], + [0.26758938869665516,0.26758938869665516,0.26758938869665516], + [0.27312572087658593,0.27312572087658593,0.27312572087658593], + [0.2786620530565167,0.2786620530565167,0.2786620530565167], + [0.28419838523644747,0.28419838523644747,0.28419838523644747], + [0.28973471741637835,0.28973471741637835,0.28973471741637835], + [0.2952710495963091,0.2952710495963091,0.2952710495963091], + [0.3008073817762399,0.3008073817762399,0.3008073817762399], + [0.30634371395617066,0.30634371395617066,0.30634371395617066], + [0.31188004613610154,0.31188004613610154,0.31188004613610154], + [0.3174163783160323,0.3174163783160323,0.3174163783160323], + [0.3225836216839677,0.3225836216839677,0.3225836216839677], + [0.32664359861591696,0.32664359861591696,0.32664359861591696], + [0.33070357554786617,0.33070357554786617,0.33070357554786617], + [0.3347635524798155,0.3347635524798155,0.3347635524798155], + [0.33882352941176475,0.33882352941176475,0.33882352941176475], + [0.34288350634371395,0.34288350634371395,0.34288350634371395], + [0.3469434832756632,0.3469434832756632,0.3469434832756632], + [0.35100346020761247,0.35100346020761247,0.35100346020761247], + [0.35506343713956173,0.35506343713956173,0.35506343713956173], + [0.359123414071511,0.359123414071511,0.359123414071511], + [0.3631833910034602,0.3631833910034602,0.3631833910034602], + [0.36724336793540946,0.36724336793540946,0.36724336793540946], + [0.3713033448673587,0.3713033448673587,0.3713033448673587], + [0.375363321799308,0.375363321799308,0.375363321799308], + [0.37942329873125724,0.37942329873125724,0.37942329873125724], + [0.3834832756632065,0.3834832756632065,0.3834832756632065], + [0.3875432525951557,0.3875432525951557,0.3875432525951557], + [0.39160322952710497,0.39160322952710497,0.39160322952710497], + [0.3956632064590542,0.3956632064590542,0.3956632064590542], + [0.3997231833910035,0.3997231833910035,0.3997231833910035], + [0.4037831603229527,0.4037831603229527,0.4037831603229527], + [0.40784313725490196,0.40784313725490196,0.40784313725490196], + [0.4119031141868512,0.4119031141868512,0.4119031141868512], + [0.4159630911188005,0.4159630911188005,0.4159630911188005], + [0.42002306805074974,0.42002306805074974,0.42002306805074974], + [0.424083044982699,0.424083044982699,0.424083044982699], + [0.42814302191464815,0.42814302191464815,0.42814302191464815], + [0.43220299884659746,0.43220299884659746,0.43220299884659746], + [0.4362629757785467,0.4362629757785467,0.4362629757785467], + [0.440322952710496,0.440322952710496,0.440322952710496], + [0.4443829296424452,0.4443829296424452,0.4443829296424452], + [0.44844290657439445,0.44844290657439445,0.44844290657439445], + [0.45259515570934256,0.45259515570934256,0.45259515570934256], + [0.45690119184928873,0.45690119184928873,0.45690119184928873], + [0.46120722798923486,0.46120722798923486,0.46120722798923486], + [0.4655132641291811,0.4655132641291811,0.4655132641291811], + [0.46981930026912727,0.46981930026912727,0.46981930026912727], + [0.47412533640907345,0.47412533640907345,0.47412533640907345], + [0.47843137254901963,0.47843137254901963,0.47843137254901963], + [0.4827374086889658,0.4827374086889658,0.4827374086889658], + [0.487043444828912,0.487043444828912,0.487043444828912], + [0.49134948096885817,0.49134948096885817,0.49134948096885817], + [0.4956555171088043,0.4956555171088043,0.4956555171088043], + [0.49996155324875047,0.49996155324875047,0.49996155324875047], + [0.5042675893886966,0.5042675893886966,0.5042675893886966], + [0.5085736255286428,0.5085736255286428,0.5085736255286428], + [0.512879661668589,0.512879661668589,0.512879661668589], + [0.5171856978085352,0.5171856978085352,0.5171856978085352], + [0.5214917339484814,0.5214917339484814,0.5214917339484814], + [0.5257977700884275,0.5257977700884275,0.5257977700884275], + [0.5301038062283736,0.5301038062283736,0.5301038062283736], + [0.5344098423683199,0.5344098423683199,0.5344098423683199], + [0.5387158785082661,0.5387158785082661,0.5387158785082661], + [0.5430219146482123,0.5430219146482123,0.5430219146482123], + [0.5473279507881584,0.5473279507881584,0.5473279507881584], + [0.5516339869281046,0.5516339869281046,0.5516339869281046], + [0.5559400230680508,0.5559400230680508,0.5559400230680508], + [0.560246059207997,0.560246059207997,0.560246059207997], + [0.564552095347943,0.564552095347943,0.564552095347943], + [0.5688581314878893,0.5688581314878893,0.5688581314878893], + [0.5731641676278354,0.5731641676278354,0.5731641676278354], + [0.5774702037677817,0.5774702037677817,0.5774702037677817], + [0.5817762399077278,0.5817762399077278,0.5817762399077278], + [0.586082276047674,0.586082276047674,0.586082276047674], + [0.5906343713956171,0.5906343713956171,0.5906343713956171], + [0.5954325259515572,0.5954325259515572,0.5954325259515572], + [0.6002306805074972,0.6002306805074972,0.6002306805074972], + [0.6050288350634372,0.6050288350634372,0.6050288350634372], + [0.6098269896193771,0.6098269896193771,0.6098269896193771], + [0.6146251441753172,0.6146251441753172,0.6146251441753172], + [0.6194232987312572,0.6194232987312572,0.6194232987312572], + [0.6242214532871972,0.6242214532871972,0.6242214532871972], + [0.6290196078431373,0.6290196078431373,0.6290196078431373], + [0.6338177623990773,0.6338177623990773,0.6338177623990773], + [0.6386159169550173,0.6386159169550173,0.6386159169550173], + [0.6434140715109573,0.6434140715109573,0.6434140715109573], + [0.6482122260668973,0.6482122260668973,0.6482122260668973], + [0.6530103806228373,0.6530103806228373,0.6530103806228373], + [0.6578085351787775,0.6578085351787775,0.6578085351787775], + [0.6626066897347175,0.6626066897347175,0.6626066897347175], + [0.6674048442906575,0.6674048442906575,0.6674048442906575], + [0.6722029988465975,0.6722029988465975,0.6722029988465975], + [0.6770011534025375,0.6770011534025375,0.6770011534025375], + [0.6817993079584775,0.6817993079584775,0.6817993079584775], + [0.6865974625144174,0.6865974625144174,0.6865974625144174], + [0.6913956170703576,0.6913956170703576,0.6913956170703576], + [0.6961937716262976,0.6961937716262976,0.6961937716262976], + [0.7009919261822376,0.7009919261822376,0.7009919261822376], + [0.7057900807381776,0.7057900807381776,0.7057900807381776], + [0.7105882352941177,0.7105882352941177,0.7105882352941177], + [0.7153863898500576,0.7153863898500576,0.7153863898500576], + [0.7201845444059978,0.7201845444059978,0.7201845444059978], + [0.7249826989619378,0.7249826989619378,0.7249826989619378], + [0.7297808535178778,0.7297808535178778,0.7297808535178778], + [0.7345790080738178,0.7345790080738178,0.7345790080738178], + [0.7393771626297578,0.7393771626297578,0.7393771626297578], + [0.7433294886582084,0.7433294886582084,0.7433294886582084], + [0.7467743175701653,0.7467743175701653,0.7467743175701653], + [0.7502191464821223,0.7502191464821223,0.7502191464821223], + [0.7536639753940793,0.7536639753940793,0.7536639753940793], + [0.7571088043060361,0.7571088043060361,0.7571088043060361], + [0.7605536332179931,0.7605536332179931,0.7605536332179931], + [0.76399846212995,0.76399846212995,0.76399846212995], + [0.767443291041907,0.767443291041907,0.767443291041907], + [0.7708881199538639,0.7708881199538639,0.7708881199538639], + [0.7743329488658208,0.7743329488658208,0.7743329488658208], + [0.7777777777777778,0.7777777777777778,0.7777777777777778], + [0.7812226066897348,0.7812226066897348,0.7812226066897348], + [0.7846674356016916,0.7846674356016916,0.7846674356016916], + [0.7881122645136486,0.7881122645136486,0.7881122645136486], + [0.7915570934256055,0.7915570934256055,0.7915570934256055], + [0.7950019223375625,0.7950019223375625,0.7950019223375625], + [0.7984467512495195,0.7984467512495195,0.7984467512495195], + [0.8018915801614763,0.8018915801614763,0.8018915801614763], + [0.8053364090734333,0.8053364090734333,0.8053364090734333], + [0.8087812379853903,0.8087812379853903,0.8087812379853903], + [0.8122260668973471,0.8122260668973471,0.8122260668973471], + [0.8156708958093041,0.8156708958093041,0.8156708958093041], + [0.819115724721261,0.819115724721261,0.819115724721261], + [0.822560553633218,0.822560553633218,0.822560553633218], + [0.826005382545175,0.826005382545175,0.826005382545175], + [0.8294502114571318,0.8294502114571318,0.8294502114571318], + [0.8328950403690888,0.8328950403690888,0.8328950403690888], + [0.8363398692810458,0.8363398692810458,0.8363398692810458], + [0.8397846981930027,0.8397846981930027,0.8397846981930027], + [0.8432295271049596,0.8432295271049596,0.8432295271049596], + [0.8466743560169165,0.8466743560169165,0.8466743560169165], + [0.8501191849288735,0.8501191849288735,0.8501191849288735], + [0.8531026528258362,0.8531026528258362,0.8531026528258362], + [0.8559323337178009,0.8559323337178009,0.8559323337178009], + [0.8587620146097654,0.8587620146097654,0.8587620146097654], + [0.8615916955017301,0.8615916955017301,0.8615916955017301], + [0.8644213763936947,0.8644213763936947,0.8644213763936947], + [0.8672510572856593,0.8672510572856593,0.8672510572856593], + [0.870080738177624,0.870080738177624,0.870080738177624], + [0.8729104190695886,0.8729104190695886,0.8729104190695886], + [0.8757400999615532,0.8757400999615532,0.8757400999615532], + [0.8785697808535179,0.8785697808535179,0.8785697808535179], + [0.8813994617454824,0.8813994617454824,0.8813994617454824], + [0.8842291426374471,0.8842291426374471,0.8842291426374471], + [0.8870588235294118,0.8870588235294118,0.8870588235294118], + [0.8898885044213763,0.8898885044213763,0.8898885044213763], + [0.892718185313341,0.892718185313341,0.892718185313341], + [0.8955478662053056,0.8955478662053056,0.8955478662053056], + [0.8983775470972702,0.8983775470972702,0.8983775470972702], + [0.9012072279892349,0.9012072279892349,0.9012072279892349], + [0.9040369088811995,0.9040369088811995,0.9040369088811995], + [0.9068665897731641,0.9068665897731641,0.9068665897731641], + [0.9096962706651287,0.9096962706651287,0.9096962706651287], + [0.9125259515570934,0.9125259515570934,0.9125259515570934], + [0.915355632449058,0.915355632449058,0.915355632449058], + [0.9181853133410227,0.9181853133410227,0.9181853133410227], + [0.9210149942329873,0.9210149942329873,0.9210149942329873], + [0.9238446751249519,0.9238446751249519,0.9238446751249519], + [0.9266743560169166,0.9266743560169166,0.9266743560169166], + [0.9295040369088812,0.9295040369088812,0.9295040369088812], + [0.9323337178008458,0.9323337178008458,0.9323337178008458], + [0.9351633986928104,0.9351633986928104,0.9351633986928104], + [0.9379930795847751,0.9379930795847751,0.9379930795847751], + [0.9408227604767397,0.9408227604767397,0.9408227604767397], + [0.9427912341407151,0.9427912341407151,0.9427912341407151], + [0.9446366782006921,0.9446366782006921,0.9446366782006921], + [0.946482122260669,0.946482122260669,0.946482122260669], + [0.9483275663206459,0.9483275663206459,0.9483275663206459], + [0.9501730103806227,0.9501730103806227,0.9501730103806227], + [0.9520184544405997,0.9520184544405997,0.9520184544405997], + [0.9538638985005767,0.9538638985005767,0.9538638985005767], + [0.9557093425605536,0.9557093425605536,0.9557093425605536], + [0.9575547866205305,0.9575547866205305,0.9575547866205305], + [0.9594002306805075,0.9594002306805075,0.9594002306805075], + [0.9612456747404844,0.9612456747404844,0.9612456747404844], + [0.9630911188004614,0.9630911188004614,0.9630911188004614], + [0.9649365628604383,0.9649365628604383,0.9649365628604383], + [0.9667820069204153,0.9667820069204153,0.9667820069204153], + [0.9686274509803922,0.9686274509803922,0.9686274509803922], + [0.970472895040369,0.970472895040369,0.970472895040369], + [0.972318339100346,0.972318339100346,0.972318339100346], + [0.9741637831603229,0.9741637831603229,0.9741637831603229], + [0.9760092272202999,0.9760092272202999,0.9760092272202999], + [0.9778546712802768,0.9778546712802768,0.9778546712802768], + [0.9797001153402537,0.9797001153402537,0.9797001153402537], + [0.9815455594002307,0.9815455594002307,0.9815455594002307], + [0.9833910034602076,0.9833910034602076,0.9833910034602076], + [0.9852364475201846,0.9852364475201846,0.9852364475201846], + [0.9870818915801615,0.9870818915801615,0.9870818915801615], + [0.9889273356401385,0.9889273356401385,0.9889273356401385], + [0.9907727797001153,0.9907727797001153,0.9907727797001153], + [0.9926182237600922,0.9926182237600922,0.9926182237600922], + [0.9944636678200692,0.9944636678200692,0.9944636678200692], + [0.9963091118800461,0.9963091118800461,0.9963091118800461], + [0.9981545559400231,0.9981545559400231,0.9981545559400231], + [1.0,1.0,1.0] ], + OrRd: [ + [1.0,0.9686274509803922,0.9254901960784314], + [0.9998769703960015,0.9667820069204153,0.9210611303344868], + [0.9997539407920031,0.9649365628604383,0.9166320645905421], + [0.9996309111880046,0.9630911188004614,0.9122029988465975], + [0.9995078815840062,0.9612456747404844,0.9077739331026529], + [0.9993848519800077,0.9594002306805075,0.9033448673587082], + [0.9992618223760092,0.9575547866205305,0.8989158016147636], + [0.9991387927720108,0.9557093425605536,0.894486735870819], + [0.9990157631680123,0.9538638985005767,0.8900576701268743], + [0.9988927335640139,0.9520184544405997,0.8856286043829297], + [0.9987697039600154,0.9501730103806229,0.881199538638985], + [0.998646674356017,0.9483275663206459,0.8767704728950404], + [0.9985236447520185,0.946482122260669,0.8723414071510958], + [0.99840061514802,0.9446366782006921,0.8679123414071511], + [0.9982775855440216,0.9427912341407151,0.8634832756632065], + [0.9981545559400231,0.9409457900807382,0.8590542099192618], + [0.9980315263360247,0.9391003460207612,0.8546251441753172], + [0.9979084967320262,0.9372549019607843,0.8501960784313726], + [0.9977854671280277,0.9354094579008074,0.8457670126874279], + [0.9976624375240293,0.9335640138408304,0.8413379469434833], + [0.9975394079200308,0.9317185697808535,0.8369088811995387], + [0.9974163783160324,0.9298731257208765,0.832479815455594], + [0.9972933487120338,0.9280276816608997,0.8280507497116494], + [0.9971703191080353,0.9261822376009227,0.8236216839677047], + [0.9970472895040369,0.9243367935409458,0.8191926182237601], + [0.9969242599000384,0.9224913494809689,0.8147635524798155], + [0.99680123029604,0.9206459054209919,0.8103344867358708], + [0.9966782006920415,0.918800461361015,0.8059054209919262], + [0.996555171088043,0.916955017301038,0.8014763552479816], + [0.9964321414840446,0.9151095732410611,0.7970472895040369], + [0.9963091118800461,0.9132641291810842,0.7926182237600923], + [0.9961860822760477,0.9114186851211072,0.7881891580161476], + [0.9960630526720492,0.9094963475586313,0.7836678200692041], + [0.9959400230680507,0.9070357554786621,0.7785005767012688], + [0.9958169934640523,0.9045751633986928,0.7733333333333333], + [0.9956939638600538,0.9021145713187235,0.7681660899653979], + [0.9955709342560554,0.8996539792387543,0.7629988465974625], + [0.9954479046520569,0.897193387158785,0.7578316032295271], + [0.9953248750480584,0.8947327950788159,0.7526643598615916], + [0.99520184544406,0.8922722029988466,0.7474971164936562], + [0.9950788158400615,0.8898116109188774,0.7423298731257209], + [0.9949557862360631,0.8873510188389081,0.7371626297577855], + [0.9948327566320646,0.8848904267589389,0.7319953863898501], + [0.9947097270280661,0.8824298346789696,0.7268281430219147], + [0.9945866974240677,0.8799692425990004,0.7216608996539793], + [0.9944636678200692,0.8775086505190312,0.7164936562860439], + [0.9943406382160708,0.8750480584390619,0.7113264129181084], + [0.9942176086120723,0.8725874663590927,0.706159169550173], + [0.9940945790080739,0.8701268742791234,0.7009919261822376], + [0.9939715494040754,0.8676662821991542,0.6958246828143022], + [0.9938485198000769,0.8652056901191849,0.6906574394463668], + [0.9937254901960785,0.8627450980392157,0.6854901960784314], + [0.99360246059208,0.8602845059592464,0.6803229527104959], + [0.9934794309880816,0.8578239138792773,0.6751557093425606], + [0.9933564013840831,0.855363321799308,0.6699884659746251], + [0.9932333717800846,0.8529027297193388,0.6648212226066897], + [0.9931103421760862,0.8504421376393695,0.6596539792387544], + [0.9929873125720877,0.8479815455594003,0.654486735870819], + [0.9928642829680893,0.845520953479431,0.6493194925028836], + [0.9927412533640908,0.8430603613994618,0.6441522491349481], + [0.9926182237600923,0.8405997693194925,0.6389850057670127], + [0.9924951941560939,0.8381391772395234,0.6338177623990773], + [0.9923721645520954,0.8356785851595541,0.6286505190311419], + [0.992249134948097,0.8332179930795848,0.6234832756632065], + [0.9921568627450981,0.8306036139946175,0.6188081507112649], + [0.9921568627450981,0.827527873894656,0.6156093810073049], + [0.9921568627450981,0.8244521337946944,0.612410611303345], + [0.9921568627450981,0.8213763936947328,0.6092118415993849], + [0.9921568627450981,0.8183006535947712,0.6060130718954249], + [0.9921568627450981,0.8152249134948097,0.6028143021914648], + [0.9921568627450981,0.8121491733948482,0.5996155324875049], + [0.9921568627450981,0.8090734332948866,0.5964167627835448], + [0.9921568627450981,0.8059976931949251,0.5932179930795848], + [0.9921568627450981,0.8029219530949635,0.5900192233756247], + [0.9921568627450981,0.799846212995002,0.5868204536716648], + [0.9921568627450981,0.7967704728950403,0.5836216839677048], + [0.9921568627450981,0.7936947327950788,0.5804229142637447], + [0.9921568627450981,0.7906189926951173,0.5772241445597848], + [0.9921568627450981,0.7875432525951557,0.5740253748558247], + [0.9921568627450981,0.7844675124951942,0.5708266051518647], + [0.9921568627450981,0.7813917723952326,0.5676278354479047], + [0.9921568627450981,0.778316032295271,0.5644290657439447], + [0.9921568627450981,0.7752402921953095,0.5612302960399848], + [0.9921568627450981,0.772164552095348,0.5580315263360246], + [0.9921568627450981,0.7690888119953864,0.5548327566320647], + [0.9921568627450981,0.7660130718954248,0.5516339869281046], + [0.9921568627450981,0.7629373317954633,0.5484352172241446], + [0.9921568627450981,0.7598615916955017,0.5452364475201846], + [0.9921568627450981,0.7567858515955401,0.5420376778162246], + [0.9921568627450981,0.7537101114955786,0.5388389081122645], + [0.9921568627450981,0.7506343713956171,0.5356401384083046], + [0.9921568627450981,0.7475586312956555,0.5324413687043446], + [0.9921568627450981,0.7444828911956939,0.5292425990003845], + [0.9921568627450981,0.7414071510957324,0.5260438292964245], + [0.9921568627450981,0.7383314109957708,0.5228450595924645], + [0.9921568627450981,0.7352556708958092,0.5196462898885045], + [0.9921107266435987,0.7312110726643598,0.5156632064590543], + [0.9919876970396002,0.7255517108804306,0.5103729334871204], + [0.9918646674356018,0.7198923490965013,0.5050826605151866], + [0.9917416378316033,0.714232987312572,0.4997923875432526], + [0.9916186082276048,0.7085736255286428,0.49450211457131876], + [0.9914955786236064,0.7029142637447136,0.4892118415993849], + [0.9913725490196079,0.6972549019607843,0.483921568627451], + [0.9912495194156095,0.691595540176855,0.47863129565551715], + [0.991126489811611,0.6859361783929258,0.47334102268358325], + [0.9910034602076125,0.6802768166089965,0.4680507497116494], + [0.9908804306036141,0.6746174548250673,0.4627604767397156], + [0.9907574009996155,0.668958093041138,0.45747020376778164], + [0.990634371395617,0.6632987312572087,0.4521799307958478], + [0.9905113417916186,0.6576393694732795,0.4468896578239139], + [0.9903883121876201,0.6519800076893503,0.44159938485198], + [0.9902652825836217,0.6463206459054209,0.4363091118800462], + [0.9901422529796232,0.6406612841214917,0.43101883890811227], + [0.9900192233756248,0.6350019223375625,0.4257285659361784], + [0.9898961937716263,0.6293425605536334,0.4204382929642446], + [0.9897731641676278,0.623683198769704,0.41514801999231066], + [0.9896501345636294,0.6180238369857747,0.4098577470203768], + [0.9895271049596309,0.6123644752018454,0.4045674740484429], + [0.9894040753556325,0.6067051134179162,0.39927720107650905], + [0.989281045751634,0.6010457516339869,0.39398692810457514], + [0.9891580161476355,0.5953863898500578,0.3886966551326413], + [0.9890349865436371,0.5897270280661284,0.38340638216070744], + [0.9889119569396386,0.5840676662821993,0.3781161091887736], + [0.9887889273356402,0.57840830449827,0.3728258362168397], + [0.9886658977316417,0.5727489427143406,0.36753556324490577], + [0.9885428681276432,0.5670895809304114,0.3622452902729719], + [0.9884198385236448,0.5614302191464822,0.35695501730103807], + [0.9882968089196463,0.5557708573625529,0.3516647443291042], + [0.9874356016916571,0.550480584390619,0.34797385620915033], + [0.985836216839677,0.5455594002306805,0.3458823529411765], + [0.9842368319876971,0.540638216070742,0.3437908496732026], + [0.9826374471357171,0.5357170319108036,0.34169934640522875], + [0.9810380622837371,0.5307958477508652,0.33960784313725495], + [0.979438677431757,0.5258746635909266,0.33751633986928103], + [0.9778392925797771,0.5209534794309881,0.3354248366013072], + [0.976239907727797,0.5160322952710497,0.3333333333333333], + [0.974640522875817,0.5111111111111112,0.33124183006535945], + [0.9730411380238371,0.5061899269511726,0.3291503267973856], + [0.971441753171857,0.5012687427912341,0.32705882352941174], + [0.969842368319877,0.49634755863129565,0.3249673202614379], + [0.968242983467897,0.4914263744713572,0.322875816993464], + [0.966643598615917,0.4865051903114187,0.3207843137254902], + [0.965044213763937,0.4815840061514802,0.31869281045751635], + [0.9634448289119569,0.47666282199154175,0.3166013071895425], + [0.961845444059977,0.4717416378316032,0.31450980392156863], + [0.960246059207997,0.46682045367166475,0.31241830065359477], + [0.9586466743560169,0.4618992695117263,0.3103267973856209], + [0.957047289504037,0.45697808535178774,0.30823529411764705], + [0.955447904652057,0.45205690119184944,0.30614379084967325], + [0.9538485198000769,0.4471357170319108,0.30405228758169933], + [0.9522491349480969,0.4422145328719723,0.30196078431372547], + [0.9506497500961169,0.43729334871203385,0.2998692810457516], + [0.9490503652441369,0.4323721645520953,0.29777777777777775], + [0.9474509803921569,0.42745098039215684,0.2956862745098039], + [0.9458515955401768,0.42252979623221837,0.29359477124183003], + [0.9442522106881969,0.41760861207227984,0.2915032679738562], + [0.9426528258362168,0.41268742791234136,0.28941176470588237], + [0.9410534409842368,0.4077662437524029,0.2873202614379085], + [0.9394540561322569,0.4028450595924644,0.28522875816993465], + [0.9378546712802768,0.39792387543252594,0.2831372549019608], + [0.9354094579008074,0.39200307574009996,0.27920030757401], + [0.9324567474048443,0.38548250672818146,0.27415609381007305], + [0.9295040369088812,0.37896193771626296,0.2691118800461361], + [0.9265513264129182,0.37244136870434447,0.26406766628219913], + [0.9235986159169551,0.36592079969242614,0.25902345251826236], + [0.9206459054209919,0.35940023068050747,0.25397923875432526], + [0.9176931949250289,0.352879661668589,0.2489350249903883], + [0.9147404844290657,0.3463590926566705,0.24389081122645137], + [0.9117877739331026,0.339838523644752,0.2388465974625144], + [0.9088350634371396,0.33331795463283354,0.23380238369857748], + [0.9058823529411765,0.32679738562091504,0.22875816993464054], + [0.9029296424452133,0.32027681660899654,0.22371395617070358], + [0.8999769319492503,0.31375624759707804,0.21866974240676662], + [0.8970242214532872,0.30723567858515954,0.2136255286428297], + [0.8940715109573241,0.30071510957324105,0.20858131487889275], + [0.891118800461361,0.29419454056132255,0.2035371011149558], + [0.8881660899653979,0.28767397154940405,0.19849288735101883], + [0.8852133794694348,0.28115340253748555,0.1934486735870819], + [0.8822606689734718,0.27463283352556705,0.18840445982314494], + [0.8793079584775086,0.26811226451364856,0.183360246059208], + [0.8763552479815456,0.2615916955017303,0.1783160322952712], + [0.8734025374855825,0.25507112648981156,0.1732718185313341], + [0.8704498269896194,0.2485505574778931,0.16822760476739718], + [0.8674971164936562,0.24202998846597462,0.16318339100346022], + [0.8645444059976932,0.23550941945405612,0.15813917723952325], + [0.8615916955017301,0.22898885044213763,0.15309496347558632], + [0.858638985005767,0.22246828143021913,0.14805074971164936], + [0.855686274509804,0.21594771241830063,0.14300653594771243], + [0.8527335640138408,0.20942714340638216,0.13796232218377547], + [0.8497808535178777,0.20290657439446366,0.13291810841983853], + [0.8468281430219147,0.19638600538254516,0.12787389465590157], + [0.8438754325259515,0.18986543637062667,0.12282968089196464], + [0.8398154555940023,0.18380622837370242,0.11870818915801615], + [0.8353863898500576,0.17790080738177624,0.11489427143406382], + [0.830957324106113,0.17199538638985007,0.11108035371011149], + [0.8265282583621684,0.16608996539792387,0.10726643598615918], + [0.8220991926182238,0.16018454440599786,0.10345251826220694], + [0.8176701268742791,0.15427912341407152,0.09963860053825452], + [0.8132410611303345,0.14837370242214531,0.09582468281430219], + [0.8088119953863898,0.14246828143021914,0.09201076509034986], + [0.8043829296424452,0.13656286043829297,0.08819684736639753], + [0.7999538638985005,0.13065743944636676,0.0843829296424452], + [0.7955247981545559,0.12475201845444059,0.08056901191849289], + [0.7910957324106113,0.11884659746251441,0.07675509419454056], + [0.7866666666666666,0.11294117647058823,0.07294117647058823], + [0.782237600922722,0.10703575547866205,0.0691272587466359], + [0.7778085351787773,0.10113033448673586,0.06531334102268357], + [0.7733794694348327,0.09522491349480969,0.06149942329873125], + [0.7689504036908881,0.0893194925028835,0.05768550557477893], + [0.7645213379469434,0.08341407151095732,0.0538715878508266], + [0.7600922722029988,0.07750865051903114,0.050057670126874274], + [0.7556632064590542,0.07160322952710496,0.046243752402921945], + [0.7512341407151096,0.06569780853517894,0.04242983467896973], + [0.7468050749711649,0.059792387543252584,0.0386159169550173], + [0.7423760092272202,0.05388696655132641,0.03480199923106497], + [0.7379469434832756,0.047981545559400235,0.030988081507112644], + [0.733517877739331,0.04207612456747403,0.027174163783160316], + [0.7290888119953863,0.03617070357554786,0.023360246059208], + [0.7246597462514417,0.030265282583621683,0.019546328335255672], + [0.7202306805074971,0.02435986159169551,0.015732410611303344], + [0.7158016147635524,0.018454440599769306,0.011918492887351015], + [0.7113725490196078,0.012549019607843132,0.008104575163398686], + [0.7069434832756631,0.006643598615916957,0.0042906574394463715], + [0.7025144175317185,0.0007381776239907822,0.0004767397154940428], + [0.6963629373317954,0.0,0.0], + [0.6899653979238753,0.0,0.0], + [0.6835678585159554,0.0,0.0], + [0.6771703191080354,0.0,0.0], + [0.6707727797001155,0.0,0.0], + [0.6643752402921953,0.0,0.0], + [0.6579777008842752,0.0,0.0], + [0.6515801614763552,0.0,0.0], + [0.6451826220684351,0.0,0.0], + [0.6387850826605151,0.0,0.0], + [0.6323875432525952,0.0,0.0], + [0.6259900038446751,0.0,0.0], + [0.6195924644367551,0.0,0.0], + [0.613194925028835,0.0,0.0], + [0.606797385620915,0.0,0.0], + [0.600399846212995,0.0,0.0], + [0.5940023068050749,0.0,0.0], + [0.587604767397155,0.0,0.0], + [0.5812072279892349,0.0,0.0], + [0.5748096885813149,0.0,0.0], + [0.568412149173395,0.0,0.0], + [0.5620146097654748,0.0,0.0], + [0.5556170703575548,0.0,0.0], + [0.5492195309496347,0.0,0.0], + [0.5428219915417147,0.0,0.0], + [0.5364244521337946,0.0,0.0], + [0.5300269127258747,0.0,0.0], + [0.5236293733179547,0.0,0.0], + [0.5172318339100346,0.0,0.0], + [0.5108342945021146,0.0,0.0], + [0.5044367550941946,0.0,0.0], + [0.4980392156862745,0.0,0.0] ], + OrRd_r: [ + [0.4980392156862745,0.0,0.0], + [0.5044367550941945,0.0,0.0], + [0.5108342945021146,0.0,0.0], + [0.5172318339100346,0.0,0.0], + [0.5236293733179547,0.0,0.0], + [0.5300269127258747,0.0,0.0], + [0.5364244521337946,0.0,0.0], + [0.5428219915417147,0.0,0.0], + [0.5492195309496347,0.0,0.0], + [0.5556170703575548,0.0,0.0], + [0.5620146097654748,0.0,0.0], + [0.5684121491733949,0.0,0.0], + [0.5748096885813149,0.0,0.0], + [0.5812072279892349,0.0,0.0], + [0.587604767397155,0.0,0.0], + [0.5940023068050749,0.0,0.0], + [0.600399846212995,0.0,0.0], + [0.606797385620915,0.0,0.0], + [0.613194925028835,0.0,0.0], + [0.6195924644367551,0.0,0.0], + [0.6259900038446751,0.0,0.0], + [0.6323875432525952,0.0,0.0], + [0.6387850826605151,0.0,0.0], + [0.6451826220684351,0.0,0.0], + [0.6515801614763552,0.0,0.0], + [0.6579777008842752,0.0,0.0], + [0.6643752402921953,0.0,0.0], + [0.6707727797001153,0.0,0.0], + [0.6771703191080354,0.0,0.0], + [0.6835678585159554,0.0,0.0], + [0.6899653979238753,0.0,0.0], + [0.6963629373317954,0.0,0.0], + [0.7025144175317185,0.0007381776239907728,0.00047673971549404076], + [0.7069434832756631,0.006643598615916913,0.004290657439446339], + [0.7113725490196078,0.012549019607843137,0.008104575163398693], + [0.7158016147635524,0.01845444059976932,0.011918492887351018], + [0.7202306805074971,0.024359861591695505,0.015732410611303347], + [0.7246597462514417,0.030265282583621645,0.019546328335255644], + [0.7290888119953863,0.036170703575547865,0.023360246059207997], + [0.733517877739331,0.04207612456747405,0.027174163783160322], + [0.7379469434832756,0.04798154555940023,0.030988081507112648], + [0.7423760092272202,0.05388696655132637,0.034801999231064945], + [0.7468050749711649,0.05979238754325259,0.0386159169550173], + [0.7512341407151095,0.06569780853517877,0.04242983467896962], + [0.7556632064590542,0.07160322952710496,0.04624375240292195], + [0.7600922722029988,0.0775086505190311,0.050057670126874246], + [0.7645213379469434,0.08341407151095732,0.0538715878508266], + [0.7689504036908881,0.0893194925028835,0.05768550557477893], + [0.7733794694348327,0.09522491349480969,0.06149942329873125], + [0.7778085351787773,0.10113033448673582,0.06531334102268355], + [0.782237600922722,0.10703575547866205,0.0691272587466359], + [0.7866666666666666,0.11294117647058823,0.07294117647058823], + [0.7910957324106113,0.11884659746251441,0.07675509419454056], + [0.7955247981545559,0.12475201845444055,0.08056901191849286], + [0.7999538638985005,0.13065743944636676,0.0843829296424452], + [0.8043829296424452,0.13656286043829297,0.08819684736639753], + [0.8088119953863898,0.14246828143021914,0.09201076509034986], + [0.8132410611303345,0.1483737024221453,0.09582468281430216], + [0.8176701268742791,0.15427912341407152,0.09963860053825452], + [0.8220991926182237,0.1601845444059977,0.10345251826220683], + [0.8265282583621684,0.16608996539792387,0.10726643598615916], + [0.830957324106113,0.17199538638985,0.11108035371011146], + [0.8353863898500576,0.17790080738177624,0.11489427143406382], + [0.8398154555940023,0.18380622837370242,0.11870818915801615], + [0.8438754325259515,0.18986543637062667,0.12282968089196462], + [0.8468281430219147,0.19638600538254516,0.12787389465590157], + [0.8497808535178777,0.20290657439446358,0.13291810841983845], + [0.8527335640138408,0.20942714340638216,0.13796232218377547], + [0.855686274509804,0.21594771241830066,0.1430065359477124], + [0.858638985005767,0.22246828143021913,0.14805074971164936], + [0.8615916955017301,0.22898885044213763,0.15309496347558632], + [0.8645444059976932,0.23550941945405612,0.15813917723952325], + [0.8674971164936562,0.24202998846597462,0.16318339100346022], + [0.8704498269896194,0.24855055747789312,0.16822760476739715], + [0.8734025374855824,0.2550711264898115,0.17327181853133403], + [0.8763552479815455,0.2615916955017301,0.17831603229527104], + [0.8793079584775086,0.2681122645136486,0.18336024605920798], + [0.8822606689734718,0.2746328335255671,0.18840445982314494], + [0.8852133794694348,0.28115340253748555,0.1934486735870819], + [0.8881660899653979,0.28767397154940405,0.19849288735101883], + [0.891118800461361,0.29419454056132255,0.20353710111495577], + [0.8940715109573241,0.30071510957324105,0.2085813148788927], + [0.8970242214532872,0.30723567858515943,0.21362552864282958], + [0.8999769319492503,0.313756247597078,0.21866974240676662], + [0.9029296424452133,0.32027681660899654,0.22371395617070355], + [0.9058823529411765,0.326797385620915,0.2287581699346405], + [0.9088350634371396,0.33331795463283354,0.23380238369857745], + [0.9117877739331026,0.339838523644752,0.2388465974625144], + [0.9147404844290657,0.3463590926566705,0.24389081122645134], + [0.9176931949250289,0.352879661668589,0.24893502499038828], + [0.9206459054209919,0.3594002306805074,0.25397923875432515], + [0.923598615916955,0.36592079969242597,0.2590234525182622], + [0.9265513264129182,0.37244136870434447,0.26406766628219913], + [0.9295040369088812,0.37896193771626296,0.26911188004613606], + [0.9324567474048443,0.3854825067281814,0.274156093810073], + [0.9354094579008074,0.39200307574009996,0.27920030757401], + [0.9378546712802768,0.39792387543252594,0.2831372549019608], + [0.9394540561322569,0.4028450595924644,0.28522875816993465], + [0.9410534409842368,0.40776624375240283,0.28732026143790845], + [0.9426528258362168,0.41268742791234136,0.28941176470588237], + [0.9442522106881969,0.4176086120722799,0.29150326797385623], + [0.9458515955401768,0.42252979623221837,0.2935947712418301], + [0.9474509803921569,0.42745098039215684,0.2956862745098039], + [0.9490503652441369,0.4323721645520954,0.29777777777777775], + [0.9506497500961169,0.43729334871203385,0.2998692810457516], + [0.9522491349480969,0.4422145328719723,0.30196078431372547], + [0.9538485198000769,0.44713571703191074,0.30405228758169933], + [0.9554479046520569,0.45205690119184927,0.3061437908496732], + [0.957047289504037,0.4569780853517878,0.30823529411764705], + [0.9586466743560169,0.4618992695117263,0.3103267973856209], + [0.960246059207997,0.46682045367166475,0.31241830065359477], + [0.961845444059977,0.4717416378316032,0.31450980392156863], + [0.9634448289119569,0.4766628219915417,0.3166013071895425], + [0.965044213763937,0.4815840061514802,0.3186928104575163], + [0.966643598615917,0.4865051903114186,0.32078431372549016], + [0.968242983467897,0.4914263744713572,0.322875816993464], + [0.969842368319877,0.49634755863129565,0.3249673202614379], + [0.971441753171857,0.5012687427912341,0.32705882352941174], + [0.9730411380238371,0.5061899269511726,0.3291503267973856], + [0.974640522875817,0.5111111111111111,0.33124183006535945], + [0.976239907727797,0.5160322952710497,0.3333333333333333], + [0.9778392925797771,0.5209534794309881,0.3354248366013072], + [0.979438677431757,0.5258746635909265,0.337516339869281], + [0.981038062283737,0.5307958477508651,0.3396078431372549], + [0.9826374471357171,0.5357170319108036,0.34169934640522875], + [0.9842368319876971,0.540638216070742,0.3437908496732026], + [0.985836216839677,0.5455594002306805,0.3458823529411764], + [0.9874356016916571,0.550480584390619,0.34797385620915033], + [0.9882968089196463,0.5557708573625529,0.35166474432910416], + [0.9884198385236448,0.5614302191464822,0.35695501730103807], + [0.9885428681276432,0.5670895809304114,0.3622452902729719], + [0.9886658977316417,0.5727489427143406,0.36753556324490577], + [0.9887889273356402,0.5784083044982697,0.3728258362168395], + [0.9889119569396386,0.5840676662821992,0.37811610918877353], + [0.9890349865436371,0.5897270280661284,0.38340638216070744], + [0.9891580161476355,0.5953863898500577,0.3886966551326413], + [0.989281045751634,0.6010457516339869,0.39398692810457514], + [0.9894040753556325,0.6067051134179162,0.39927720107650905], + [0.9895271049596309,0.6123644752018454,0.4045674740484429], + [0.9896501345636294,0.6180238369857747,0.4098577470203768], + [0.9897731641676278,0.623683198769704,0.41514801999231066], + [0.9898961937716263,0.6293425605536332,0.4204382929642445], + [0.9900192233756248,0.6350019223375625,0.4257285659361784], + [0.9901422529796232,0.6406612841214917,0.43101883890811227], + [0.9902652825836217,0.6463206459054209,0.4363091118800462], + [0.9903883121876201,0.6519800076893503,0.44159938485198], + [0.9905113417916186,0.6576393694732795,0.4468896578239139], + [0.990634371395617,0.6632987312572087,0.4521799307958478], + [0.9907574009996155,0.6689580930411378,0.4574702037677815], + [0.9908804306036141,0.6746174548250673,0.46276047673971554], + [0.9910034602076125,0.6802768166089965,0.4680507497116494], + [0.991126489811611,0.6859361783929258,0.47334102268358325], + [0.9912495194156095,0.691595540176855,0.47863129565551715], + [0.9913725490196079,0.6972549019607843,0.48392156862745106], + [0.9914955786236064,0.7029142637447136,0.4892118415993849], + [0.9916186082276048,0.7085736255286428,0.49450211457131876], + [0.9917416378316033,0.7142329873125721,0.4997923875432526], + [0.9918646674356018,0.7198923490965013,0.5050826605151866], + [0.9919876970396002,0.7255517108804306,0.5103729334871204], + [0.9921107266435987,0.7312110726643598,0.5156632064590543], + [0.9921568627450981,0.7352556708958092,0.5196462898885045], + [0.9921568627450981,0.7383314109957708,0.5228450595924645], + [0.9921568627450981,0.7414071510957324,0.5260438292964245], + [0.9921568627450981,0.7444828911956939,0.5292425990003845], + [0.9921568627450981,0.7475586312956554,0.5324413687043444], + [0.9921568627450981,0.7506343713956171,0.5356401384083045], + [0.9921568627450981,0.7537101114955786,0.5388389081122645], + [0.9921568627450981,0.7567858515955401,0.5420376778162246], + [0.9921568627450981,0.7598615916955017,0.5452364475201846], + [0.9921568627450981,0.7629373317954633,0.5484352172241446], + [0.9921568627450981,0.7660130718954248,0.5516339869281046], + [0.9921568627450981,0.7690888119953864,0.5548327566320647], + [0.9921568627450981,0.772164552095348,0.5580315263360246], + [0.9921568627450981,0.7752402921953094,0.5612302960399846], + [0.9921568627450981,0.778316032295271,0.5644290657439447], + [0.9921568627450981,0.7813917723952326,0.5676278354479047], + [0.9921568627450981,0.7844675124951942,0.5708266051518647], + [0.9921568627450981,0.7875432525951557,0.5740253748558247], + [0.9921568627450981,0.7906189926951173,0.5772241445597848], + [0.9921568627450981,0.7936947327950788,0.5804229142637447], + [0.9921568627450981,0.7967704728950403,0.5836216839677046], + [0.9921568627450981,0.7998462129950019,0.5868204536716648], + [0.9921568627450981,0.8029219530949635,0.5900192233756247], + [0.9921568627450981,0.8059976931949251,0.5932179930795848], + [0.9921568627450981,0.8090734332948866,0.5964167627835448], + [0.9921568627450981,0.8121491733948482,0.5996155324875049], + [0.9921568627450981,0.8152249134948097,0.6028143021914648], + [0.9921568627450981,0.8183006535947712,0.6060130718954249], + [0.9921568627450981,0.8213763936947328,0.6092118415993849], + [0.9921568627450981,0.8244521337946944,0.612410611303345], + [0.9921568627450981,0.827527873894656,0.6156093810073049], + [0.9921568627450981,0.8306036139946175,0.6188081507112649], + [0.992249134948097,0.8332179930795848,0.6234832756632065], + [0.9923721645520954,0.8356785851595541,0.6286505190311419], + [0.9924951941560939,0.8381391772395232,0.6338177623990773], + [0.9926182237600923,0.8405997693194925,0.6389850057670127], + [0.9927412533640908,0.8430603613994617,0.644152249134948], + [0.9928642829680893,0.845520953479431,0.6493194925028836], + [0.9929873125720877,0.8479815455594003,0.654486735870819], + [0.9931103421760862,0.8504421376393695,0.6596539792387544], + [0.9932333717800846,0.8529027297193388,0.6648212226066897], + [0.9933564013840831,0.855363321799308,0.6699884659746251], + [0.9934794309880816,0.8578239138792773,0.6751557093425605], + [0.99360246059208,0.8602845059592464,0.6803229527104959], + [0.9937254901960785,0.8627450980392157,0.6854901960784314], + [0.9938485198000769,0.8652056901191849,0.6906574394463668], + [0.9939715494040754,0.8676662821991542,0.6958246828143022], + [0.9940945790080739,0.8701268742791234,0.7009919261822376], + [0.9942176086120723,0.8725874663590927,0.706159169550173], + [0.9943406382160708,0.8750480584390619,0.7113264129181084], + [0.9944636678200692,0.8775086505190312,0.7164936562860438], + [0.9945866974240677,0.8799692425990004,0.7216608996539793], + [0.9947097270280661,0.8824298346789695,0.7268281430219146], + [0.9948327566320646,0.8848904267589389,0.7319953863898501], + [0.9949557862360631,0.8873510188389081,0.7371626297577855], + [0.9950788158400615,0.8898116109188774,0.7423298731257209], + [0.99520184544406,0.8922722029988466,0.7474971164936562], + [0.9953248750480584,0.8947327950788159,0.7526643598615916], + [0.9954479046520569,0.897193387158785,0.7578316032295271], + [0.9955709342560554,0.8996539792387543,0.7629988465974625], + [0.9956939638600538,0.9021145713187235,0.7681660899653979], + [0.9958169934640523,0.9045751633986928,0.7733333333333333], + [0.9959400230680507,0.907035755478662,0.7785005767012687], + [0.9960630526720492,0.9094963475586313,0.7836678200692042], + [0.9961860822760477,0.9114186851211072,0.7881891580161476], + [0.9963091118800461,0.9132641291810842,0.7926182237600923], + [0.9964321414840446,0.9151095732410611,0.7970472895040369], + [0.996555171088043,0.916955017301038,0.8014763552479816], + [0.9966782006920415,0.9188004613610149,0.8059054209919261], + [0.99680123029604,0.9206459054209919,0.8103344867358708], + [0.9969242599000384,0.9224913494809689,0.8147635524798155], + [0.9970472895040369,0.9243367935409458,0.8191926182237601], + [0.9971703191080353,0.9261822376009227,0.8236216839677047], + [0.9972933487120338,0.9280276816608997,0.8280507497116494], + [0.9974163783160324,0.9298731257208765,0.832479815455594], + [0.9975394079200308,0.9317185697808535,0.8369088811995387], + [0.9976624375240293,0.9335640138408304,0.8413379469434833], + [0.9977854671280277,0.9354094579008074,0.8457670126874279], + [0.9979084967320262,0.9372549019607843,0.8501960784313726], + [0.9980315263360247,0.9391003460207612,0.8546251441753172], + [0.9981545559400231,0.9409457900807382,0.8590542099192618], + [0.9982775855440216,0.9427912341407151,0.8634832756632065], + [0.99840061514802,0.9446366782006921,0.8679123414071511], + [0.9985236447520185,0.946482122260669,0.8723414071510958], + [0.998646674356017,0.9483275663206459,0.8767704728950403], + [0.9987697039600154,0.9501730103806229,0.881199538638985], + [0.9988927335640139,0.9520184544405997,0.8856286043829297], + [0.9990157631680123,0.9538638985005767,0.8900576701268743], + [0.9991387927720108,0.9557093425605536,0.894486735870819], + [0.9992618223760092,0.9575547866205305,0.8989158016147636], + [0.9993848519800077,0.9594002306805075,0.9033448673587082], + [0.9995078815840062,0.9612456747404844,0.9077739331026529], + [0.9996309111880046,0.9630911188004614,0.9122029988465975], + [0.9997539407920031,0.9649365628604383,0.9166320645905421], + [0.9998769703960015,0.9667820069204153,0.9210611303344868], + [1.0,0.9686274509803922,0.9254901960784314] ], + Oranges: [ + [1.0,0.9607843137254902,0.9215686274509803], + [0.9998769703960015,0.9589388696655133,0.9180007689350249], + [0.9997539407920031,0.9570934256055363,0.9144329104190695], + [0.9996309111880046,0.9552479815455595,0.9108650519031142], + [0.9995078815840062,0.9534025374855825,0.9072971933871588], + [0.9993848519800077,0.9515570934256056,0.9037293348712033], + [0.9992618223760092,0.9497116493656286,0.9001614763552479], + [0.9991387927720108,0.9478662053056517,0.8965936178392926], + [0.9990157631680123,0.9460207612456748,0.8930257593233372], + [0.9988927335640139,0.9441753171856978,0.8894579008073817], + [0.9987697039600154,0.9423298731257209,0.8858900422914263], + [0.998646674356017,0.9404844290657439,0.8823221837754709], + [0.9985236447520185,0.938638985005767,0.8787543252595156], + [0.99840061514802,0.9367935409457901,0.8751864667435602], + [0.9982775855440216,0.9349480968858132,0.8716186082276047], + [0.9981545559400231,0.9331026528258363,0.8680507497116493], + [0.9980315263360247,0.9312572087658593,0.864482891195694], + [0.9979084967320262,0.9294117647058824,0.8609150326797386], + [0.9977854671280277,0.9275663206459055,0.8573471741637831], + [0.9976624375240293,0.9257208765859285,0.8537793156478277], + [0.9975394079200308,0.9238754325259516,0.8502114571318724], + [0.9974163783160324,0.9220299884659746,0.846643598615917], + [0.9972933487120338,0.9201845444059977,0.8430757400999616], + [0.9971703191080353,0.9183391003460207,0.8395078815840061], + [0.9970472895040369,0.9164936562860438,0.8359400230680507], + [0.9969242599000384,0.914648212226067,0.8323721645520954], + [0.99680123029604,0.91280276816609,0.82880430603614], + [0.9966782006920415,0.9109573241061131,0.8252364475201845], + [0.996555171088043,0.9091118800461361,0.8216685890042291], + [0.9964321414840446,0.9072664359861592,0.8181007304882737], + [0.9963091118800461,0.9054209919261823,0.8145328719723184], + [0.9961860822760477,0.9035755478662053,0.810965013456363], + [0.9960630526720492,0.9016224529027297,0.8071664744329105], + [0.9959400230680507,0.8989158016147636,0.8017531718569781], + [0.9958169934640523,0.8962091503267974,0.7963398692810457], + [0.9956939638600538,0.8935024990388313,0.7909265667051134], + [0.9955709342560554,0.8907958477508651,0.7855132641291811], + [0.9954479046520569,0.888089196462899,0.7800999615532488], + [0.9953248750480584,0.8853825451749328,0.7746866589773165], + [0.99520184544406,0.8826758938869665,0.7692733564013841], + [0.9950788158400615,0.8799692425990004,0.7638600538254517], + [0.9949557862360631,0.8772625913110342,0.7584467512495194], + [0.9948327566320646,0.874555940023068,0.7530334486735871], + [0.9947097270280661,0.8718492887351019,0.7476201460976547], + [0.9945866974240677,0.8691426374471357,0.7422068435217224], + [0.9944636678200692,0.8664359861591696,0.7367935409457901], + [0.9943406382160708,0.8637293348712034,0.7313802383698578], + [0.9942176086120723,0.8610226835832372,0.7259669357939253], + [0.9940945790080739,0.8583160322952711,0.720553633217993], + [0.9939715494040754,0.8556093810073049,0.7151403306420607], + [0.9938485198000769,0.8529027297193387,0.7097270280661284], + [0.9937254901960785,0.8501960784313726,0.7043137254901961], + [0.99360246059208,0.8474894271434064,0.6989004229142637], + [0.9934794309880816,0.8447827758554403,0.6934871203383315], + [0.9933564013840831,0.842076124567474,0.6880738177623991], + [0.9932333717800846,0.8393694732795078,0.6826605151864668], + [0.9931103421760862,0.8366628219915417,0.6772472126105344], + [0.9929873125720877,0.8339561707035755,0.6718339100346021], + [0.9928642829680893,0.8312495194156093,0.6664206074586697], + [0.9927412533640908,0.8285428681276432,0.6610073048827374], + [0.9926182237600923,0.825836216839677,0.6555940023068051], + [0.9924951941560939,0.8231295655517109,0.6501806997308728], + [0.9923721645520954,0.8204229142637447,0.6447673971549404], + [0.992249134948097,0.8177162629757786,0.639354094579008], + [0.9921568627450981,0.814640522875817,0.6336024605920799], + [0.9921568627450981,0.8104575163398693,0.6268358323721646], + [0.9921568627450981,0.8062745098039216,0.6200692041522492], + [0.9921568627450981,0.8020915032679738,0.6133025759323337], + [0.9921568627450981,0.7979084967320261,0.6065359477124183], + [0.9921568627450981,0.7937254901960784,0.5997693194925029], + [0.9921568627450981,0.7895424836601307,0.5930026912725874], + [0.9921568627450981,0.785359477124183,0.5862360630526721], + [0.9921568627450981,0.7811764705882352,0.5794694348327566], + [0.9921568627450981,0.7769934640522875,0.5727028066128412], + [0.9921568627450981,0.7728104575163399,0.5659361783929259], + [0.9921568627450981,0.7686274509803922,0.5591695501730104], + [0.9921568627450981,0.7644444444444445,0.5524029219530949], + [0.9921568627450981,0.7602614379084968,0.5456362937331796], + [0.9921568627450981,0.756078431372549,0.5388696655132641], + [0.9921568627450981,0.7518954248366013,0.5321030372933487], + [0.9921568627450981,0.7477124183006536,0.5253364090734333], + [0.9921568627450981,0.7435294117647059,0.5185697808535179], + [0.9921568627450981,0.7393464052287583,0.5118031526336025], + [0.9921568627450981,0.7351633986928104,0.5050365244136871], + [0.9921568627450981,0.7309803921568627,0.4982698961937716], + [0.9921568627450981,0.726797385620915,0.49150326797385624], + [0.9921568627450981,0.7226143790849673,0.48473663975394077], + [0.9921568627450981,0.7184313725490197,0.4779700115340254], + [0.9921568627450981,0.714248366013072,0.47120338331410994], + [0.9921568627450981,0.7100653594771242,0.4644367550941946], + [0.9921568627450981,0.7058823529411765,0.4576701268742792], + [0.9921568627450981,0.7016993464052288,0.45090349865436374], + [0.9921568627450981,0.6975163398692811,0.44413687043444827], + [0.9921568627450981,0.6933333333333334,0.4373702422145329], + [0.9921568627450981,0.6891503267973856,0.43060361399461744], + [0.9921568627450981,0.6849673202614379,0.4238369857747021], + [0.9921568627450981,0.6808304498269896,0.41743944636678204], + [0.9921568627450981,0.6767704728950404,0.4116570549788543], + [0.9921568627450981,0.6727104959630912,0.40587466359092667], + [0.9921568627450981,0.6686505190311419,0.40009227220299887], + [0.9921568627450981,0.6645905420991927,0.3943098808150711], + [0.9921568627450981,0.6605305651672434,0.38852748942714344], + [0.9921568627450981,0.6564705882352941,0.3827450980392157], + [0.9921568627450981,0.6524106113033449,0.37696270665128795], + [0.9921568627450981,0.6483506343713956,0.37118031526336026], + [0.9921568627450981,0.6442906574394464,0.3653979238754325], + [0.9921568627450981,0.6402306805074972,0.3596155324875049], + [0.9921568627450981,0.636170703575548,0.3538331410995771], + [0.9921568627450981,0.6321107266435987,0.3480507497116494], + [0.9921568627450981,0.6280507497116494,0.34226835832372166], + [0.9921568627450981,0.6239907727797002,0.3364859669357939], + [0.9921568627450981,0.6199307958477509,0.3307035755478662], + [0.9921568627450981,0.6158708189158016,0.3249211841599385], + [0.9921568627450981,0.6118108419838524,0.3191387927720108], + [0.9921568627450981,0.6077508650519032,0.31335640138408316], + [0.9921568627450981,0.6036908881199539,0.30757400999615536], + [0.9921568627450981,0.5996309111880046,0.3017916186082276], + [0.9921568627450981,0.5955709342560553,0.2960092272202999], + [0.9921568627450981,0.5915109573241062,0.2902268358323722], + [0.9921568627450981,0.5874509803921569,0.28444444444444444], + [0.9921568627450981,0.5833910034602077,0.2786620530565167], + [0.9921568627450981,0.5793310265282584,0.272879661668589], + [0.9921568627450981,0.5752710495963091,0.2670972702806614], + [0.9921568627450981,0.5712110726643599,0.2613148788927336], + [0.9921568627450981,0.5671510957324106,0.25553248750480584], + [0.9921568627450981,0.5630911188004614,0.24975009611687812], + [0.9921568627450981,0.5590311418685121,0.2439677047289504], + [0.9921568627450981,0.554971164936563,0.2381853133410227], + [0.9914186851211073,0.550726643598616,0.23277201076509035], + [0.9899423298731257,0.5462975778546713,0.2277277970011534], + [0.9884659746251442,0.5418685121107266,0.22268358323721646], + [0.9869896193771627,0.537439446366782,0.2176393694732795], + [0.9855132641291812,0.5330103806228376,0.2125951557093427], + [0.9840369088811995,0.5285813148788927,0.2075509419454056], + [0.982560553633218,0.5241522491349481,0.20250672818146867], + [0.9810841983852364,0.5197231833910034,0.1974625144175317], + [0.9796078431372549,0.5152941176470589,0.19241830065359478], + [0.9781314878892734,0.5108650519031142,0.18737408688965784], + [0.9766551326412918,0.5064359861591695,0.18232987312572088], + [0.9751787773933103,0.5020069204152249,0.17728565936178392], + [0.9737024221453288,0.4975778546712803,0.172241445597847], + [0.9722260668973471,0.49314878892733566,0.16719723183391005], + [0.9707497116493656,0.488719723183391,0.1621530180699731], + [0.9692733564013841,0.4842906574394464,0.15710880430603613], + [0.9677970011534025,0.47986159169550174,0.1520645905420992], + [0.966320645905421,0.4754325259515571,0.14702037677816224], + [0.9648442906574395,0.47100346020761247,0.14197616301422528], + [0.9633679354094579,0.46657439446366783,0.13693194925028834], + [0.9618915801614764,0.4621453287197233,0.13188773548635155], + [0.9604152249134948,0.45771626297577855,0.12684352172241448], + [0.9589388696655132,0.4532871972318339,0.12179930795847752], + [0.9574625144175317,0.4488581314878893,0.11675509419454057], + [0.9559861591695502,0.44442906574394464,0.11171088043060362], + [0.9545098039215686,0.44,0.10666666666666666], + [0.9530334486735871,0.43557093425605536,0.10162245290272973], + [0.9515570934256055,0.4311418685121107,0.09657823913879277], + [0.950080738177624,0.42671280276816603,0.09153402537485583], + [0.9486043829296424,0.4222837370242214,0.08648981161091887], + [0.9471280276816608,0.41785467128027676,0.08144559784698194], + [0.9456516724336793,0.4134256055363321,0.07640138408304498], + [0.9432525951557094,0.4092272202998846,0.07312572087658593], + [0.9402998846597462,0.4051672433679354,0.07091118800461362], + [0.9373471741637831,0.40110726643598615,0.0686966551326413], + [0.9343944636678201,0.3970472895040369,0.06648212226066898], + [0.9314417531718571,0.39298731257208774,0.06426758938869671], + [0.9284890426758938,0.38892733564013837,0.06205305651672434], + [0.9255363321799308,0.3848673587081891,0.05983852364475202], + [0.9225836216839677,0.3808073817762399,0.0576239907727797], + [0.9196309111880046,0.37674740484429065,0.05540945790080738], + [0.9166782006920415,0.3726874279123414,0.05319492502883506], + [0.9137254901960784,0.3686274509803921,0.050980392156862744], + [0.9107727797001153,0.3645674740484429,0.048765859284890425], + [0.9078200692041523,0.36050749711649366,0.046551326412918106], + [0.9048673587081891,0.3564475201845444,0.04433679354094579], + [0.901914648212226,0.35238754325259514,0.042122260668973475], + [0.898961937716263,0.3483275663206459,0.039907727797001157], + [0.8960092272202999,0.3442675893886966,0.03769319492502883], + [0.8930565167243367,0.3402076124567474,0.03547866205305651], + [0.8901038062283737,0.33614763552479815,0.03326412918108419], + [0.8871510957324106,0.3320876585928489,0.03104959630911188], + [0.8841983852364476,0.32802768166089974,0.028835063437139624], + [0.8812456747404844,0.3239677047289504,0.026620530565167243], + [0.8782929642445213,0.31990772779700116,0.024405997693194924], + [0.8753402537485582,0.3158477508650519,0.022191464821222605], + [0.8723875432525952,0.31178777393310264,0.019976931949250286], + [0.869434832756632,0.3077277970011534,0.017762399077277967], + [0.8664821222606689,0.3036678200692041,0.015547866205305648], + [0.8635294117647059,0.29960784313725486,0.013333333333333329], + [0.8605767012687427,0.29554786620530565,0.011118800461361017], + [0.8576239907727796,0.2914878892733564,0.008904267589388698], + [0.8546712802768166,0.28742791234140713,0.006689734717416379], + [0.8517185697808535,0.2833679354094579,0.00447520184544406], + [0.8462745098039215,0.28069204152249133,0.004106113033448673], + [0.84,0.278477508650519,0.0043521722414455975], + [0.8337254901960784,0.2762629757785467,0.004598231449442522], + [0.8274509803921568,0.2740484429065744,0.004844290657439446], + [0.8211764705882354,0.2718339100346021,0.005090349865436363], + [0.8149019607843138,0.26961937716262974,0.0053364090734332945], + [0.8086274509803921,0.2674048442906574,0.005582468281430219], + [0.8023529411764706,0.2651903114186851,0.005828527489427143], + [0.796078431372549,0.2629757785467128,0.006074586697424067], + [0.7898039215686274,0.26076124567474046,0.006320645905420991], + [0.7835294117647058,0.25854671280276814,0.006566705113417916], + [0.7772549019607843,0.2563321799307958,0.00681276432141484], + [0.7709803921568628,0.2541176470588235,0.007058823529411764], + [0.7647058823529411,0.2519031141868512,0.007304882737408688], + [0.7584313725490196,0.2496885813148789,0.0075509419454056126], + [0.7521568627450981,0.24747404844290657,0.007797001153402537], + [0.7458823529411764,0.24525951557093426,0.00804306036139946], + [0.7396078431372549,0.24304498269896194,0.008289119569396385], + [0.7333333333333333,0.24083044982698962,0.00853517877739331], + [0.7270588235294118,0.2386159169550173,0.008781237985390234], + [0.7207843137254903,0.23640138408304504,0.00902729719338715], + [0.7145098039215686,0.23418685121107266,0.009273356401384082], + [0.7082352941176471,0.23197231833910034,0.009519415609381007], + [0.7019607843137254,0.22975778546712802,0.00976547481737793], + [0.6956862745098039,0.2275432525951557,0.010011534025374854], + [0.6894117647058824,0.22532871972318338,0.010257593233371779], + [0.6831372549019608,0.22311418685121107,0.010503652441368702], + [0.6768627450980392,0.22089965397923875,0.010749711649365626], + [0.6705882352941177,0.21868512110726643,0.010995770857362551], + [0.6643137254901961,0.2164705882352941,0.011241830065359476], + [0.6580392156862745,0.2142560553633218,0.0114878892733564], + [0.651764705882353,0.21204152249134947,0.011733948481353323], + [0.6467820069204152,0.21014994232987314,0.011872356785851594], + [0.6419838523644752,0.2083044982698962,0.011995386389850055], + [0.6371856978085352,0.20645905420991925,0.012118415993848518], + [0.6323875432525952,0.20461361014994234,0.01224144559784698], + [0.6275893886966553,0.20276816608996545,0.01236447520184544], + [0.6227912341407151,0.20092272202998845,0.012487504805843905], + [0.6179930795847751,0.19907727797001154,0.012610534409842366], + [0.6131949250288351,0.1972318339100346,0.012733564013840829], + [0.6083967704728951,0.19538638985005768,0.012856593617839291], + [0.6035986159169551,0.19354094579008074,0.012979623221837754], + [0.5988004613610151,0.1916955017301038,0.013102652825836215], + [0.594002306805075,0.1898500576701269,0.013225682429834677], + [0.5892041522491349,0.18800461361014995,0.01334871203383314], + [0.5844059976931949,0.186159169550173,0.013471741637831602], + [0.5796078431372549,0.1843137254901961,0.013594771241830065], + [0.5748096885813149,0.18246828143021915,0.013717800845828526], + [0.5700115340253749,0.1806228373702422,0.013840830449826988], + [0.5652133794694348,0.1787773933102653,0.01396386005382545], + [0.5604152249134948,0.17693194925028835,0.014086889657823913], + [0.5556170703575548,0.17508650519031144,0.014209919261822374], + [0.5508189158016149,0.17324106113033455,0.014332948865820833], + [0.5460207612456748,0.17139561707035755,0.0144559784698193], + [0.5412226066897348,0.16955017301038064,0.014579008073817762], + [0.5364244521337947,0.1677047289504037,0.014702037677816224], + [0.5316262975778547,0.16585928489042678,0.014825067281814687], + [0.5268281430219146,0.16401384083044984,0.014948096885813148], + [0.5220299884659746,0.1621683967704729,0.01507112648981161], + [0.5172318339100346,0.16032295271049596,0.015194156093810073], + [0.5124336793540946,0.15847750865051904,0.015317185697808535], + [0.5076355247981545,0.1566320645905421,0.015440215301806996], + [0.5028373702422145,0.1547866205305652,0.015563244905805459], + [0.4980392156862745,0.15294117647058825,0.01568627450980392] ], + Oranges_r: [ + [0.4980392156862745,0.15294117647058825,0.01568627450980392], + [0.5028373702422145,0.1547866205305652,0.015563244905805459], + [0.5076355247981545,0.1566320645905421,0.015440215301806996], + [0.5124336793540946,0.15847750865051904,0.015317185697808535], + [0.5172318339100346,0.160322952710496,0.015194156093810073], + [0.5220299884659746,0.1621683967704729,0.01507112648981161], + [0.5268281430219146,0.16401384083044984,0.014948096885813148], + [0.5316262975778547,0.16585928489042676,0.014825067281814687], + [0.5364244521337947,0.1677047289504037,0.014702037677816224], + [0.5412226066897348,0.16955017301038064,0.014579008073817762], + [0.5460207612456748,0.17139561707035755,0.0144559784698193], + [0.5508189158016148,0.1732410611303345,0.014332948865820837], + [0.5556170703575548,0.17508650519031144,0.014209919261822374], + [0.5604152249134948,0.17693194925028835,0.014086889657823913], + [0.5652133794694348,0.1787773933102653,0.01396386005382545], + [0.5700115340253749,0.1806228373702422,0.013840830449826988], + [0.5748096885813149,0.18246828143021915,0.013717800845828527], + [0.5796078431372549,0.1843137254901961,0.013594771241830065], + [0.5844059976931949,0.186159169550173,0.013471741637831602], + [0.5892041522491349,0.18800461361014995,0.01334871203383314], + [0.594002306805075,0.18985005767012686,0.013225682429834677], + [0.598800461361015,0.1916955017301038,0.013102652825836215], + [0.6035986159169551,0.19354094579008074,0.012979623221837754], + [0.6083967704728951,0.19538638985005768,0.012856593617839291], + [0.6131949250288351,0.1972318339100346,0.012733564013840829], + [0.6179930795847751,0.19907727797001154,0.012610534409842366], + [0.6227912341407151,0.20092272202998845,0.012487504805843905], + [0.6275893886966551,0.2027681660899654,0.012364475201845443], + [0.6323875432525952,0.20461361014994234,0.01224144559784698], + [0.6371856978085352,0.20645905420991925,0.012118415993848518], + [0.6419838523644752,0.2083044982698962,0.011995386389850055], + [0.6467820069204152,0.2101499423298731,0.011872356785851593], + [0.6517647058823529,0.21204152249134947,0.011733948481353325], + [0.6580392156862744,0.2142560553633218,0.011487889273356401], + [0.6643137254901961,0.2164705882352941,0.011241830065359476], + [0.6705882352941177,0.21868512110726643,0.010995770857362551], + [0.6768627450980392,0.22089965397923875,0.010749711649365628], + [0.6831372549019608,0.22311418685121107,0.010503652441368704], + [0.6894117647058824,0.22532871972318338,0.010257593233371779], + [0.6956862745098039,0.2275432525951557,0.010011534025374854], + [0.7019607843137254,0.22975778546712802,0.00976547481737793], + [0.7082352941176471,0.23197231833910031,0.009519415609381007], + [0.7145098039215686,0.23418685121107266,0.009273356401384082], + [0.7207843137254902,0.23640138408304498,0.009027297193387157], + [0.7270588235294118,0.2386159169550173,0.008781237985390234], + [0.7333333333333333,0.2408304498269896,0.00853517877739331], + [0.7396078431372549,0.24304498269896194,0.008289119569396385], + [0.7458823529411764,0.24525951557093426,0.00804306036139946], + [0.7521568627450981,0.24747404844290657,0.007797001153402537], + [0.7584313725490196,0.24968858131487887,0.007550941945405614], + [0.7647058823529411,0.2519031141868512,0.007304882737408688], + [0.7709803921568628,0.2541176470588235,0.007058823529411764], + [0.7772549019607843,0.2563321799307958,0.00681276432141484], + [0.7835294117647058,0.25854671280276814,0.006566705113417917], + [0.7898039215686274,0.26076124567474046,0.006320645905420991], + [0.796078431372549,0.2629757785467128,0.006074586697424067], + [0.8023529411764706,0.2651903114186851,0.005828527489427143], + [0.8086274509803921,0.2674048442906574,0.00558246828143022], + [0.8149019607843138,0.26961937716262974,0.0053364090734332945], + [0.8211764705882353,0.27183391003460206,0.00509034986543637], + [0.8274509803921568,0.2740484429065744,0.004844290657439446], + [0.8337254901960783,0.2762629757785467,0.0045982314494425235], + [0.84,0.278477508650519,0.0043521722414455975], + [0.8462745098039215,0.28069204152249133,0.004106113033448673], + [0.8517185697808535,0.28336793540945787,0.00447520184544406], + [0.8546712802768166,0.28742791234140713,0.006689734717416378], + [0.8576239907727796,0.29148788927335634,0.008904267589388665], + [0.8605767012687427,0.29554786620530565,0.011118800461361013], + [0.8635294117647059,0.2996078431372549,0.013333333333333332], + [0.8664821222606689,0.3036678200692041,0.015547866205305651], + [0.869434832756632,0.3077277970011534,0.01776239907727797], + [0.8723875432525952,0.31178777393310264,0.01997693194925029], + [0.8753402537485582,0.3158477508650519,0.02219146482122261], + [0.8782929642445213,0.31990772779700116,0.024405997693194927], + [0.8812456747404843,0.3239677047289503,0.026620530565167215], + [0.8841983852364474,0.32802768166089963,0.02883506343713956], + [0.8871510957324106,0.3320876585928489,0.03104959630911188], + [0.8901038062283737,0.33614763552479815,0.0332641291810842], + [0.8930565167243367,0.3402076124567474,0.03547866205305652], + [0.8960092272202999,0.3442675893886966,0.03769319492502884], + [0.898961937716263,0.3483275663206459,0.03990772779700115], + [0.901914648212226,0.35238754325259514,0.04212226066897347], + [0.9048673587081891,0.35644752018454434,0.04433679354094575], + [0.9078200692041523,0.36050749711649366,0.046551326412918106], + [0.9107727797001153,0.3645674740484429,0.048765859284890425], + [0.9137254901960784,0.3686274509803921,0.050980392156862744], + [0.9166782006920415,0.3726874279123414,0.05319492502883506], + [0.9196309111880046,0.37674740484429065,0.055409457900807375], + [0.9225836216839677,0.3808073817762399,0.057623990772779694], + [0.9255363321799308,0.3848673587081891,0.05983852364475201], + [0.9284890426758938,0.3889273356401383,0.062053056516724305], + [0.931441753171857,0.39298731257208763,0.06426758938869664], + [0.9343944636678201,0.3970472895040369,0.06648212226066896], + [0.9373471741637831,0.40110726643598615,0.06869665513264128], + [0.9402998846597462,0.4051672433679354,0.0709111880046136], + [0.9432525951557094,0.4092272202998847,0.07312572087658592], + [0.9456516724336793,0.4134256055363322,0.07640138408304498], + [0.9471280276816608,0.4178546712802768,0.08144559784698192], + [0.9486043829296424,0.4222837370242214,0.0864898116109188], + [0.950080738177624,0.4267128027681661,0.09153402537485582], + [0.9515570934256056,0.4311418685121107,0.09657823913879277], + [0.9530334486735871,0.43557093425605536,0.10162245290272971], + [0.9545098039215686,0.44,0.10666666666666666], + [0.9559861591695502,0.44442906574394464,0.11171088043060362], + [0.9574625144175317,0.4488581314878893,0.11675509419454055], + [0.9589388696655132,0.4532871972318339,0.1217993079584775], + [0.9604152249134947,0.4577162629757785,0.12684352172241437], + [0.9618915801614764,0.4621453287197232,0.1318877354863514], + [0.9633679354094579,0.46657439446366783,0.13693194925028834], + [0.9648442906574395,0.47100346020761247,0.14197616301422528], + [0.966320645905421,0.4754325259515571,0.14702037677816224], + [0.9677970011534025,0.47986159169550174,0.1520645905420992], + [0.9692733564013841,0.4842906574394464,0.15710880430603613], + [0.9707497116493656,0.488719723183391,0.16215301806997306], + [0.9722260668973471,0.4931487889273356,0.16719723183390994], + [0.9737024221453288,0.4975778546712803,0.17224144559784696], + [0.9751787773933103,0.5020069204152249,0.17728565936178392], + [0.9766551326412918,0.5064359861591695,0.18232987312572085], + [0.9781314878892734,0.5108650519031142,0.1873740868896578], + [0.9796078431372549,0.5152941176470588,0.19241830065359475], + [0.9810841983852364,0.5197231833910034,0.1974625144175317], + [0.982560553633218,0.5241522491349481,0.20250672818146864], + [0.9840369088811995,0.5285813148788927,0.20755094194540552], + [0.985513264129181,0.5330103806228373,0.21259515570934256], + [0.9869896193771627,0.537439446366782,0.2176393694732795], + [0.9884659746251442,0.5418685121107267,0.22268358323721643], + [0.9899423298731257,0.5462975778546713,0.22772779700115336], + [0.9914186851211073,0.550726643598616,0.2327720107650903], + [0.9921568627450981,0.5549711649365628,0.2381853133410227], + [0.9921568627450981,0.5590311418685121,0.2439677047289504], + [0.9921568627450981,0.5630911188004614,0.24975009611687812], + [0.9921568627450981,0.5671510957324106,0.25553248750480584], + [0.9921568627450981,0.5712110726643598,0.2613148788927334], + [0.9921568627450981,0.5752710495963091,0.26709727028066127], + [0.9921568627450981,0.5793310265282584,0.272879661668589], + [0.9921568627450981,0.5833910034602077,0.2786620530565167], + [0.9921568627450981,0.5874509803921569,0.28444444444444444], + [0.9921568627450981,0.5915109573241062,0.2902268358323722], + [0.9921568627450981,0.5955709342560553,0.2960092272202999], + [0.9921568627450981,0.5996309111880046,0.3017916186082276], + [0.9921568627450981,0.6036908881199539,0.3075740099961553], + [0.9921568627450981,0.6077508650519031,0.31335640138408305], + [0.9921568627450981,0.6118108419838524,0.31913879277201074], + [0.9921568627450981,0.6158708189158016,0.3249211841599385], + [0.9921568627450981,0.6199307958477509,0.3307035755478662], + [0.9921568627450981,0.6239907727797002,0.3364859669357939], + [0.9921568627450981,0.6280507497116494,0.34226835832372166], + [0.9921568627450981,0.6321107266435987,0.3480507497116494], + [0.9921568627450981,0.6361707035755477,0.3538331410995769], + [0.9921568627450981,0.6402306805074971,0.35961553248750483], + [0.9921568627450981,0.6442906574394464,0.3653979238754326], + [0.9921568627450981,0.6483506343713956,0.37118031526336026], + [0.9921568627450981,0.6524106113033449,0.37696270665128795], + [0.9921568627450981,0.6564705882352941,0.3827450980392157], + [0.9921568627450981,0.6605305651672434,0.38852748942714344], + [0.9921568627450981,0.6645905420991927,0.3943098808150711], + [0.9921568627450981,0.6686505190311419,0.40009227220299887], + [0.9921568627450981,0.6727104959630912,0.4058746635909266], + [0.9921568627450981,0.6767704728950403,0.4116570549788543], + [0.9921568627450981,0.6808304498269897,0.417439446366782], + [0.9921568627450981,0.6849673202614379,0.423836985774702], + [0.9921568627450981,0.6891503267973856,0.43060361399461744], + [0.9921568627450981,0.6933333333333334,0.43737024221453286], + [0.9921568627450981,0.6975163398692811,0.44413687043444827], + [0.9921568627450981,0.7016993464052287,0.4509034986543635], + [0.9921568627450981,0.7058823529411765,0.4576701268742791], + [0.9921568627450981,0.7100653594771242,0.4644367550941945], + [0.9921568627450981,0.714248366013072,0.47120338331410994], + [0.9921568627450981,0.7184313725490196,0.47797001153402535], + [0.9921568627450981,0.7226143790849673,0.48473663975394077], + [0.9921568627450981,0.726797385620915,0.4915032679738562], + [0.9921568627450981,0.7309803921568627,0.4982698961937716], + [0.9921568627450981,0.7351633986928104,0.5050365244136871], + [0.9921568627450981,0.7393464052287582,0.5118031526336024], + [0.9921568627450981,0.7435294117647059,0.5185697808535179], + [0.9921568627450981,0.7477124183006536,0.5253364090734333], + [0.9921568627450981,0.7518954248366013,0.5321030372933487], + [0.9921568627450981,0.756078431372549,0.5388696655132641], + [0.9921568627450981,0.7602614379084968,0.5456362937331796], + [0.9921568627450981,0.7644444444444445,0.5524029219530949], + [0.9921568627450981,0.7686274509803921,0.5591695501730102], + [0.9921568627450981,0.7728104575163399,0.5659361783929258], + [0.9921568627450981,0.7769934640522875,0.5727028066128412], + [0.9921568627450981,0.7811764705882352,0.5794694348327566], + [0.9921568627450981,0.785359477124183,0.5862360630526721], + [0.9921568627450981,0.7895424836601307,0.5930026912725874], + [0.9921568627450981,0.7937254901960784,0.5997693194925029], + [0.9921568627450981,0.7979084967320261,0.6065359477124183], + [0.9921568627450981,0.8020915032679738,0.6133025759323337], + [0.9921568627450981,0.8062745098039216,0.6200692041522491], + [0.9921568627450981,0.8104575163398693,0.6268358323721646], + [0.9921568627450981,0.814640522875817,0.6336024605920799], + [0.992249134948097,0.8177162629757785,0.639354094579008], + [0.9923721645520954,0.8204229142637447,0.6447673971549404], + [0.9924951941560939,0.8231295655517109,0.6501806997308727], + [0.9926182237600923,0.825836216839677,0.6555940023068051], + [0.9927412533640908,0.8285428681276431,0.6610073048827372], + [0.9928642829680893,0.8312495194156094,0.6664206074586697], + [0.9929873125720877,0.8339561707035755,0.671833910034602], + [0.9931103421760862,0.8366628219915417,0.6772472126105344], + [0.9932333717800846,0.8393694732795078,0.6826605151864668], + [0.9933564013840831,0.842076124567474,0.6880738177623991], + [0.9934794309880816,0.8447827758554403,0.6934871203383314], + [0.99360246059208,0.8474894271434064,0.6989004229142637], + [0.9937254901960785,0.8501960784313726,0.7043137254901961], + [0.9938485198000769,0.8529027297193387,0.7097270280661284], + [0.9939715494040754,0.8556093810073049,0.7151403306420607], + [0.9940945790080739,0.8583160322952711,0.720553633217993], + [0.9942176086120723,0.8610226835832372,0.7259669357939253], + [0.9943406382160708,0.8637293348712034,0.7313802383698578], + [0.9944636678200692,0.8664359861591695,0.7367935409457901], + [0.9945866974240677,0.8691426374471357,0.7422068435217224], + [0.9947097270280661,0.8718492887351018,0.7476201460976546], + [0.9948327566320646,0.874555940023068,0.7530334486735871], + [0.9949557862360631,0.8772625913110342,0.7584467512495194], + [0.9950788158400615,0.8799692425990004,0.7638600538254517], + [0.99520184544406,0.8826758938869665,0.7692733564013841], + [0.9953248750480584,0.8853825451749328,0.7746866589773165], + [0.9954479046520569,0.8880891964628989,0.7800999615532488], + [0.9955709342560554,0.8907958477508651,0.7855132641291811], + [0.9956939638600538,0.8935024990388313,0.7909265667051134], + [0.9958169934640523,0.8962091503267974,0.7963398692810457], + [0.9959400230680507,0.8989158016147636,0.8017531718569781], + [0.9960630526720492,0.9016224529027297,0.8071664744329105], + [0.9961860822760477,0.9035755478662053,0.810965013456363], + [0.9963091118800461,0.9054209919261823,0.8145328719723184], + [0.9964321414840446,0.9072664359861592,0.8181007304882737], + [0.996555171088043,0.9091118800461361,0.8216685890042291], + [0.9966782006920415,0.910957324106113,0.8252364475201844], + [0.99680123029604,0.91280276816609,0.82880430603614], + [0.9969242599000384,0.914648212226067,0.8323721645520954], + [0.9970472895040369,0.9164936562860438,0.8359400230680507], + [0.9971703191080353,0.9183391003460207,0.8395078815840061], + [0.9972933487120338,0.9201845444059977,0.8430757400999616], + [0.9974163783160324,0.9220299884659746,0.846643598615917], + [0.9975394079200308,0.9238754325259516,0.8502114571318724], + [0.9976624375240293,0.9257208765859285,0.8537793156478277], + [0.9977854671280277,0.9275663206459055,0.8573471741637831], + [0.9979084967320262,0.9294117647058824,0.8609150326797386], + [0.9980315263360247,0.9312572087658593,0.864482891195694], + [0.9981545559400231,0.9331026528258363,0.8680507497116493], + [0.9982775855440216,0.9349480968858132,0.8716186082276047], + [0.99840061514802,0.9367935409457901,0.8751864667435602], + [0.9985236447520185,0.938638985005767,0.8787543252595156], + [0.998646674356017,0.9404844290657439,0.8823221837754709], + [0.9987697039600154,0.9423298731257209,0.8858900422914263], + [0.9988927335640139,0.9441753171856978,0.8894579008073817], + [0.9990157631680123,0.9460207612456748,0.8930257593233372], + [0.9991387927720108,0.9478662053056517,0.8965936178392926], + [0.9992618223760092,0.9497116493656286,0.9001614763552479], + [0.9993848519800077,0.9515570934256056,0.9037293348712033], + [0.9995078815840062,0.9534025374855825,0.9072971933871588], + [0.9996309111880046,0.9552479815455595,0.9108650519031142], + [0.9997539407920031,0.9570934256055363,0.9144329104190696], + [0.9998769703960015,0.9589388696655133,0.9180007689350249], + [1.0,0.9607843137254902,0.9215686274509803] ], + PRGn: [ + [0.25098039215686274,0.0,0.29411764705882354], + [0.25928489042675895,0.006459054209919261,0.3027297193387159], + [0.2675893886966551,0.012918108419838523,0.31134179161860825], + [0.2758938869665513,0.019377162629757784,0.31995386389850056], + [0.2841983852364475,0.025836216839677045,0.3285659361783929], + [0.29250288350634374,0.03229527104959631,0.33717800845828527], + [0.3008073817762399,0.03875432525951557,0.34579008073817763], + [0.3091118800461361,0.045213379469434836,0.35440215301807], + [0.3174163783160323,0.05167243367935409,0.36301422529796235], + [0.3257208765859285,0.05813148788927336,0.37162629757785465], + [0.3340253748558247,0.06459054209919261,0.380238369857747], + [0.3423298731257209,0.07104959630911188,0.38885044213763936], + [0.3506343713956171,0.07750865051903114,0.39746251441753166], + [0.35893886966551325,0.08396770472895039,0.406074586697424], + [0.36724336793540946,0.09042675893886967,0.4146866589773164], + [0.37554786620530567,0.09688581314878893,0.42329873125720874], + [0.3838523644752019,0.10334486735870818,0.4319108035371011], + [0.39215686274509803,0.10980392156862745,0.44052287581699345], + [0.40046136101499424,0.11626297577854672,0.4491349480968858], + [0.40876585928489045,0.12272202998846597,0.45774702037677817], + [0.4170703575547866,0.12918108419838523,0.46635909265667047], + [0.4253748558246828,0.1356401384083045,0.4749711649365628], + [0.43367935409457903,0.14209919261822376,0.4835832372164552], + [0.44198385236447524,0.14855824682814303,0.4921953094963475], + [0.45028835063437145,0.15501730103806227,0.5008073817762398], + [0.4585928489042676,0.16147635524798154,0.5094194540561322], + [0.4654363706266821,0.1700884275278739,0.51680123029604], + [0.4708189158016148,0.18085351787773934,0.522952710495963], + [0.4762014609765475,0.19161860822760476,0.5291041906958861], + [0.4815840061514802,0.2023836985774702,0.5352556708958093], + [0.4869665513264129,0.21314878892733563,0.5414071510957323], + [0.4923490965013457,0.22391387927720108,0.5475586312956555], + [0.49773164167627837,0.23467896962706652,0.5537101114955786], + [0.503114186851211,0.24544405997693186,0.5598615916955016], + [0.5084967320261438,0.25620915032679736,0.5660130718954248], + [0.5138792772010765,0.2669742406766628,0.5721645520953479], + [0.5192618223760093,0.27773933102652826,0.578316032295271], + [0.5246443675509419,0.28850442137639365,0.584467512495194], + [0.5300269127258747,0.29926951172625915,0.5906189926951172], + [0.5354094579008074,0.31003460207612454,0.5967704728950403], + [0.54079200307574,0.32079969242599005,0.6029219530949634], + [0.5461745482506728,0.3315647827758554,0.6090734332948865], + [0.5515570934256055,0.3423298731257209,0.6152249134948097], + [0.5569396386005383,0.35309496347558633,0.6213763936947327], + [0.5623221837754709,0.3638600538254517,0.6275278738946558], + [0.5677047289504036,0.3746251441753171,0.6336793540945789], + [0.5730872741253364,0.3853902345251826,0.639830834294502], + [0.5784698193002691,0.39615532487504806,0.6459823144944252], + [0.5838523644752018,0.4069204152249135,0.6521337946943483], + [0.5892349096501345,0.4176855055747789,0.6582852748942714], + [0.5946174548250672,0.4284505959246444,0.6644367550941945], + [0.6,0.4392156862745098,0.6705882352941176], + [0.6063052672049212,0.44736639753940793,0.6761245674740484], + [0.6126105344098423,0.45551710880430596,0.6816608996539791], + [0.6189158016147636,0.46366782006920415,0.68719723183391], + [0.6252210688196846,0.47181853133410223,0.6927335640138408], + [0.6315263360246058,0.47996924259900037,0.6982698961937716], + [0.637831603229527,0.4881199538638984,0.7038062283737023], + [0.6441368704344482,0.4962706651287966,0.7093425605536332], + [0.6504421376393694,0.5044213763936947,0.714878892733564], + [0.6567474048442906,0.5125720876585929,0.7204152249134947], + [0.6630526720492117,0.5207227989234908,0.7259515570934255], + [0.6693579392541329,0.528873510188389,0.7314878892733563], + [0.6756632064590541,0.5370242214532872,0.7370242214532872], + [0.6819684736639753,0.5451749327181853,0.7425605536332179], + [0.6882737408688965,0.5533256439830834,0.7480968858131487], + [0.6945790080738176,0.5614763552479813,0.7536332179930795], + [0.7008842752787389,0.5696270665128796,0.7591695501730104], + [0.7071895424836601,0.5777777777777777,0.7647058823529411], + [0.7134948096885813,0.5859284890426758,0.7702422145328719], + [0.7198000768935024,0.5940792003075739,0.7757785467128027], + [0.7261053440984235,0.6022299115724721,0.7813148788927335], + [0.7324106113033447,0.6103806228373702,0.7868512110726643], + [0.7387158785082659,0.6185313341022682,0.7923875432525951], + [0.745021145713187,0.6266820453671662,0.7979238754325257], + [0.7513264129181083,0.6348327566320645,0.8034602076124566], + [0.7576316801230295,0.6429834678969626,0.8089965397923875], + [0.7636293733179546,0.6506728181468665,0.8136870434448289], + [0.7693194925028835,0.6579008073817761,0.8175317185697808], + [0.7750096116878122,0.6651287966166858,0.8213763936947327], + [0.7806997308727411,0.6723567858515955,0.8252210688196847], + [0.78638985005767,0.6795847750865052,0.8290657439446366], + [0.7920799692425988,0.6868127643214147,0.8329104190695885], + [0.7977700884275278,0.6940407535563244,0.8367550941945405], + [0.8034602076124566,0.7012687427912341,0.8405997693194924], + [0.8091503267973855,0.7084967320261437,0.8444444444444444], + [0.8148404459823144,0.7157247212610535,0.8482891195693963], + [0.8205305651672433,0.7229527104959631,0.8521337946943482], + [0.8262206843521722,0.7301806997308727,0.8559784698193003], + [0.831910803537101,0.7374086889657824,0.8598231449442522], + [0.8376009227220299,0.7446366782006919,0.8636678200692041], + [0.8432910419069588,0.7518646674356017,0.8675124951941561], + [0.8489811610918877,0.7590926566705113,0.871357170319108], + [0.8546712802768166,0.766320645905421,0.87520184544406], + [0.8603613994617454,0.7735486351403307,0.8790465205690119], + [0.8660515186466743,0.7807766243752403,0.8828911956939638], + [0.8717416378316032,0.78800461361015,0.8867358708189158], + [0.8774317570165321,0.7952326028450596,0.8905805459438677], + [0.8831218762014609,0.8024605920799692,0.8944252210688196], + [0.8888119953863898,0.8096885813148789,0.8982698961937716], + [0.8945021145713187,0.8169165705497886,0.9021145713187235], + [0.9001922337562476,0.8241445597846982,0.9059592464436755], + [0.9058823529411765,0.8313725490196079,0.9098039215686274], + [0.9083429450211458,0.8367550941945406,0.9121107266435986], + [0.910803537101115,0.8421376393694733,0.9144175317185698], + [0.9132641291810842,0.847520184544406,0.9167243367935409], + [0.9157247212610534,0.8529027297193387,0.9190311418685121], + [0.9181853133410227,0.8582852748942714,0.9213379469434833], + [0.9206459054209919,0.8636678200692042,0.9236447520184544], + [0.9231064975009612,0.8690503652441369,0.9259515570934256], + [0.9255670895809304,0.8744329104190696,0.9282583621683967], + [0.9280276816608997,0.8798154555940023,0.9305651672433679], + [0.9304882737408688,0.8851980007689351,0.9328719723183391], + [0.9329488658208381,0.8905805459438678,0.9351787773933102], + [0.9354094579008073,0.8959630911188003,0.9374855824682814], + [0.9378700499807766,0.9013456362937332,0.9397923875432526], + [0.9403306420607459,0.906728181468666,0.9420991926182237], + [0.9427912341407151,0.9121107266435986,0.9444059976931949], + [0.9452518262206844,0.9174932718185314,0.946712802768166], + [0.9477124183006536,0.9228758169934641,0.9490196078431372], + [0.9501730103806229,0.9282583621683967,0.9513264129181084], + [0.952633602460592,0.9336409073433295,0.9536332179930795], + [0.9550941945405613,0.9390234525182621,0.9559400230680507], + [0.9575547866205305,0.9444059976931949,0.9582468281430219], + [0.9600153787004998,0.9497885428681276,0.960553633217993], + [0.9624759707804691,0.9551710880430604,0.9628604382929642], + [0.9649365628604383,0.9605536332179931,0.9651672433679354], + [0.9673971549404076,0.9659361783929258,0.9674740484429065], + [0.966320645905421,0.9680891964628989,0.9658592848904267], + [0.9617070357554787,0.9670126874279124,0.960322952710496], + [0.9570934256055363,0.9659361783929258,0.9547866205305652], + [0.952479815455594,0.9648596693579392,0.9492502883506344], + [0.9478662053056518,0.9637831603229527,0.9437139561707037], + [0.9432525951557094,0.9627066512879662,0.9381776239907728], + [0.938638985005767,0.9616301422529796,0.932641291810842], + [0.9340253748558247,0.960553633217993,0.9271049596309112], + [0.9294117647058824,0.9594771241830066,0.9215686274509804], + [0.92479815455594,0.95840061514802,0.9160322952710497], + [0.9201845444059977,0.9573241061130334,0.9104959630911188], + [0.9155709342560554,0.956247597078047,0.904959630911188], + [0.9109573241061131,0.9551710880430604,0.8994232987312573], + [0.9063437139561707,0.9540945790080738,0.8938869665513265], + [0.9017301038062284,0.9530180699730872,0.8883506343713957], + [0.8971164936562861,0.9519415609381008,0.882814302191465], + [0.8925028835063438,0.9508650519031142,0.8772779700115341], + [0.8878892733564014,0.9497885428681276,0.8717416378316033], + [0.8832756632064591,0.9487120338331411,0.8662053056516725], + [0.8786620530565168,0.9476355247981546,0.8606689734717418], + [0.8740484429065746,0.946559015763168,0.8551326412918111], + [0.8694348327566321,0.9454825067281815,0.8495963091118801], + [0.8648212226066898,0.9444059976931949,0.8440599769319493], + [0.8602076124567475,0.9433294886582084,0.8385236447520186], + [0.8555940023068052,0.9422529796232219,0.8329873125720878], + [0.8509803921568628,0.9411764705882353,0.827450980392157], + [0.843137254901961,0.9379469434832758,0.8196078431372551], + [0.8352941176470591,0.9347174163783161,0.8117647058823532], + [0.827450980392157,0.9314878892733565,0.8039215686274511], + [0.8196078431372551,0.9282583621683969,0.7960784313725492], + [0.8117647058823532,0.9250288350634372,0.7882352941176473], + [0.8039215686274512,0.9217993079584775,0.7803921568627453], + [0.7960784313725492,0.9185697808535179,0.7725490196078433], + [0.7882352941176473,0.9153402537485583,0.7647058823529413], + [0.7803921568627453,0.9121107266435987,0.7568627450980394], + [0.7725490196078434,0.908881199538639,0.7490196078431375], + [0.7647058823529416,0.9056516724336795,0.7411764705882358], + [0.7568627450980394,0.9024221453287198,0.7333333333333335], + [0.7490196078431375,0.8991926182237602,0.7254901960784316], + [0.7411764705882355,0.8959630911188006,0.7176470588235296], + [0.7333333333333335,0.8927335640138409,0.7098039215686276], + [0.7254901960784316,0.8895040369088812,0.7019607843137257], + [0.7176470588235296,0.8862745098039216,0.6941176470588237], + [0.7098039215686277,0.883044982698962,0.6862745098039218], + [0.7019607843137257,0.8798154555940023,0.6784313725490199], + [0.6941176470588237,0.8765859284890427,0.6705882352941178], + [0.6862745098039218,0.8733564013840831,0.6627450980392159], + [0.6784313725490199,0.8701268742791235,0.654901960784314], + [0.6705882352941179,0.8668973471741638,0.6470588235294119], + [0.662745098039216,0.8636678200692042,0.63921568627451], + [0.654901960784314,0.8604382929642446,0.631372549019608], + [0.6451364859669362,0.8553633217993081,0.6226066897347177], + [0.6334486735870826,0.8484429065743948,0.6129181084198391], + [0.6217608612072283,0.8415224913494811,0.6032295271049599], + [0.6100730488273743,0.8346020761245676,0.593540945790081], + [0.5983852364475205,0.8276816608996541,0.5838523644752021], + [0.5866974240676666,0.8207612456747406,0.5741637831603231], + [0.5750096116878126,0.8138408304498271,0.5644752018454442], + [0.5633217993079587,0.8069204152249136,0.5547866205305654], + [0.5516339869281048,0.8,0.5450980392156864], + [0.5399461745482509,0.7930795847750867,0.5354094579008075], + [0.5282583621683969,0.7861591695501731,0.5257208765859286], + [0.5165705497885431,0.7792387543252596,0.5160322952710498], + [0.5048827374086892,0.7723183391003461,0.5063437139561708], + [0.4931949250288352,0.7653979238754326,0.4966551326412919], + [0.48150711264898133,0.7584775086505191,0.486966551326413], + [0.4698193002691274,0.7515570934256056,0.4772779700115341], + [0.4581314878892735,0.7446366782006921,0.46758938869665523], + [0.4464436755094199,0.7377162629757787,0.4579008073817766], + [0.4347558631295657,0.7307958477508651,0.4482122260668974], + [0.42306805074971177,0.7238754325259515,0.4385236447520185], + [0.4113802383698578,0.7169550173010382,0.4288350634371396], + [0.39969242599000393,0.7100346020761246,0.4191464821222607], + [0.38800461361015,0.7031141868512111,0.40945790080738176], + [0.3763168012302961,0.6961937716262976,0.3997693194925029], + [0.3646289888504422,0.6892733564013841,0.390080738177624], + [0.35294117647058826,0.6823529411764706,0.3803921568627451], + [0.3432525951557094,0.6740484429065744,0.3739331026528258], + [0.33356401384083045,0.6657439446366782,0.36747404844290654], + [0.3238754325259516,0.657439446366782,0.3610149942329873], + [0.3141868512110727,0.6491349480968859,0.35455594002306806], + [0.3044982698961938,0.6408304498269897,0.3480968858131488], + [0.2948096885813149,0.6325259515570935,0.3416378316032295], + [0.285121107266436,0.6242214532871972,0.33517877739331026], + [0.27543252595155737,0.6159169550173013,0.32871972318339115], + [0.2657439446366782,0.6076124567474048,0.3222606689734717], + [0.25605536332179935,0.5993079584775086,0.3158016147635525], + [0.24636678200692042,0.5910034602076124,0.3093425605536332], + [0.23667820069204154,0.5826989619377163,0.30288350634371397], + [0.22698961937716267,0.5743944636678201,0.2964244521337947], + [0.21730103806228374,0.5660899653979239,0.28996539792387543], + [0.20761245674740486,0.5577854671280277,0.28350634371395617], + [0.19792387543252596,0.5494809688581315,0.2770472895040369], + [0.18823529411764708,0.5411764705882354,0.2705882352941177], + [0.17854671280276818,0.532871972318339,0.26412918108419836], + [0.16885813148788928,0.524567474048443,0.25767012687427915], + [0.1591695501730104,0.5162629757785467,0.2512110726643599], + [0.1494809688581315,0.5079584775086505,0.2447520184544406], + [0.1397923875432526,0.4996539792387543,0.23829296424452134], + [0.13010380622837373,0.4913494809688581,0.23183391003460208], + [0.1204152249134951,0.4830449826989622,0.225374855824683], + [0.11072664359861595,0.47474048442906575,0.21891580161476357], + [0.10380622837370242,0.4665897731641676,0.21353325643983084], + [0.09965397923875433,0.4585928489042676,0.20922722029988466], + [0.09550173010380622,0.45059592464436754,0.20492118415993849], + [0.09134948096885813,0.4425990003844675,0.2006151480199923], + [0.08719723183391004,0.43460207612456747,0.19630911188004616], + [0.08304498269896193,0.4266051518646674,0.19200307574009998], + [0.07889273356401384,0.4186082276047674,0.1876970396001538], + [0.07474048442906574,0.41061130334486734,0.18339100346020762], + [0.07058823529411765,0.40261437908496733,0.17908496732026144], + [0.06643598615916954,0.39461745482506727,0.17477893118031526], + [0.06228373702422146,0.3866205305651672,0.1704728950403691], + [0.05813148788927335,0.3786236063052672,0.16616685890042293], + [0.05397923875432526,0.3706266820453672,0.16186082276047675], + [0.04982698961937716,0.36262975778546713,0.15755478662053057], + [0.04567474048442918,0.3546328335255673,0.1532487504805845], + [0.04152249134948097,0.34663590926566706,0.14894271434063822], + [0.03737024221453286,0.338638985005767,0.14463667820069204], + [0.03321799307958477,0.330642060745867,0.14033064206074586], + [0.02906574394463668,0.32264513648596693,0.13602460592079968], + [0.02491349480968859,0.31464821222606687,0.13171856978085353], + [0.020761245674740483,0.3066512879661668,0.12741253364090732], + [0.016608996539792392,0.29865436370626686,0.12310649750096117], + [0.012456747404844287,0.2906574394463668,0.11880046136101499], + [0.008304498269896196,0.28266051518646673,0.11449442522106883], + [0.004152249134948091,0.27466359092656667,0.11018838908112265], + [0.0,0.26666666666666666,0.10588235294117647] ], + PRGn_r: [ + [0.0,0.26666666666666666,0.10588235294117647], + [0.004152249134948097,0.2746635909265667,0.11018838908112265], + [0.008304498269896194,0.28266051518646673,0.11449442522106881], + [0.01245674740484429,0.2906574394463668,0.11880046136101499], + [0.01660899653979239,0.2986543637062668,0.12310649750096117], + [0.020761245674740483,0.30665128796616686,0.12741253364090735], + [0.02491349480968858,0.31464821222606687,0.13171856978085353], + [0.02906574394463668,0.32264513648596693,0.1360246059207997], + [0.03321799307958478,0.330642060745867,0.14033064206074586], + [0.037370242214532876,0.338638985005767,0.14463667820069204], + [0.04152249134948097,0.34663590926566706,0.14894271434063822], + [0.045674740484429065,0.35463283352556707,0.1532487504805844], + [0.04982698961937716,0.36262975778546713,0.15755478662053057], + [0.053979238754325254,0.37062668204536714,0.16186082276047675], + [0.05813148788927336,0.3786236063052672,0.16616685890042293], + [0.06228373702422146,0.3866205305651672,0.1704728950403691], + [0.06643598615916955,0.39461745482506727,0.1747789311803153], + [0.07058823529411765,0.40261437908496733,0.17908496732026144], + [0.07474048442906575,0.4106113033448674,0.18339100346020762], + [0.07889273356401384,0.4186082276047674,0.1876970396001538], + [0.08304498269896193,0.4266051518646674,0.19200307574009995], + [0.08719723183391002,0.43460207612456747,0.19630911188004613], + [0.09134948096885813,0.44259900038446753,0.2006151480199923], + [0.09550173010380623,0.45059592464436754,0.20492118415993849], + [0.09965397923875433,0.45859284890426755,0.20922722029988466], + [0.10380622837370242,0.4665897731641676,0.21353325643983084], + [0.11072664359861592,0.47474048442906575,0.21891580161476357], + [0.12041522491349481,0.48304498269896196,0.22537485582468283], + [0.1301038062283737,0.4913494809688581,0.23183391003460208], + [0.1397923875432526,0.4996539792387543,0.23829296424452134], + [0.1494809688581315,0.5079584775086505,0.2447520184544406], + [0.15916955017301038,0.5162629757785467,0.2512110726643599], + [0.16885813148788925,0.524567474048443,0.25767012687427915], + [0.1785467128027681,0.532871972318339,0.26412918108419836], + [0.18823529411764706,0.5411764705882353,0.27058823529411763], + [0.19792387543252596,0.5494809688581315,0.2770472895040369], + [0.20761245674740486,0.5577854671280277,0.28350634371395617], + [0.21730103806228368,0.5660899653979238,0.2899653979238754], + [0.2269896193771626,0.5743944636678201,0.2964244521337947], + [0.23667820069204154,0.5826989619377163,0.30288350634371397], + [0.24636678200692042,0.5910034602076124,0.3093425605536332], + [0.25605536332179923,0.5993079584775086,0.3158016147635524], + [0.2657439446366782,0.6076124567474048,0.3222606689734717], + [0.2754325259515571,0.615916955017301,0.328719723183391], + [0.28512110726643597,0.6242214532871972,0.33517877739331026], + [0.29480968858131484,0.6325259515570933,0.34163783160322947], + [0.3044982698961938,0.6408304498269897,0.3480968858131488], + [0.31418685121107265,0.6491349480968858,0.354555940023068], + [0.3238754325259516,0.657439446366782,0.36101499423298733], + [0.3335640138408304,0.6657439446366782,0.36747404844290654], + [0.3432525951557094,0.6740484429065744,0.3739331026528258], + [0.35294117647058826,0.6823529411764706,0.3803921568627451], + [0.36462898885044215,0.6892733564013841,0.39008073817762395], + [0.376316801230296,0.6961937716262976,0.3997693194925028], + [0.38800461361014993,0.7031141868512111,0.40945790080738176], + [0.3996924259900038,0.7100346020761246,0.41914648212226063], + [0.4113802383698577,0.7169550173010381,0.4288350634371395], + [0.42306805074971154,0.7238754325259514,0.4385236447520183], + [0.43475586312956555,0.730795847750865,0.4482122260668973], + [0.44644367550941944,0.7377162629757785,0.4579008073817762], + [0.4581314878892733,0.744636678200692,0.46758938869665506], + [0.4698193002691271,0.7515570934256054,0.4772779700115339], + [0.4815071126489811,0.758477508650519,0.48696655132641287], + [0.493194925028835,0.7653979238754325,0.49665513264129174], + [0.5048827374086889,0.772318339100346,0.5063437139561706], + [0.5165705497885428,0.7792387543252595,0.5160322952710495], + [0.5282583621683965,0.7861591695501728,0.5257208765859283], + [0.5399461745482506,0.7930795847750864,0.5354094579008073], + [0.5516339869281045,0.7999999999999999,0.5450980392156861], + [0.5633217993079583,0.8069204152249134,0.554786620530565], + [0.5750096116878123,0.8138408304498269,0.564475201845444], + [0.5866974240676661,0.8207612456747404,0.5741637831603228], + [0.5983852364475201,0.8276816608996539,0.5838523644752017], + [0.610073048827374,0.8346020761245674,0.5935409457900807], + [0.6217608612072276,0.8415224913494808,0.6032295271049594], + [0.6334486735870817,0.8484429065743944,0.6129181084198384], + [0.6451364859669356,0.8553633217993077,0.6226066897347172], + [0.6549019607843136,0.8604382929642445,0.6313725490196077], + [0.6627450980392156,0.8636678200692041,0.6392156862745096], + [0.6705882352941176,0.8668973471741637,0.6470588235294117], + [0.6784313725490195,0.8701268742791233,0.6549019607843136], + [0.6862745098039215,0.873356401384083,0.6627450980392156], + [0.6941176470588233,0.8765859284890426,0.6705882352941175], + [0.7019607843137254,0.8798154555940022,0.6784313725490195], + [0.7098039215686274,0.8830449826989618,0.6862745098039215], + [0.7176470588235293,0.8862745098039215,0.6941176470588234], + [0.7254901960784313,0.8895040369088811,0.7019607843137254], + [0.7333333333333333,0.8927335640138407,0.7098039215686274], + [0.7411764705882352,0.8959630911188003,0.7176470588235293], + [0.7490196078431371,0.8991926182237601,0.7254901960784312], + [0.7568627450980391,0.9024221453287197,0.7333333333333332], + [0.7647058823529411,0.9056516724336793,0.7411764705882352], + [0.7725490196078431,0.9088811995386389,0.7490196078431371], + [0.780392156862745,0.9121107266435986,0.7568627450980392], + [0.788235294117647,0.9153402537485582,0.7647058823529411], + [0.796078431372549,0.9185697808535178,0.7725490196078431], + [0.8039215686274509,0.9217993079584774,0.780392156862745], + [0.8117647058823529,0.9250288350634371,0.788235294117647], + [0.8196078431372548,0.9282583621683967,0.7960784313725489], + [0.8274509803921568,0.9314878892733564,0.8039215686274509], + [0.8352941176470587,0.9347174163783161,0.8117647058823529], + [0.8431372549019608,0.9379469434832757,0.8196078431372549], + [0.8509803921568627,0.9411764705882353,0.8274509803921568], + [0.855594002306805,0.9422529796232219,0.8329873125720876], + [0.8602076124567474,0.9433294886582083,0.8385236447520185], + [0.8648212226066897,0.9444059976931949,0.8440599769319492], + [0.869434832756632,0.9454825067281815,0.8495963091118799], + [0.8740484429065744,0.946559015763168,0.8551326412918108], + [0.8786620530565167,0.9476355247981545,0.8606689734717416], + [0.883275663206459,0.9487120338331411,0.8662053056516724], + [0.8878892733564013,0.9497885428681276,0.8717416378316032], + [0.8925028835063437,0.9508650519031142,0.877277970011534], + [0.897116493656286,0.9519415609381007,0.8828143021914648], + [0.9017301038062283,0.9530180699730872,0.8883506343713956], + [0.9063437139561706,0.9540945790080738,0.8938869665513263], + [0.9109573241061131,0.9551710880430604,0.8994232987312571], + [0.9155709342560554,0.9562475970780469,0.904959630911188], + [0.9201845444059977,0.9573241061130334,0.9104959630911188], + [0.92479815455594,0.95840061514802,0.9160322952710496], + [0.9294117647058824,0.9594771241830066,0.9215686274509803], + [0.9340253748558247,0.960553633217993,0.9271049596309112], + [0.938638985005767,0.9616301422529796,0.932641291810842], + [0.9432525951557093,0.9627066512879662,0.9381776239907726], + [0.9478662053056517,0.9637831603229527,0.9437139561707035], + [0.952479815455594,0.9648596693579392,0.9492502883506344], + [0.9570934256055363,0.9659361783929258,0.9547866205305652], + [0.9617070357554787,0.9670126874279124,0.960322952710496], + [0.966320645905421,0.9680891964628989,0.9658592848904267], + [0.9673971549404076,0.9659361783929258,0.9674740484429066], + [0.9649365628604383,0.9605536332179931,0.9651672433679355], + [0.9624759707804691,0.9551710880430604,0.9628604382929643], + [0.9600153787004998,0.9497885428681276,0.9605536332179931], + [0.9575547866205306,0.9444059976931951,0.958246828143022], + [0.9550941945405613,0.9390234525182622,0.9559400230680508], + [0.9526336024605921,0.9336409073433295,0.9536332179930797], + [0.9501730103806229,0.9282583621683969,0.9513264129181085], + [0.9477124183006537,0.9228758169934641,0.9490196078431373], + [0.9452518262206844,0.9174932718185314,0.9467128027681662], + [0.9427912341407152,0.9121107266435987,0.944405997693195], + [0.9403306420607459,0.906728181468666,0.9420991926182238], + [0.9378700499807766,0.9013456362937333,0.9397923875432527], + [0.9354094579008074,0.8959630911188006,0.9374855824682815], + [0.9329488658208381,0.8905805459438678,0.9351787773933103], + [0.930488273740869,0.8851980007689352,0.9328719723183392], + [0.9280276816608997,0.8798154555940024,0.930565167243368], + [0.9255670895809305,0.8744329104190698,0.9282583621683969], + [0.9231064975009612,0.869050365244137,0.9259515570934257], + [0.920645905420992,0.8636678200692043,0.9236447520184545], + [0.9181853133410228,0.8582852748942718,0.9213379469434834], + [0.9157247212610535,0.8529027297193389,0.9190311418685122], + [0.9132641291810842,0.8475201845444061,0.916724336793541], + [0.9108035371011151,0.8421376393694735,0.9144175317185699], + [0.9083429450211458,0.8367550941945407,0.9121107266435987], + [0.9058823529411766,0.831372549019608,0.9098039215686275], + [0.9001922337562478,0.8241445597846985,0.9059592464436756], + [0.8945021145713189,0.8169165705497888,0.9021145713187236], + [0.88881199538639,0.8096885813148791,0.8982698961937717], + [0.8831218762014611,0.8024605920799694,0.8944252210688198], + [0.8774317570165323,0.7952326028450598,0.8905805459438678], + [0.8717416378316034,0.7880046136101502,0.8867358708189159], + [0.8660515186466745,0.7807766243752405,0.882891195693964], + [0.8603613994617456,0.7735486351403309,0.879046520569012], + [0.8546712802768167,0.7663206459054213,0.8752018454440601], + [0.8489811610918879,0.7590926566705116,0.8713571703191081], + [0.8432910419069591,0.7518646674356022,0.8675124951941563], + [0.8376009227220301,0.7446366782006923,0.8636678200692043], + [0.8319108035371012,0.7374086889657826,0.8598231449442523], + [0.8262206843521723,0.730180699730873,0.8559784698193004], + [0.8205305651672435,0.7229527104959633,0.8521337946943485], + [0.8148404459823146,0.7157247212610537,0.8482891195693965], + [0.8091503267973857,0.708496732026144,0.8444444444444446], + [0.8034602076124568,0.7012687427912344,0.8405997693194927], + [0.7977700884275281,0.6940407535563247,0.8367550941945406], + [0.7920799692425992,0.686812764321415,0.8329104190695887], + [0.7863898500576703,0.6795847750865054,0.8290657439446368], + [0.7806997308727414,0.6723567858515958,0.8252210688196848], + [0.7750096116878125,0.6651287966166861,0.8213763936947329], + [0.7693194925028837,0.6579008073817765,0.817531718569781], + [0.7636293733179548,0.6506728181468668,0.813687043444829], + [0.7576316801230297,0.6429834678969629,0.8089965397923877], + [0.7513264129181088,0.6348327566320651,0.8034602076124571], + [0.7450211457131873,0.6266820453671668,0.7979238754325261], + [0.7387158785082661,0.6185313341022686,0.7923875432525953], + [0.732410611303345,0.6103806228373705,0.7868512110726644], + [0.7261053440984238,0.6022299115724723,0.7813148788927337], + [0.7198000768935026,0.5940792003075742,0.7757785467128029], + [0.7134948096885814,0.585928489042676,0.7702422145328721], + [0.7071895424836602,0.577777777777778,0.7647058823529412], + [0.700884275278739,0.5696270665128799,0.7591695501730105], + [0.6945790080738179,0.5614763552479817,0.7536332179930797], + [0.6882737408688966,0.5533256439830836,0.7480968858131488], + [0.6819684736639755,0.5451749327181854,0.742560553633218], + [0.6756632064590543,0.5370242214532873,0.7370242214532873], + [0.6693579392541331,0.5288735101883892,0.7314878892733564], + [0.6630526720492119,0.520722798923491,0.7259515570934256], + [0.6567474048442907,0.512572087658593,0.7204152249134949], + [0.6504421376393696,0.504421376393695,0.7148788927335642], + [0.6441368704344483,0.4962706651287967,0.7093425605536332], + [0.6378316032295271,0.48811995386389856,0.7038062283737024], + [0.631526336024606,0.4799692425990004,0.6982698961937717], + [0.6252210688196848,0.47181853133410234,0.6927335640138408], + [0.6189158016147636,0.46366782006920415,0.68719723183391], + [0.6126105344098424,0.45551710880430607,0.6816608996539792], + [0.6063052672049212,0.44736639753940793,0.6761245674740484], + [0.6,0.4392156862745098,0.6705882352941176], + [0.5946174548250672,0.42845059592464435,0.6644367550941945], + [0.5892349096501346,0.4176855055747789,0.6582852748942714], + [0.5838523644752018,0.4069204152249135,0.6521337946943483], + [0.5784698193002691,0.39615532487504806,0.6459823144944252], + [0.5730872741253364,0.3853902345251826,0.639830834294502], + [0.5677047289504037,0.37462514417531717,0.633679354094579], + [0.5623221837754709,0.3638600538254517,0.6275278738946558], + [0.5569396386005384,0.3530949634755866,0.621376393694733], + [0.5515570934256055,0.34232987312572083,0.6152249134948097], + [0.5461745482506728,0.33156478277585544,0.6090734332948865], + [0.54079200307574,0.32079969242599,0.6029219530949634], + [0.5354094579008074,0.31003460207612454,0.5967704728950403], + [0.5300269127258747,0.29926951172625915,0.5906189926951172], + [0.5246443675509419,0.28850442137639365,0.5844675124951941], + [0.5192618223760093,0.27773933102652826,0.578316032295271], + [0.5138792772010765,0.2669742406766628,0.5721645520953479], + [0.5084967320261438,0.25620915032679736,0.5660130718954248], + [0.5031141868512111,0.24544405997693192,0.5598615916955016], + [0.49773164167627837,0.2346789696270665,0.5537101114955786], + [0.4923490965013456,0.22391387927720105,0.5475586312956555], + [0.4869665513264129,0.21314878892733563,0.5414071510957323], + [0.4815840061514802,0.20238369857747016,0.5352556708958093], + [0.4762014609765475,0.19161860822760474,0.5291041906958862], + [0.47081891580161495,0.18085351787773962,0.5229527104959633], + [0.4654363706266821,0.1700884275278739,0.51680123029604], + [0.4585928489042676,0.16147635524798154,0.5094194540561322], + [0.4502883506343714,0.15501730103806227,0.5008073817762398], + [0.44198385236447524,0.14855824682814303,0.4921953094963475], + [0.43367935409457903,0.14209919261822376,0.4835832372164552], + [0.4253748558246828,0.1356401384083045,0.47497116493656283], + [0.4170703575547866,0.12918108419838523,0.46635909265667047], + [0.40876585928489045,0.12272202998846599,0.4577470203767781], + [0.40046136101499424,0.11626297577854672,0.4491349480968858], + [0.3921568627450981,0.10980392156862745,0.44052287581699345], + [0.3838523644752019,0.10334486735870818,0.4319108035371011], + [0.37554786620530567,0.09688581314878893,0.42329873125720874], + [0.36724336793540946,0.09042675893886966,0.4146866589773164], + [0.35893886966551325,0.0839677047289504,0.406074586697424], + [0.3506343713956171,0.07750865051903114,0.39746251441753166], + [0.3423298731257211,0.07104959630911206,0.3888504421376396], + [0.33402537485582473,0.06459054209919263,0.380238369857747], + [0.3257208765859285,0.058131487889273345,0.37162629757785465], + [0.3174163783160323,0.05167243367935409,0.36301422529796235], + [0.3091118800461361,0.045213379469434836,0.35440215301807], + [0.3008073817762399,0.03875432525951558,0.34579008073817763], + [0.2925028835063437,0.032295271049596314,0.33717800845828527], + [0.2841983852364475,0.025836216839677045,0.3285659361783929], + [0.27589388696655137,0.019377162629757777,0.31995386389850056], + [0.26758938869665516,0.012918108419838537,0.31134179161860825], + [0.25928489042675895,0.006459054209919268,0.30272971933871584], + [0.25098039215686274,0.0,0.29411764705882354] ], + Paired: [ + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392] ], + Paired_r: [ + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [0.6941176470588235,0.34901960784313724,0.1568627450980392], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [1.0,1.0,0.6], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.41568627450980394,0.23921568627450981,0.6039215686274509], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [0.792156862745098,0.6980392156862745,0.8392156862745098], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.9921568627450981,0.7490196078431373,0.43529411764705883], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.8901960784313725,0.10196078431372549,0.10980392156862745], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.984313725490196,0.6039215686274509,0.6], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.2,0.6274509803921569,0.17254901960784313], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.6980392156862745,0.8745098039215686,0.5411764705882353], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.12156862745098039,0.47058823529411764,0.7058823529411765], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725], + [0.6509803921568628,0.807843137254902,0.8901960784313725] ], + Pastel1: [ + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372] ], + Pastel1_r: [ + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.9921568627450981,0.8549019607843137,0.9254901960784314], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [0.8980392156862745,0.8470588235294118,0.7411764705882353], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [1.0,1.0,0.8], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.996078431372549,0.8509803921568627,0.6509803921568628], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8705882352941177,0.796078431372549,0.8941176470588236], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.7019607843137254,0.803921568627451,0.8901960784313725], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706], + [0.984313725490196,0.7058823529411765,0.6823529411764706] ], + Pastel2: [ + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8] ], + Pastel2_r: [ + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.8,0.8,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [0.9450980392156862,0.8862745098039215,0.8], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [1.0,0.9490196078431372,0.6823529411764706], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9019607843137255,0.9607843137254902,0.788235294117647], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.9568627450980393,0.792156862745098,0.8941176470588236], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.796078431372549,0.8352941176470589,0.9098039215686274], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.9921568627450981,0.803921568627451,0.6745098039215687], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451], + [0.7019607843137254,0.8862745098039215,0.803921568627451] ], + PiYG: [ + [0.5568627450980392,0.00392156862745098,0.3215686274509804], + [0.5653210303729335,0.007920030757401,0.32818146866589776], + [0.5737793156478278,0.011918492887351018,0.3347943098808151], + [0.582237600922722,0.01591695501730104,0.34140715109573244], + [0.5906958861976164,0.019915417147251056,0.3480199923106498], + [0.5991541714725106,0.023913879277201077,0.3546328335255671], + [0.6076124567474048,0.027912341407151094,0.3612456747404844], + [0.6160707420222992,0.031910803537101115,0.36785851595540175], + [0.6245290272971934,0.03590926566705113,0.3744713571703191], + [0.6329873125720877,0.039907727797001157,0.38108419838523644], + [0.641445597846982,0.043906189926951174,0.3876970396001538], + [0.6499038831218762,0.04790465205690119,0.3943098808150711], + [0.6583621683967705,0.05190311418685121,0.40092272202998847], + [0.6668204536716648,0.055901576316801226,0.4075355632449058], + [0.6752787389465591,0.05990003844675126,0.41414840445982315], + [0.6837370242214533,0.06389850057670127,0.4207612456747405], + [0.6921953094963476,0.06789696270665128,0.42737408688965783], + [0.7006535947712418,0.0718954248366013,0.4339869281045752], + [0.7091118800461361,0.07589388696655133,0.4405997693194925], + [0.7175701653210305,0.07989234909650135,0.44721261053440986], + [0.7260284505959247,0.08389081122645137,0.4538254517493272], + [0.7344867358708189,0.08788927335640138,0.4604382929642445], + [0.7429450211457133,0.0918877354863514,0.4670511341791619], + [0.7514033064206075,0.09588619761630142,0.4736639753940792], + [0.7598615916955018,0.09988465974625144,0.4802768166089965], + [0.768319876970396,0.10388312187620145,0.48688965782391386], + [0.7744713571703191,0.11295655517108805,0.4939638600538254], + [0.7783160322952711,0.12710495963091117,0.5014994232987312], + [0.782160707420223,0.14125336409073433,0.509034986543637], + [0.7860053825451749,0.15540176855055748,0.5165705497885429], + [0.789850057670127,0.1695501730103806,0.5241061130334487], + [0.7936947327950788,0.18369857747020377,0.5316416762783545], + [0.7975394079200308,0.19784698193002692,0.5391772395232602], + [0.8013840830449827,0.21199538638984994,0.546712802768166], + [0.8052287581699347,0.22614379084967318,0.5542483660130719], + [0.8090734332948866,0.24029219530949636,0.5617839292579777], + [0.8129181084198386,0.2544405997693195,0.5693194925028835], + [0.8167627835447905,0.26858900422914256,0.5768550557477893], + [0.8206074586697424,0.2827374086889658,0.5843906189926951], + [0.8244521337946944,0.2968858131487889,0.591926182237601], + [0.8282968089196463,0.31103421760861205,0.5994617454825067], + [0.8321414840445982,0.3251826220684351,0.6069973087274125], + [0.8359861591695502,0.33933102652825836,0.6145328719723183], + [0.8398308342945021,0.3534794309880815,0.6220684352172241], + [0.8436755094194541,0.36762783544790467,0.62960399846213], + [0.847520184544406,0.3817762399077277,0.6371395617070357], + [0.8513648596693579,0.395924644367551,0.6446751249519416], + [0.85520953479431,0.4100730488273741,0.6522106881968474], + [0.8590542099192618,0.42422145328719724,0.6597462514417531], + [0.8628988850442137,0.4383698577470203,0.6672818146866589], + [0.8667435601691658,0.45251826220684355,0.6748173779315648], + [0.8705882352941177,0.4666666666666667,0.6823529411764706], + [0.8735101883890811,0.47635524798154555,0.689119569396386], + [0.8764321414840446,0.48604382929642437,0.6958861976163013], + [0.879354094579008,0.49573241061130335,0.7026528258362168], + [0.8822760476739715,0.5054209919261823,0.7094194540561323], + [0.8851980007689351,0.5151095732410611,0.7161860822760476], + [0.8881199538638985,0.5247981545559399,0.722952710495963], + [0.891041906958862,0.5344867358708189,0.7297193387158785], + [0.8939638600538254,0.5441753171856978,0.7364859669357939], + [0.8968858131487889,0.5538638985005766,0.7432525951557093], + [0.8998077662437524,0.5635524798154554,0.7500192233756247], + [0.9027297193387158,0.5732410611303345,0.7567858515955401], + [0.9056516724336793,0.5829296424452133,0.7635524798154556], + [0.9085736255286428,0.5926182237600922,0.770319108035371], + [0.9114955786236063,0.6023068050749711,0.7770857362552863], + [0.9144175317185697,0.6119953863898498,0.7838523644752017], + [0.9173394848135332,0.6216839677047289,0.7906189926951172], + [0.9202614379084967,0.6313725490196078,0.7973856209150326], + [0.9231833910034601,0.6410611303344866,0.804152249134948], + [0.9261053440984236,0.6507497116493656,0.8109188773548635], + [0.9290272971933871,0.6604382929642444,0.8176855055747788], + [0.9319492502883506,0.6701268742791233,0.8244521337946942], + [0.9348712033833141,0.6798154555940021,0.8312187620146096], + [0.9377931564782774,0.689504036908881,0.8379853902345249], + [0.940715109573241,0.69919261822376,0.8447520184544405], + [0.9436370626682045,0.7088811995386388,0.8515186466743558], + [0.9460207612456747,0.716955017301038,0.8565167243367935], + [0.9478662053056516,0.7234140715109573,0.8597462514417531], + [0.9497116493656286,0.7298731257208765,0.8629757785467127], + [0.9515570934256055,0.7363321799307958,0.8662053056516723], + [0.9534025374855825,0.742791234140715,0.869434832756632], + [0.9552479815455593,0.7492502883506342,0.8726643598615916], + [0.9570934256055363,0.7557093425605536,0.8758938869665512], + [0.9589388696655132,0.7621683967704729,0.8791234140715108], + [0.9607843137254902,0.7686274509803921,0.8823529411764706], + [0.9626297577854671,0.7750865051903114,0.8855824682814302], + [0.964475201845444,0.7815455594002306,0.8888119953863898], + [0.966320645905421,0.78800461361015,0.8920415224913494], + [0.9681660899653979,0.7944636678200692,0.8952710495963091], + [0.9700115340253748,0.8009227220299884,0.8985005767012687], + [0.9718569780853518,0.8073817762399077,0.9017301038062283], + [0.9737024221453288,0.8138408304498269,0.9049596309111879], + [0.9755478662053056,0.8202998846597462,0.9081891580161476], + [0.9773933102652825,0.8267589388696654,0.9114186851211072], + [0.9792387543252595,0.8332179930795848,0.9146482122260668], + [0.9810841983852364,0.839677047289504,0.9178777393310265], + [0.9829296424452134,0.8461361014994233,0.9211072664359862], + [0.9847750865051903,0.8525951557093424,0.9243367935409458], + [0.9866205305651673,0.8590542099192618,0.9275663206459054], + [0.9884659746251442,0.8655132641291811,0.9307958477508651], + [0.9903114186851212,0.8719723183391004,0.9340253748558247], + [0.9921568627450981,0.8784313725490196,0.9372549019607843], + [0.9912341407151096,0.8819684736639753,0.9384851980007689], + [0.9903114186851212,0.8855055747789312,0.9397154940407536], + [0.9893886966551326,0.889042675893887,0.9409457900807382], + [0.9884659746251442,0.8925797770088427,0.9421760861207228], + [0.9875432525951557,0.8961168781237985,0.9434063821607074], + [0.9866205305651673,0.8996539792387543,0.9446366782006921], + [0.9856978085351787,0.9031910803537101,0.9458669742406767], + [0.9847750865051903,0.9067281814686659,0.9470972702806613], + [0.9838523644752019,0.9102652825836217,0.9483275663206459], + [0.9829296424452134,0.9138023836985775,0.9495578623606306], + [0.982006920415225,0.9173394848135332,0.9507881584006151], + [0.9810841983852365,0.920876585928489,0.9520184544405997], + [0.980161476355248,0.9244136870434448,0.9532487504805844], + [0.9792387543252595,0.9279507881584006,0.954479046520569], + [0.9783160322952711,0.9314878892733564,0.9557093425605536], + [0.9773933102652826,0.9350249903883122,0.9569396386005382], + [0.9764705882352941,0.938562091503268,0.9581699346405229], + [0.9755478662053056,0.9420991926182237,0.9594002306805075], + [0.9746251441753172,0.9456362937331796,0.9606305267204921], + [0.9737024221453288,0.9491733948481352,0.9618608227604767], + [0.9727797001153402,0.9527104959630911,0.9630911188004614], + [0.9718569780853518,0.9562475970780469,0.964321414840446], + [0.9709342560553633,0.9597846981930027,0.9655517108804306], + [0.9700115340253749,0.9633217993079585,0.9667820069204153], + [0.9690888119953864,0.9668589004229142,0.9680123029603999], + [0.9673202614379085,0.968473663975394,0.9656286043829296], + [0.9647058823529412,0.9681660899653979,0.9596309111880046], + [0.9620915032679739,0.9678585159554017,0.9536332179930797], + [0.9594771241830066,0.9675509419454056,0.9476355247981546], + [0.9568627450980393,0.9672433679354094,0.9416378316032298], + [0.954248366013072,0.9669357939254133,0.9356401384083045], + [0.9516339869281046,0.9666282199154171,0.9296424452133795], + [0.9490196078431373,0.966320645905421,0.9236447520184545], + [0.94640522875817,0.9660130718954248,0.9176470588235295], + [0.9437908496732027,0.9657054978854287,0.9116493656286044], + [0.9411764705882353,0.9653979238754326,0.9056516724336794], + [0.938562091503268,0.9650903498654364,0.8996539792387543], + [0.9359477124183007,0.9647827758554403,0.8936562860438294], + [0.9333333333333333,0.9644752018454441,0.8876585928489044], + [0.930718954248366,0.964167627835448,0.8816608996539793], + [0.9281045751633987,0.9638600538254518,0.8756632064590543], + [0.9254901960784314,0.9635524798154557,0.8696655132641293], + [0.9228758169934641,0.9632449058054595,0.8636678200692043], + [0.9202614379084968,0.9629373317954633,0.8576701268742792], + [0.9176470588235295,0.9626297577854671,0.8516724336793542], + [0.9150326797385623,0.962322183775471,0.8456747404844294], + [0.9124183006535949,0.9620146097654748,0.8396770472895041], + [0.9098039215686275,0.9617070357554787,0.8336793540945792], + [0.9071895424836602,0.9613994617454825,0.8276816608996541], + [0.9045751633986929,0.9610918877354864,0.8216839677047291], + [0.9019607843137256,0.9607843137254902,0.8156862745098041], + [0.8948865820838141,0.9577085736255287,0.8043060361399464], + [0.8878123798539026,0.9546328335255672,0.7929257977700888], + [0.880738177623991,0.9515570934256057,0.781545559400231], + [0.8736639753940794,0.9484813533256441,0.7701653210303733], + [0.8665897731641679,0.9454056132256825,0.7587850826605155], + [0.8595155709342562,0.942329873125721,0.7474048442906578], + [0.8524413687043447,0.9392541330257594,0.7360246059208], + [0.8453671664744331,0.9361783929257979,0.7246443675509423], + [0.8382929642445216,0.9331026528258363,0.7132641291810845], + [0.83121876201461,0.9300269127258748,0.7018838908112268], + [0.8241445597846986,0.9269511726259133,0.6905036524413694], + [0.8170703575547869,0.9238754325259516,0.6791234140715112], + [0.8099961553248752,0.9207996924259901,0.6677431757016535], + [0.8029219530949636,0.9177239523260285,0.6563629373317957], + [0.7958477508650521,0.914648212226067,0.644982698961938], + [0.7887735486351405,0.9115724721261054,0.6336024605920803], + [0.781699346405229,0.9084967320261439,0.6222222222222226], + [0.7746251441753174,0.9054209919261823,0.6108419838523648], + [0.7675509419454059,0.9023452518262207,0.5994617454825071], + [0.7604767397154942,0.8992695117262592,0.5880815071126493], + [0.7534025374855826,0.8961937716262977,0.5767012687427916], + [0.7463283352556711,0.8931180315263361,0.5653210303729338], + [0.7392541330257595,0.8900422914263746,0.5539407920030761], + [0.732179930795848,0.886966551326413,0.5425605536332183], + [0.7251057285659364,0.8838908112264514,0.5311803152633606], + [0.7171856978085354,0.8795078815840063,0.520184544405998], + [0.7084198385236452,0.8738177623990776,0.5095732410611309], + [0.6996539792387545,0.8681276432141485,0.49896193771626324], + [0.6908881199538641,0.8624375240292197,0.4883506343713959], + [0.6821222606689736,0.8567474048442908,0.47773933102652855], + [0.6733564013840833,0.8510572856593619,0.4671280276816612], + [0.6645905420991928,0.845367166474433,0.4565167243367938], + [0.6558246828143024,0.8396770472895041,0.4459054209919264], + [0.6470588235294119,0.8339869281045753,0.43529411764705905], + [0.6382929642445215,0.8282968089196464,0.4246828143021917], + [0.629527104959631,0.8226066897347175,0.4140715109573243], + [0.6207612456747407,0.8169165705497886,0.40346020761245693], + [0.6119953863898502,0.8112264513648597,0.39284890426758956], + [0.6032295271049597,0.8055363321799309,0.3822376009227222], + [0.5944636678200693,0.799846212995002,0.3716262975778548], + [0.5856978085351788,0.7941560938100731,0.36101499423298744], + [0.5769319492502885,0.7884659746251442,0.35040369088812007], + [0.5681660899653982,0.7827758554402156,0.33979238754325297], + [0.5594002306805076,0.7770857362552865,0.3291810841983853], + [0.5506343713956171,0.7713956170703576,0.31856978085351795], + [0.5418685121107267,0.7657054978854287,0.3079584775086506], + [0.5331026528258362,0.7600153787004998,0.2973471741637832], + [0.5243367935409459,0.754325259515571,0.28673587081891583], + [0.5155709342560554,0.7486351403306422,0.27612456747404845], + [0.506805074971165,0.7429450211457133,0.2655132641291811], + [0.4980392156862745,0.7372549019607844,0.2549019607843137], + [0.49034986543637066,0.7307958477508651,0.24998077662437523], + [0.48266051518646674,0.7243367935409458,0.24505959246443673], + [0.4749711649365629,0.7178777393310266,0.24013840830449826], + [0.46728181468665897,0.7114186851211073,0.23521722414455978], + [0.4595924644367551,0.7049596309111881,0.23029603998462128], + [0.4519031141868512,0.6985005767012687,0.2253748558246828], + [0.44421376393694734,0.6920415224913495,0.22045367166474433], + [0.43652441368704364,0.6855824682814304,0.21553248750480597], + [0.42883506343713956,0.679123414071511,0.21061130334486736], + [0.4211457131872357,0.6726643598615917,0.20569011918492885], + [0.4134563629373318,0.6662053056516725,0.20076893502499038], + [0.4057670126874279,0.6597462514417531,0.1958477508650519], + [0.398077662437524,0.6532871972318339,0.19092656670511343], + [0.39038831218762016,0.6468281430219146,0.18600538254517493], + [0.38269896193771624,0.6403690888119954,0.18108419838523643], + [0.3750096116878124,0.6339100346020761,0.17616301422529795], + [0.3673202614379085,0.6274509803921569,0.17124183006535948], + [0.3596309111880046,0.6209919261822376,0.166320645905421], + [0.3519415609381007,0.6145328719723183,0.1613994617454825], + [0.34425221068819684,0.608073817762399,0.15647827758554403], + [0.336562860438293,0.6016147635524798,0.15155709342560555], + [0.32887351018838906,0.5951557093425606,0.14663590926566705], + [0.32118415993848515,0.5886966551326412,0.14171472510572858], + [0.3134948096885815,0.5822376009227221,0.13679354094579022], + [0.30580545943867743,0.5757785467128027,0.13187235678585163], + [0.299038831218762,0.5690119184928873,0.12879661668589004], + [0.29319492502883504,0.5619377162629757,0.12756632064590542], + [0.2873510188389081,0.5548635140330642,0.1263360246059208], + [0.28150711264898115,0.5477893118031526,0.1251057285659362], + [0.2756632064590542,0.540715109573241,0.12387543252595157], + [0.26981930026912726,0.5336409073433295,0.12264513648596695], + [0.2639753940792003,0.5265667051134179,0.12141484044598233], + [0.2581314878892733,0.5194925028835063,0.1201845444059977], + [0.2522875816993464,0.5124183006535947,0.11895424836601308], + [0.24644367550941945,0.5053440984236832,0.11772395232602846], + [0.2405997693194925,0.4982698961937716,0.11649365628604384], + [0.23475586312956553,0.49119569396386004,0.11526336024605921], + [0.22891195693963862,0.4841214917339485,0.11403306420607459], + [0.22306805074971164,0.4770472895040369,0.11280276816608997], + [0.21722414455978487,0.4699730872741255,0.11157247212610538], + [0.21138023836985775,0.4628988850442137,0.11034217608612074], + [0.20553633217993078,0.45582468281430216,0.1091118800461361], + [0.19969242599000386,0.4487504805843906,0.10788158400615148], + [0.1938485198000769,0.44167627835447903,0.10665128796616687], + [0.18800461361014997,0.43460207612456747,0.10542099192618223], + [0.182160707420223,0.42752787389465585,0.10419069588619762], + [0.17631680123029606,0.42045367166474434,0.102960399846213], + [0.1704728950403691,0.4133794694348327,0.10173010380622838], + [0.16462898885044217,0.4063052672049212,0.10049980776624376], + [0.1587850826605152,0.3992310649750096,0.09926951172625913], + [0.15294117647058825,0.39215686274509803,0.09803921568627451] ], + PiYG_r: [ + [0.15294117647058825,0.39215686274509803,0.09803921568627451], + [0.1587850826605152,0.3992310649750096,0.09926951172625913], + [0.16462898885044214,0.40630526720492116,0.10049980776624375], + [0.1704728950403691,0.4133794694348327,0.10173010380622838], + [0.17631680123029606,0.42045367166474434,0.102960399846213], + [0.182160707420223,0.4275278738946559,0.10419069588619762], + [0.18800461361014995,0.43460207612456747,0.10542099192618223], + [0.1938485198000769,0.44167627835447903,0.10665128796616687], + [0.19969242599000386,0.4487504805843906,0.10788158400615148], + [0.2055363321799308,0.45582468281430216,0.1091118800461361], + [0.21138023836985775,0.4628988850442137,0.11034217608612072], + [0.2172241445597847,0.46997308727412535,0.11157247212610535], + [0.22306805074971164,0.4770472895040369,0.11280276816608997], + [0.2289119569396386,0.4841214917339485,0.11403306420607459], + [0.23475586312956553,0.49119569396386004,0.11526336024605921], + [0.2405997693194925,0.4982698961937716,0.11649365628604383], + [0.24644367550941945,0.5053440984236832,0.11772395232602846], + [0.2522875816993464,0.5124183006535947,0.11895424836601308], + [0.25813148788927337,0.5194925028835063,0.1201845444059977], + [0.2639753940792003,0.5265667051134179,0.12141484044598233], + [0.26981930026912726,0.5336409073433295,0.12264513648596695], + [0.2756632064590542,0.540715109573241,0.12387543252595157], + [0.28150711264898115,0.5477893118031526,0.1251057285659362], + [0.2873510188389081,0.5548635140330642,0.1263360246059208], + [0.29319492502883504,0.5619377162629757,0.12756632064590542], + [0.29903883121876196,0.5690119184928873,0.12879661668589004], + [0.30580545943867743,0.5757785467128027,0.1318723567858516], + [0.3134948096885813,0.582237600922722,0.1367935409457901], + [0.3211841599384852,0.5886966551326412,0.14171472510572858], + [0.32887351018838906,0.5951557093425606,0.14663590926566705], + [0.336562860438293,0.6016147635524798,0.15155709342560555], + [0.34425221068819684,0.6080738177623991,0.15647827758554403], + [0.3519415609381007,0.6145328719723183,0.1613994617454825], + [0.35963091118800455,0.6209919261822375,0.16632064590542095], + [0.36732026143790847,0.6274509803921569,0.17124183006535948], + [0.3750096116878124,0.6339100346020761,0.17616301422529795], + [0.38269896193771624,0.6403690888119954,0.18108419838523643], + [0.3903883121876201,0.6468281430219146,0.1860053825451749], + [0.398077662437524,0.6532871972318339,0.1909265667051134], + [0.4057670126874279,0.6597462514417531,0.1958477508650519], + [0.4134563629373318,0.6662053056516725,0.20076893502499038], + [0.4211457131872356,0.6726643598615917,0.20569011918492883], + [0.42883506343713956,0.679123414071511,0.21061130334486736], + [0.4365244136870434,0.6855824682814302,0.21553248750480583], + [0.44421376393694734,0.6920415224913495,0.22045367166474433], + [0.45190311418685114,0.6985005767012687,0.22537485582468275], + [0.4595924644367551,0.7049596309111881,0.23029603998462128], + [0.46728181468665897,0.7114186851211073,0.23521722414455976], + [0.4749711649365629,0.7178777393310265,0.24013840830449826], + [0.4826605151864667,0.7243367935409458,0.2450595924644367], + [0.4903498654363706,0.7307958477508651,0.24998077662437523], + [0.4980392156862745,0.7372549019607844,0.2549019607843137], + [0.5068050749711649,0.7429450211457133,0.2655132641291811], + [0.5155709342560553,0.748635140330642,0.27612456747404834], + [0.5243367935409458,0.754325259515571,0.2867358708189158], + [0.5331026528258362,0.7600153787004998,0.29734717416378315], + [0.5418685121107266,0.7657054978854287,0.30795847750865046], + [0.550634371395617,0.7713956170703575,0.3185697808535177], + [0.5594002306805075,0.7770857362552864,0.3291810841983852], + [0.5681660899653979,0.7827758554402153,0.3397923875432525], + [0.5769319492502883,0.7884659746251441,0.3504036908881199], + [0.5856978085351787,0.794156093810073,0.36101499423298716], + [0.5944636678200692,0.7998462129950019,0.3716262975778546], + [0.6032295271049596,0.8055363321799308,0.38223760092272197], + [0.61199538638985,0.8112264513648596,0.39284890426758934], + [0.6207612456747404,0.8169165705497885,0.4034602076124567], + [0.6295271049596307,0.8226066897347173,0.41407151095732386], + [0.6382929642445212,0.8282968089196463,0.42468281430219135], + [0.6470588235294117,0.8339869281045751,0.4352941176470587], + [0.6558246828143021,0.839677047289504,0.4459054209919261], + [0.6645905420991925,0.8453671664744329,0.45651672433679347], + [0.6733564013840829,0.8510572856593617,0.4671280276816608], + [0.6821222606689734,0.8567474048442906,0.4777393310265281], + [0.6908881199538638,0.8624375240292195,0.4883506343713955], + [0.699653979238754,0.8681276432141483,0.49896193771626274], + [0.7084198385236447,0.8738177623990772,0.5095732410611302], + [0.717185697808535,0.8795078815840061,0.5201845444059976], + [0.725105728565936,0.8838908112264513,0.5311803152633601], + [0.7321799307958476,0.8869665513264129,0.5425605536332179], + [0.7392541330257593,0.8900422914263744,0.5539407920030757], + [0.7463283352556708,0.893118031526336,0.5653210303729334], + [0.7534025374855824,0.8961937716262975,0.5767012687427912], + [0.7604767397154939,0.899269511726259,0.5880815071126487], + [0.7675509419454055,0.9023452518262206,0.5994617454825066], + [0.7746251441753171,0.9054209919261822,0.6108419838523644], + [0.7816993464052286,0.9084967320261438,0.6222222222222221], + [0.7887735486351403,0.9115724721261053,0.6336024605920799], + [0.7958477508650519,0.9146482122260668,0.6449826989619376], + [0.8029219530949634,0.9177239523260284,0.6563629373317954], + [0.809996155324875,0.92079969242599,0.6677431757016531], + [0.8170703575547865,0.9238754325259515,0.6791234140715108], + [0.8241445597846981,0.9269511726259131,0.6905036524413686], + [0.8312187620146098,0.9300269127258747,0.7018838908112264], + [0.8382929642445213,0.9331026528258362,0.7132641291810842], + [0.8453671664744329,0.9361783929257977,0.7246443675509419], + [0.8524413687043445,0.9392541330257593,0.7360246059207997], + [0.859515570934256,0.9423298731257209,0.7474048442906573], + [0.8665897731641676,0.9454056132256824,0.7587850826605151], + [0.8736639753940791,0.948481353325644,0.7701653210303727], + [0.8807381776239908,0.9515570934256056,0.7815455594002307], + [0.8878123798539024,0.9546328335255672,0.7929257977700884], + [0.8948865820838139,0.9577085736255286,0.8043060361399461], + [0.9019607843137255,0.9607843137254902,0.8156862745098039], + [0.9045751633986928,0.9610918877354864,0.821683967704729], + [0.9071895424836601,0.9613994617454825,0.827681660899654], + [0.9098039215686274,0.9617070357554787,0.833679354094579], + [0.9124183006535947,0.9620146097654748,0.839677047289504], + [0.9150326797385621,0.962322183775471,0.845674740484429], + [0.9176470588235294,0.9626297577854671,0.8516724336793541], + [0.9202614379084968,0.9629373317954633,0.8576701268742791], + [0.9228758169934641,0.9632449058054594,0.8636678200692042], + [0.9254901960784314,0.9635524798154557,0.8696655132641292], + [0.9281045751633987,0.9638600538254518,0.8756632064590542], + [0.930718954248366,0.964167627835448,0.8816608996539792], + [0.9333333333333333,0.9644752018454441,0.8876585928489041], + [0.9359477124183007,0.9647827758554403,0.8936562860438293], + [0.938562091503268,0.9650903498654364,0.8996539792387543], + [0.9411764705882353,0.9653979238754326,0.9056516724336794], + [0.9437908496732026,0.9657054978854287,0.9116493656286044], + [0.9464052287581699,0.9660130718954248,0.9176470588235294], + [0.9490196078431372,0.966320645905421,0.9236447520184544], + [0.9516339869281045,0.9666282199154171,0.9296424452133795], + [0.9542483660130718,0.9669357939254133,0.9356401384083044], + [0.9568627450980393,0.9672433679354094,0.9416378316032296], + [0.9594771241830066,0.9675509419454056,0.9476355247981545], + [0.9620915032679739,0.9678585159554017,0.9536332179930795], + [0.9647058823529412,0.9681660899653979,0.9596309111880046], + [0.9673202614379085,0.968473663975394,0.9656286043829296], + [0.9690888119953864,0.9668589004229142,0.9680123029603999], + [0.9700115340253749,0.9633217993079585,0.9667820069204153], + [0.9709342560553633,0.9597846981930027,0.9655517108804306], + [0.9718569780853518,0.956247597078047,0.964321414840446], + [0.9727797001153402,0.9527104959630912,0.9630911188004614], + [0.9737024221453288,0.9491733948481353,0.9618608227604768], + [0.9746251441753172,0.9456362937331796,0.9606305267204921], + [0.9755478662053056,0.9420991926182238,0.9594002306805075], + [0.9764705882352941,0.938562091503268,0.9581699346405229], + [0.9773933102652825,0.9350249903883122,0.9569396386005383], + [0.9783160322952711,0.9314878892733565,0.9557093425605536], + [0.9792387543252595,0.9279507881584006,0.954479046520569], + [0.980161476355248,0.9244136870434448,0.9532487504805844], + [0.9810841983852364,0.9208765859284891,0.9520184544405997], + [0.9820069204152249,0.9173394848135333,0.9507881584006151], + [0.9829296424452134,0.9138023836985776,0.9495578623606306], + [0.9838523644752019,0.9102652825836217,0.948327566320646], + [0.9847750865051903,0.906728181468666,0.9470972702806613], + [0.9856978085351787,0.9031910803537102,0.9458669742406767], + [0.9866205305651673,0.8996539792387543,0.9446366782006921], + [0.9875432525951557,0.8961168781237987,0.9434063821607075], + [0.9884659746251442,0.8925797770088428,0.9421760861207228], + [0.9893886966551326,0.8890426758938871,0.9409457900807382], + [0.9903114186851211,0.8855055747789313,0.9397154940407536], + [0.9912341407151096,0.8819684736639755,0.938485198000769], + [0.9921568627450981,0.8784313725490197,0.9372549019607843], + [0.9903114186851212,0.8719723183391005,0.9340253748558248], + [0.9884659746251443,0.8655132641291813,0.9307958477508651], + [0.9866205305651673,0.859054209919262,0.9275663206459055], + [0.9847750865051904,0.8525951557093427,0.9243367935409459], + [0.9829296424452134,0.8461361014994235,0.9211072664359863], + [0.9810841983852365,0.8396770472895042,0.9178777393310266], + [0.9792387543252595,0.833217993079585,0.914648212226067], + [0.9773933102652826,0.8267589388696657,0.9114186851211074], + [0.9755478662053058,0.8202998846597465,0.9081891580161477], + [0.9737024221453288,0.8138408304498271,0.904959630911188], + [0.9718569780853519,0.8073817762399081,0.9017301038062285], + [0.9700115340253749,0.8009227220299886,0.8985005767012688], + [0.968166089965398,0.7944636678200694,0.8952710495963092], + [0.966320645905421,0.7880046136101502,0.8920415224913496], + [0.9644752018454441,0.7815455594002308,0.8888119953863899], + [0.9626297577854672,0.7750865051903116,0.8855824682814303], + [0.9607843137254902,0.7686274509803923,0.8823529411764707], + [0.9589388696655133,0.7621683967704731,0.8791234140715111], + [0.9570934256055363,0.7557093425605538,0.8758938869665513], + [0.9552479815455595,0.7492502883506346,0.8726643598615917], + [0.9534025374855825,0.7427912341407154,0.8694348327566321], + [0.9515570934256056,0.736332179930796,0.8662053056516725], + [0.9497116493656287,0.7298731257208768,0.8629757785467128], + [0.9478662053056517,0.7234140715109575,0.8597462514417532], + [0.9460207612456748,0.7169550173010383,0.8565167243367936], + [0.9436370626682046,0.7088811995386393,0.8515186466743562], + [0.9407151095732412,0.6991926182237607,0.8447520184544409], + [0.9377931564782777,0.6895040369088815,0.8379853902345253], + [0.9348712033833142,0.6798154555940026,0.8312187620146099], + [0.9319492502883506,0.6701268742791237,0.8244521337946945], + [0.9290272971933872,0.6604382929642447,0.817685505574779], + [0.9261053440984237,0.6507497116493659,0.8109188773548637], + [0.9231833910034603,0.641061130334487,0.8041522491349482], + [0.9202614379084968,0.631372549019608,0.7973856209150327], + [0.9173394848135333,0.6216839677047291,0.7906189926951174], + [0.9144175317185698,0.6119953863898502,0.7838523644752019], + [0.9114955786236063,0.6023068050749714,0.7770857362552865], + [0.9085736255286428,0.5926182237600924,0.7703191080353711], + [0.9056516724336794,0.5829296424452135,0.7635524798154557], + [0.9027297193387159,0.5732410611303346,0.7567858515955402], + [0.8998077662437525,0.5635524798154556,0.7500192233756249], + [0.8968858131487889,0.5538638985005768,0.7432525951557094], + [0.8939638600538256,0.5441753171856982,0.7364859669357942], + [0.891041906958862,0.534486735870819,0.7297193387158786], + [0.8881199538638985,0.5247981545559401,0.7229527104959631], + [0.8851980007689351,0.5151095732410612,0.7161860822760477], + [0.8822760476739716,0.5054209919261823,0.7094194540561323], + [0.8793540945790081,0.49573241061130335,0.7026528258362169], + [0.8764321414840446,0.4860438292964245,0.6958861976163014], + [0.8735101883890811,0.4763552479815456,0.6891195693963861], + [0.8705882352941177,0.4666666666666667,0.6823529411764706], + [0.8667435601691658,0.45251826220684355,0.6748173779315648], + [0.8628988850442137,0.43836985774702036,0.667281814686659], + [0.8590542099192618,0.42422145328719724,0.6597462514417531], + [0.85520953479431,0.4100730488273741,0.6522106881968474], + [0.8513648596693579,0.3959246443675509,0.6446751249519416], + [0.847520184544406,0.3817762399077278,0.6371395617070358], + [0.8436755094194541,0.36762783544790467,0.62960399846213], + [0.8398308342945022,0.35347943098808193,0.6220684352172243], + [0.8359861591695502,0.33933102652825836,0.6145328719723183], + [0.8321414840445982,0.32518262206843523,0.6069973087274125], + [0.8282968089196463,0.31103421760861205,0.5994617454825067], + [0.8244521337946944,0.2968858131487889,0.591926182237601], + [0.8206074586697424,0.2827374086889658,0.5843906189926951], + [0.8167627835447905,0.26858900422914267,0.5768550557477893], + [0.8129181084198386,0.2544405997693195,0.5693194925028835], + [0.8090734332948866,0.24029219530949636,0.5617839292579777], + [0.8052287581699347,0.22614379084967323,0.5542483660130719], + [0.8013840830449828,0.21199538638985005,0.546712802768166], + [0.7975394079200308,0.19784698193002692,0.5391772395232602], + [0.7936947327950788,0.1836985774702038,0.5316416762783545], + [0.789850057670127,0.16955017301038067,0.5241061130334487], + [0.7860053825451749,0.15540176855055748,0.5165705497885429], + [0.782160707420223,0.14125336409073436,0.509034986543637], + [0.7783160322952711,0.12710495963091162,0.5014994232987314], + [0.7744713571703191,0.11295655517108805,0.4939638600538254], + [0.768319876970396,0.10388312187620145,0.48688965782391386], + [0.7598615916955017,0.09988465974625144,0.4802768166089965], + [0.7514033064206075,0.09588619761630142,0.4736639753940792], + [0.7429450211457133,0.0918877354863514,0.46705113417916183], + [0.7344867358708189,0.08788927335640138,0.4604382929642445], + [0.7260284505959247,0.08389081122645137,0.45382545174932715], + [0.7175701653210305,0.07989234909650135,0.44721261053440986], + [0.7091118800461361,0.07589388696655133,0.4405997693194925], + [0.7006535947712419,0.0718954248366013,0.4339869281045752], + [0.6921953094963476,0.06789696270665128,0.42737408688965783], + [0.6837370242214533,0.06389850057670127,0.4207612456747405], + [0.6752787389465591,0.05990003844675125,0.41414840445982315], + [0.6668204536716648,0.05590157631680123,0.4075355632449058], + [0.6583621683967705,0.05190311418685121,0.40092272202998847], + [0.6499038831218764,0.04790465205690131,0.39430988081507135], + [0.641445597846982,0.043906189926951174,0.3876970396001538], + [0.6329873125720877,0.03990772779700115,0.38108419838523644], + [0.6245290272971934,0.03590926566705113,0.3744713571703191], + [0.6160707420222992,0.031910803537101115,0.36785851595540175], + [0.6076124567474048,0.027912341407151098,0.3612456747404844], + [0.5991541714725106,0.023913879277201067,0.35463283352556707], + [0.5906958861976164,0.019915417147251063,0.34801999231064973], + [0.582237600922722,0.015916955017301046,0.34140715109573244], + [0.5737793156478278,0.011918492887351029,0.3347943098808151], + [0.5653210303729335,0.007920030757400998,0.32818146866589776], + [0.5568627450980392,0.00392156862745098,0.3215686274509804] ], + PuBu: [ + [1.0,0.9686274509803922,0.984313725490196], + [0.9976624375240292,0.9666589773164168,0.9832064590542099], + [0.9953248750480584,0.9646905036524414,0.9820991926182238], + [0.9929873125720876,0.962722029988466,0.9809919261822375], + [0.9906497500961169,0.9607535563244906,0.9798846597462514], + [0.988312187620146,0.9587850826605152,0.9787773933102653], + [0.9859746251441753,0.9568166089965398,0.9776701268742791], + [0.9836370626682045,0.9548481353325644,0.9765628604382929], + [0.9812995001922338,0.9528796616685891,0.9754555940023067], + [0.9789619377162629,0.9509111880046136,0.9743483275663206], + [0.9766243752402922,0.9489427143406383,0.9732410611303345], + [0.9742868127643214,0.9469742406766628,0.9721337946943482], + [0.9719492502883507,0.9450057670126875,0.9710265282583621], + [0.9696116878123798,0.943037293348712,0.969919261822376], + [0.9672741253364091,0.9410688196847367,0.9688119953863898], + [0.9649365628604383,0.9391003460207612,0.9677047289504036], + [0.9625990003844676,0.9371318723567859,0.9665974625144175], + [0.9602614379084967,0.9351633986928105,0.9654901960784313], + [0.957923875432526,0.933194925028835,0.9643829296424452], + [0.9555863129565552,0.9312264513648597,0.963275663206459], + [0.9532487504805844,0.9292579777008843,0.9621683967704728], + [0.9509111880046136,0.9272895040369089,0.9610611303344867], + [0.9485736255286429,0.9253210303729335,0.9599538638985006], + [0.946236063052672,0.9233525567089581,0.9588465974625143], + [0.9438985005767013,0.9213840830449826,0.9577393310265282], + [0.9415609381007305,0.9194156093810073,0.9566320645905421], + [0.9392233756247598,0.917447135717032,0.9555247981545559], + [0.9368858131487889,0.9154786620530565,0.9544175317185697], + [0.9345482506728182,0.9135101883890812,0.9533102652825836], + [0.9322106881968474,0.9115417147251057,0.9522029988465974], + [0.9298731257208767,0.9095732410611304,0.9510957324106113], + [0.9275355632449058,0.9076047673971549,0.949988465974625], + [0.9250595924644368,0.9055440215301807,0.9488350634371395], + [0.9216147635524798,0.9028373702422146,0.947358708189158], + [0.9181699346405229,0.9001307189542483,0.9458823529411764], + [0.914725105728566,0.8974240676662822,0.9444059976931949], + [0.9112802768166091,0.894717416378316,0.9429296424452134], + [0.9078354479046521,0.8920107650903499,0.9414532871972318], + [0.9043906189926951,0.8893041138023837,0.9399769319492502], + [0.9009457900807382,0.8865974625144175,0.9385005767012687], + [0.8975009611687813,0.8838908112264514,0.9370242214532871], + [0.8940561322568243,0.8811841599384852,0.9355478662053056], + [0.8906113033448674,0.878477508650519,0.9340715109573241], + [0.8871664744329104,0.8757708573625529,0.9325951557093426], + [0.8837216455209536,0.8730642060745867,0.931118800461361], + [0.8802768166089966,0.8703575547866206,0.9296424452133795], + [0.8768319876970396,0.8676509034986544,0.928166089965398], + [0.8733871587850827,0.8649442522106882,0.9266897347174163], + [0.8699423298731257,0.8622376009227221,0.9252133794694348], + [0.8664975009611688,0.8595309496347558,0.9237370242214533], + [0.8630526720492119,0.8568242983467896,0.9222606689734717], + [0.8596078431372549,0.8541176470588235,0.9207843137254902], + [0.856163014225298,0.8514109957708573,0.9193079584775087], + [0.8527181853133411,0.8487043444828912,0.9178316032295271], + [0.8492733564013841,0.845997693194925,0.9163552479815456], + [0.8458285274894272,0.8432910419069588,0.914878892733564], + [0.8423836985774702,0.8405843906189927,0.9134025374855824], + [0.8389388696655133,0.8378777393310265,0.9119261822376009], + [0.8354940407535563,0.8351710880430603,0.9104498269896194], + [0.8320492118415994,0.8324644367550942,0.9089734717416378], + [0.8286043829296424,0.829757785467128,0.9074971164936563], + [0.8251595540176855,0.8270511341791619,0.9060207612456748], + [0.8217147251057285,0.8243444828911957,0.9045444059976933], + [0.8182698961937717,0.8216378316032296,0.9030680507497116], + [0.8143944636678201,0.8189926951172626,0.9016224529027297], + [0.8092272202998847,0.8165321030372933,0.9002691272587466], + [0.8040599769319493,0.8140715109573241,0.8989158016147636], + [0.7988927335640138,0.8116109188773548,0.8975624759707804], + [0.7937254901960784,0.8091503267973856,0.8962091503267974], + [0.788558246828143,0.8066897347174163,0.8948558246828143], + [0.7833910034602076,0.8042291426374472,0.8935024990388312], + [0.7782237600922722,0.8017685505574779,0.8921491733948481], + [0.7730565167243368,0.7993079584775087,0.8907958477508651], + [0.7678892733564013,0.7968473663975394,0.889442522106882], + [0.762722029988466,0.7943867743175702,0.8880891964628989], + [0.7575547866205306,0.7919261822376009,0.8867358708189158], + [0.7523875432525952,0.7894655901576316,0.8853825451749328], + [0.7472202998846598,0.7870049980776624,0.8840292195309496], + [0.7420530565167244,0.7845444059976932,0.8826758938869665], + [0.736885813148789,0.782083813917724,0.8813225682429835], + [0.7317185697808535,0.7796232218377547,0.8799692425990003], + [0.7265513264129181,0.7771626297577855,0.8786159169550173], + [0.7213840830449828,0.7747020376778163,0.8772625913110342], + [0.7162168396770473,0.772241445597847,0.8759092656670511], + [0.7110495963091119,0.7697808535178777,0.874555940023068], + [0.7058823529411765,0.7673202614379085,0.873202614379085], + [0.7007151095732411,0.7648596693579393,0.8718492887351018], + [0.6955478662053056,0.7623990772779701,0.8704959630911188], + [0.6903806228373702,0.7599384851980008,0.8691426374471357], + [0.6852133794694348,0.7574778931180316,0.8677893118031526], + [0.6800461361014996,0.7550173010380623,0.8664359861591695], + [0.674878892733564,0.7525567089580931,0.8650826605151865], + [0.6697116493656287,0.7500961168781238,0.8637293348712033], + [0.6645444059976933,0.7476355247981545,0.8623760092272202], + [0.6593771626297578,0.7451749327181854,0.8610226835832372], + [0.6542099192618224,0.7427143406382161,0.859669357939254], + [0.6486735870818916,0.7402537485582469,0.8582698961937716], + [0.6425221068819685,0.7377931564782776,0.8567935409457901], + [0.6363706266820455,0.7353325643983084,0.8553171856978085], + [0.6302191464821223,0.7328719723183391,0.853840830449827], + [0.6240676662821991,0.7304113802383699,0.8523644752018454], + [0.617916186082276,0.7279507881584006,0.8508881199538638], + [0.611764705882353,0.7254901960784313,0.8494117647058823], + [0.6056132256824298,0.7230296039984622,0.8479354094579008], + [0.5994617454825067,0.7205690119184929,0.8464590542099192], + [0.5933102652825837,0.7181084198385237,0.8449826989619377], + [0.5871587850826606,0.7156478277585544,0.8435063437139562], + [0.5810073048827374,0.7131872356785852,0.8420299884659745], + [0.5748558246828143,0.7107266435986159,0.840553633217993], + [0.5687043444828912,0.7082660515186466,0.8390772779700115], + [0.5625528642829681,0.7058054594386775,0.83760092272203], + [0.556401384083045,0.7033448673587082,0.8361245674740484], + [0.5502499038831219,0.700884275278739,0.8346482122260669], + [0.5440984236831988,0.6984236831987697,0.8331718569780854], + [0.5379469434832758,0.6959630911188005,0.8316955017301038], + [0.5317954632833526,0.6935024990388312,0.8302191464821222], + [0.5256439830834294,0.691041906958862,0.8287427912341407], + [0.5194925028835063,0.6885813148788927,0.8272664359861591], + [0.5133410226835833,0.6861207227989234,0.8257900807381776], + [0.5071895424836601,0.6836601307189543,0.8243137254901961], + [0.501038062283737,0.681199538638985,0.8228373702422145], + [0.4948865820838139,0.6787389465590158,0.821361014994233], + [0.4887351018838909,0.6762783544790465,0.8198846597462515], + [0.48258362168396773,0.6738177623990773,0.8184083044982698], + [0.4764321414840446,0.671357170319108,0.8169319492502883], + [0.4702806612841215,0.6688965782391387,0.8154555940023068], + [0.46412918108419843,0.6664359861591695,0.8139792387543252], + [0.45797770088427525,0.6639753940792003,0.8125028835063437], + [0.4510880430603614,0.6612072279892349,0.8108419838523645], + [0.44346020761245675,0.6581314878892733,0.8089965397923875], + [0.43583237216455206,0.6550557477893117,0.8071510957324106], + [0.42820453671664743,0.6519800076893503,0.8053056516724337], + [0.420576701268743,0.6489042675893888,0.8034602076124568], + [0.4129488658208381,0.6458285274894271,0.8016147635524798], + [0.4053210303729335,0.6427527873894656,0.7997693194925029], + [0.39769319492502886,0.639677047289504,0.797923875432526], + [0.3900653594771242,0.6366013071895424,0.796078431372549], + [0.38243752402921954,0.633525567089581,0.7942329873125721], + [0.37480968858131486,0.6304498269896194,0.7923875432525952], + [0.36718185313341023,0.6273740868896578,0.7905420991926182], + [0.35955401768550554,0.6242983467896963,0.7886966551326413], + [0.3519261822376009,0.6212226066897347,0.7868512110726643], + [0.3442983467896963,0.6181468665897731,0.7850057670126874], + [0.3366705113417916,0.6150711264898115,0.7831603229527105], + [0.3290426758938869,0.6119953863898501,0.7813148788927335], + [0.3214148404459823,0.6089196462898885,0.7794694348327567], + [0.31378700499807766,0.6058439061899269,0.7776239907727797], + [0.30615916955017297,0.6027681660899654,0.7757785467128028], + [0.29853133410226856,0.5996924259900039,0.7739331026528259], + [0.2909034986543637,0.5966166858900422,0.7720876585928489], + [0.283275663206459,0.5935409457900808,0.770242214532872], + [0.2756478277585544,0.5904652056901192,0.768396770472895], + [0.26801999231064977,0.5873894655901576,0.7665513264129181], + [0.2603921568627451,0.584313725490196,0.7647058823529411], + [0.2527643214148404,0.5812379853902345,0.7628604382929642], + [0.24513648596693577,0.5781622452902729,0.7610149942329874], + [0.23750865051903114,0.5750865051903113,0.7591695501730104], + [0.22988081507112648,0.5720107650903499,0.7573241061130335], + [0.22225297962322182,0.5689350249903883,0.7554786620530565], + [0.21462514417531717,0.5658592848904267,0.7536332179930796], + [0.20799692425990005,0.5622452902729719,0.7517108804306036], + [0.20196847366397538,0.5583083429450212,0.7497424067666282], + [0.19594002306805075,0.5543713956170704,0.7477739331026528], + [0.18991157247212612,0.5504344482891196,0.7458054594386774], + [0.18388312187620165,0.5464975009611689,0.743836985774702], + [0.17785467128027682,0.542560553633218,0.7418685121107267], + [0.17182622068435216,0.5386236063052672,0.7399000384467512], + [0.16579777008842753,0.5346866589773164,0.7379315647827759], + [0.1597693194925029,0.5307497116493656,0.7359630911188004], + [0.15374086889657823,0.5268127643214149,0.7339946174548251], + [0.1477124183006536,0.5228758169934641,0.7320261437908496], + [0.14168396770472896,0.5189388696655133,0.7300576701268743], + [0.1356555171088043,0.5150019223375625,0.7280891964628988], + [0.12962706651287967,0.5110649750096117,0.7261207227989235], + [0.12359861591695502,0.5071280276816609,0.7241522491349481], + [0.11757016532103039,0.5031910803537101,0.7221837754709727], + [0.11154171472510573,0.49925413302575933,0.7202153018069973], + [0.10551326412918108,0.4953171856978085,0.7182468281430219], + [0.09948481353325644,0.4913802383698577,0.7162783544790465], + [0.0934563629373318,0.487443291041907,0.7143098808150711], + [0.08742791234140733,0.4835063437139563,0.7123414071510957], + [0.08139946174548252,0.4795693963860054,0.7103729334871203], + [0.07537101114955785,0.4756324490580546,0.7084044598231449], + [0.06934256055363322,0.4716955017301038,0.7064359861591696], + [0.06331410995770859,0.467758554402153,0.7044675124951941], + [0.057285659361783925,0.4638216070742022,0.7024990388312188], + [0.05125720876585929,0.4598846597462514,0.7005305651672433], + [0.04522875816993466,0.4559477124183007,0.698562091503268], + [0.039200307574009996,0.4520107650903499,0.6965936178392925], + [0.03317185697808536,0.4480738177623991,0.6946251441753172], + [0.02714340638216073,0.44413687043444827,0.6926566705113418], + [0.021114955786236067,0.44019992310649747,0.6906881968473664], + [0.019515570934256054,0.43718569780853517,0.6869665513264129], + [0.01939254133025759,0.434479046520569,0.6826605151864668], + [0.019269511726259132,0.43177239523260286,0.6783544790465206], + [0.01914648212226067,0.4290657439446367,0.6740484429065744], + [0.01902345251826221,0.4263590926566706,0.6697424067666283], + [0.018900422914263745,0.42365244136870434,0.665436370626682], + [0.018777393310265282,0.4209457900807382,0.6611303344867359], + [0.01865436370626682,0.418239138792772,0.6568242983467897], + [0.018531334102268357,0.41553248750480587,0.6525182622068435], + [0.018408304498269894,0.41282583621683966,0.6482122260668973], + [0.018285274894271432,0.4101191849288735,0.6439061899269511], + [0.018162245290272973,0.40741253364090735,0.639600153787005], + [0.01803921568627451,0.4047058823529412,0.6352941176470588], + [0.017916186082276048,0.40199923106497504,0.6309880815071126], + [0.017793156478277585,0.3992925797770088,0.6266820453671664], + [0.017670126874279123,0.39658592848904267,0.6223760092272204], + [0.01754709727028066,0.3938792772010765,0.6180699730872742], + [0.017424067666282197,0.39117262591311036,0.613763936947328], + [0.01730103806228374,0.3884659746251442,0.6094579008073818], + [0.017178008458285276,0.385759323337178,0.6051518646674356], + [0.017054978854286817,0.38305267204921195,0.6008458285274896], + [0.01693194925028835,0.3803460207612457,0.5965397923875433], + [0.016808919646289888,0.37763936947327953,0.5922337562475971], + [0.016685890042291426,0.3749327181853134,0.5879277201076509], + [0.016562860438292963,0.37222606689734716,0.5836216839677048], + [0.0164398308342945,0.369519415609381,0.5793156478277586], + [0.016316801230296038,0.36681276432141485,0.5750096116878124], + [0.01619377162629758,0.3641061130334487,0.5707035755478662], + [0.016070742022299116,0.36139946174548254,0.56639753940792], + [0.015947712418300654,0.35869281045751633,0.5620915032679739], + [0.01582468281430219,0.3559861591695502,0.5577854671280277], + [0.01570165321030373,0.353279507881584,0.5534794309880815], + [0.015470972702806613,0.349281045751634,0.5472356785851595], + [0.015224913494809688,0.34509803921568627,0.5407151095732411], + [0.014978854286812764,0.3409150326797386,0.5341945405613227], + [0.01473279507881584,0.3367320261437909,0.5276739715494041], + [0.014486735870818923,0.3325490196078433,0.5211534025374858], + [0.01424067666282199,0.32836601307189545,0.5146328335255671], + [0.013994617454825067,0.3241830065359477,0.5081122645136487], + [0.013748558246828142,0.32,0.5015916955017301], + [0.013502499038831219,0.3158169934640523,0.4950711264898116], + [0.013256439830834294,0.31163398692810457,0.4885505574778931], + [0.01301038062283737,0.3074509803921569,0.48202998846597467], + [0.012764321414840445,0.3032679738562092,0.47550941945405617], + [0.012518262206843522,0.29908496732026146,0.4689888504421377], + [0.012272202998846597,0.29490196078431374,0.4624682814302192], + [0.012026143790849673,0.290718954248366,0.4559477124183007], + [0.011780084582852748,0.2865359477124183,0.4494271434063822], + [0.011534025374855823,0.2823529411764706,0.4429065743944637], + [0.0112879661668589,0.27816993464052286,0.4363860053825452], + [0.011041906958861977,0.27398692810457514,0.4298654363706267], + [0.010795847750865051,0.2698039215686274,0.4233448673587082], + [0.010549788542868133,0.26562091503267987,0.4168242983467899], + [0.010303729334871203,0.26143790849673204,0.41030372933487125], + [0.01005767012687428,0.2572549019607843,0.4037831603229527], + [0.009811610918877355,0.2530718954248366,0.39726259131103425], + [0.00956555171088043,0.24888888888888888,0.3907420222991157], + [0.009319492502883506,0.24470588235294116,0.38422145328719726], + [0.009073433294886583,0.24052287581699347,0.3777008842752787], + [0.008827374086889658,0.23633986928104575,0.37118031526336026], + [0.008581314878892733,0.23215686274509806,0.36465974625144176], + [0.00833525567089581,0.22797385620915034,0.35813917723952327], + [0.008089196462898886,0.22379084967320262,0.35161860822760477], + [0.00784313725490196,0.2196078431372549,0.34509803921568627] ], + PuBuGn: [ + [1.0,0.9686274509803922,0.984313725490196], + [0.9976624375240292,0.9660438292964244,0.982960399846213], + [0.9953248750480584,0.9634602076124568,0.9816070742022298], + [0.9929873125720876,0.960876585928489,0.9802537485582468], + [0.9906497500961169,0.9582929642445214,0.9789004229142637], + [0.988312187620146,0.9557093425605536,0.9775470972702807], + [0.9859746251441753,0.9531257208765859,0.9761937716262975], + [0.9836370626682045,0.9505420991926182,0.9748404459823145], + [0.9812995001922338,0.9479584775086505,0.9734871203383314], + [0.9789619377162629,0.9453748558246828,0.9721337946943482], + [0.9766243752402922,0.9427912341407151,0.9707804690503652], + [0.9742868127643214,0.9402076124567474,0.9694271434063821], + [0.9719492502883507,0.9376239907727797,0.9680738177623991], + [0.9696116878123798,0.9350403690888119,0.9667204921184159], + [0.9672741253364091,0.9324567474048443,0.9653671664744329], + [0.9649365628604383,0.9298731257208765,0.9640138408304498], + [0.9625990003844676,0.9272895040369089,0.9626605151864667], + [0.9602614379084967,0.9247058823529412,0.9613071895424836], + [0.957923875432526,0.9221222606689734,0.9599538638985006], + [0.9555863129565552,0.9195386389850058,0.9586005382545175], + [0.9532487504805844,0.916955017301038,0.9572472126105344], + [0.9509111880046136,0.9143713956170704,0.9558938869665513], + [0.9485736255286429,0.9117877739331026,0.9545405613225683], + [0.946236063052672,0.909204152249135,0.9531872356785851], + [0.9438985005767013,0.9066205305651672,0.951833910034602], + [0.9415609381007305,0.9040369088811995,0.950480584390619], + [0.9392233756247598,0.9014532871972318,0.9491272587466358], + [0.9368858131487889,0.8988696655132641,0.9477739331026528], + [0.9345482506728182,0.8962860438292963,0.9464206074586697], + [0.9322106881968474,0.8937024221453287,0.9450672818146867], + [0.9298731257208767,0.8911188004613609,0.9437139561707035], + [0.9275355632449058,0.8885351787773933,0.9423606305267205], + [0.9250595924644368,0.8860130718954248,0.9410226835832372], + [0.9216147635524798,0.883921568627451,0.9397923875432526], + [0.9181699346405229,0.881830065359477,0.938562091503268], + [0.914725105728566,0.8797385620915033,0.9373317954632834], + [0.9112802768166091,0.8776470588235293,0.9361014994232987], + [0.9078354479046521,0.8755555555555555,0.9348712033833141], + [0.9043906189926951,0.8734640522875816,0.9336409073433295], + [0.9009457900807382,0.8713725490196078,0.9324106113033449], + [0.8975009611687813,0.869281045751634,0.9311803152633602], + [0.8940561322568243,0.8671895424836601,0.9299500192233756], + [0.8906113033448674,0.8650980392156863,0.928719723183391], + [0.8871664744329104,0.8630065359477124,0.9274894271434064], + [0.8837216455209536,0.8609150326797386,0.9262591311034217], + [0.8802768166089966,0.8588235294117647,0.9250288350634371], + [0.8768319876970396,0.8567320261437908,0.9237985390234525], + [0.8733871587850827,0.8546405228758169,0.9225682429834678], + [0.8699423298731257,0.8525490196078431,0.9213379469434833], + [0.8664975009611688,0.8504575163398693,0.9201076509034987], + [0.8630526720492119,0.8483660130718954,0.9188773548635141], + [0.8596078431372549,0.8462745098039215,0.9176470588235294], + [0.856163014225298,0.8441830065359477,0.9164167627835448], + [0.8527181853133411,0.8420915032679739,0.9151864667435602], + [0.8492733564013841,0.84,0.9139561707035756], + [0.8458285274894272,0.8379084967320262,0.9127258746635909], + [0.8423836985774702,0.8358169934640522,0.9114955786236063], + [0.8389388696655133,0.8337254901960784,0.9102652825836217], + [0.8354940407535563,0.8316339869281045,0.9090349865436371], + [0.8320492118415994,0.8295424836601307,0.9078046905036524], + [0.8286043829296424,0.8274509803921568,0.9065743944636678], + [0.8251595540176855,0.825359477124183,0.9053440984236832], + [0.8217147251057285,0.8232679738562091,0.9041138023836985], + [0.8182698961937717,0.8211764705882353,0.902883506343714], + [0.8143944636678201,0.8189926951172626,0.9016224529027297], + [0.8092272202998847,0.8165321030372933,0.9002691272587466], + [0.8040599769319493,0.8140715109573241,0.8989158016147636], + [0.7988927335640138,0.8116109188773548,0.8975624759707804], + [0.7937254901960784,0.8091503267973856,0.8962091503267974], + [0.788558246828143,0.8066897347174163,0.8948558246828143], + [0.7833910034602076,0.8042291426374472,0.8935024990388312], + [0.7782237600922722,0.8017685505574779,0.8921491733948481], + [0.7730565167243368,0.7993079584775087,0.8907958477508651], + [0.7678892733564013,0.7968473663975394,0.889442522106882], + [0.762722029988466,0.7943867743175702,0.8880891964628989], + [0.7575547866205306,0.7919261822376009,0.8867358708189158], + [0.7523875432525952,0.7894655901576316,0.8853825451749328], + [0.7472202998846598,0.7870049980776624,0.8840292195309496], + [0.7420530565167244,0.7845444059976932,0.8826758938869665], + [0.736885813148789,0.782083813917724,0.8813225682429835], + [0.7317185697808535,0.7796232218377547,0.8799692425990003], + [0.7265513264129181,0.7771626297577855,0.8786159169550173], + [0.7213840830449828,0.7747020376778163,0.8772625913110342], + [0.7162168396770473,0.772241445597847,0.8759092656670511], + [0.7110495963091119,0.7697808535178777,0.874555940023068], + [0.7058823529411765,0.7673202614379085,0.873202614379085], + [0.7007151095732411,0.7648596693579393,0.8718492887351018], + [0.6955478662053056,0.7623990772779701,0.8704959630911188], + [0.6903806228373702,0.7599384851980008,0.8691426374471357], + [0.6852133794694348,0.7574778931180316,0.8677893118031526], + [0.6800461361014996,0.7550173010380623,0.8664359861591695], + [0.674878892733564,0.7525567089580931,0.8650826605151865], + [0.6697116493656287,0.7500961168781238,0.8637293348712033], + [0.6645444059976933,0.7476355247981545,0.8623760092272202], + [0.6593771626297578,0.7451749327181854,0.8610226835832372], + [0.6542099192618224,0.7427143406382161,0.859669357939254], + [0.6480738177623991,0.7402537485582469,0.8582698961937716], + [0.640322952710496,0.7377931564782776,0.8567935409457901], + [0.632572087658593,0.7353325643983084,0.8553171856978085], + [0.6248212226066897,0.7328719723183391,0.853840830449827], + [0.6170703575547867,0.7304113802383699,0.8523644752018454], + [0.6093194925028835,0.7279507881584006,0.8508881199538638], + [0.6015686274509804,0.7254901960784313,0.8494117647058823], + [0.5938177623990772,0.7230296039984622,0.8479354094579008], + [0.5860668973471742,0.7205690119184929,0.8464590542099192], + [0.5783160322952711,0.7181084198385237,0.8449826989619377], + [0.570565167243368,0.7156478277585544,0.8435063437139562], + [0.5628143021914649,0.7131872356785852,0.8420299884659745], + [0.5550634371395617,0.7107266435986159,0.840553633217993], + [0.5473125720876586,0.7082660515186466,0.8390772779700115], + [0.5395617070357555,0.7058054594386775,0.83760092272203], + [0.5318108419838524,0.7033448673587082,0.8361245674740484], + [0.5240599769319493,0.700884275278739,0.8346482122260669], + [0.5163091118800461,0.6984236831987697,0.8331718569780854], + [0.5085582468281431,0.6959630911188005,0.8316955017301038], + [0.50080738177624,0.6935024990388312,0.8302191464821222], + [0.4930565167243368,0.691041906958862,0.8287427912341407], + [0.48530565167243367,0.6885813148788927,0.8272664359861591], + [0.4775547866205306,0.6861207227989234,0.8257900807381776], + [0.4698039215686275,0.6836601307189543,0.8243137254901961], + [0.46205305651672435,0.681199538638985,0.8228373702422145], + [0.45430219146482126,0.6787389465590158,0.821361014994233], + [0.4465513264129183,0.6762783544790465,0.8198846597462515], + [0.438800461361015,0.6738177623990773,0.8184083044982698], + [0.4310495963091119,0.671357170319108,0.8169319492502883], + [0.4232987312572088,0.6688965782391387,0.8154555940023068], + [0.4155478662053057,0.6664359861591695,0.8139792387543252], + [0.40779700115340256,0.6639753940792003,0.8125028835063437], + [0.4009073433294887,0.6612072279892349,0.8108419838523645], + [0.394878892733564,0.6581314878892733,0.8089965397923875], + [0.38885044213763936,0.6550557477893117,0.8071510957324106], + [0.38282199154171476,0.6519800076893503,0.8053056516724337], + [0.37679354094579026,0.6489042675893888,0.8034602076124568], + [0.37076509034986543,0.6458285274894271,0.8016147635524798], + [0.3647366397539408,0.6427527873894656,0.7997693194925029], + [0.35870818915801617,0.639677047289504,0.797923875432526], + [0.3526797385620915,0.6366013071895424,0.796078431372549], + [0.34665128796616684,0.633525567089581,0.7942329873125721], + [0.34062283737024224,0.6304498269896194,0.7923875432525952], + [0.3345943867743176,0.6273740868896578,0.7905420991926182], + [0.3285659361783929,0.6242983467896963,0.7886966551326413], + [0.3225374855824683,0.6212226066897347,0.7868512110726643], + [0.31650903498654365,0.6181468665897731,0.7850057670126874], + [0.310480584390619,0.6150711264898115,0.7831603229527105], + [0.3044521337946943,0.6119953863898501,0.7813148788927335], + [0.29842368319876966,0.6089196462898885,0.7794694348327567], + [0.29239523260284506,0.6058439061899269,0.7776239907727797], + [0.2863667820069204,0.6027681660899654,0.7757785467128028], + [0.28033833141099596,0.5996924259900039,0.7739331026528259], + [0.2743098808150711,0.5966166858900422,0.7720876585928489], + [0.26828143021914647,0.5935409457900808,0.770242214532872], + [0.2622529796232218,0.5904652056901192,0.768396770472895], + [0.2562245290272972,0.5873894655901576,0.7665513264129181], + [0.25019607843137254,0.584313725490196,0.7647058823529411], + [0.2441676278354479,0.5812379853902345,0.7628604382929642], + [0.23813917723952324,0.5781622452902729,0.7610149942329874], + [0.2321107266435986,0.5750865051903113,0.7591695501730104], + [0.22608227604767397,0.5720107650903499,0.7573241061130335], + [0.2200538254517493,0.5689350249903883,0.7554786620530565], + [0.21402537485582468,0.5658592848904267,0.7536332179930796], + [0.2077662437524029,0.5635524798154555,0.7487889273356402], + [0.2013687043444829,0.5617070357554786,0.7421453287197232], + [0.19497116493656286,0.5598615916955018,0.7355017301038063], + [0.18857362552864282,0.5580161476355248,0.7288581314878892], + [0.18217608612072297,0.5561707035755479,0.7222145328719725], + [0.17577854671280277,0.5543252595155709,0.7155709342560553], + [0.16938100730488273,0.552479815455594,0.7089273356401384], + [0.16298346789696272,0.5506343713956171,0.7022837370242214], + [0.15658592848904268,0.5487889273356401,0.6956401384083045], + [0.15018838908112264,0.5469434832756632,0.6889965397923875], + [0.1437908496732026,0.5450980392156862,0.6823529411764706], + [0.1373933102652826,0.5432525951557093,0.6757093425605536], + [0.13099577085736255,0.5414071510957323,0.6690657439446367], + [0.12459823144944253,0.5395617070357555,0.6624221453287197], + [0.11820069204152249,0.5377162629757786,0.6557785467128028], + [0.11180315263360247,0.5358708189158016,0.6491349480968858], + [0.10540561322568243,0.5340253748558247,0.6424913494809689], + [0.09900807381776239,0.5321799307958477,0.6358477508650519], + [0.09261053440984236,0.5303344867358708,0.629204152249135], + [0.08621299500192234,0.5284890426758939,0.6225605536332179], + [0.0798154555940025,0.526643598615917,0.6159169550173011], + [0.07341791618608226,0.52479815455594,0.609273356401384], + [0.06702037677816225,0.522952710495963,0.6026297577854671], + [0.06062283737024221,0.5211072664359861,0.5959861591695501], + [0.05422529796232217,0.5192618223760093,0.5893425605536332], + [0.04782775855440213,0.5174163783160323,0.5826989619377162], + [0.04143021914648212,0.5155709342560554,0.5760553633217993], + [0.035032679738562084,0.5137254901960784,0.5694117647058823], + [0.028635140330642045,0.5118800461361015,0.5627681660899654], + [0.022237600922722034,0.5100346020761245,0.5561245674740484], + [0.015840061514801995,0.5081891580161476,0.5494809688581315], + [0.009442522106881956,0.5063437139561707,0.5428373702422145], + [0.007750865051903114,0.5039446366782007,0.5366551326412917], + [0.007627835447904652,0.5013610149942329,0.5306266820453671], + [0.0075048058439061895,0.49877739331026527,0.5245982314494425], + [0.007381776239907728,0.4961937716262976,0.5185697808535178], + [0.007258746635909269,0.49361014994232993,0.5125413302575934], + [0.007135717031910804,0.4910265282583621,0.5065128796616686], + [0.007012687427912341,0.48844290657439443,0.5004844290657439], + [0.006889657823913879,0.48585928489042673,0.49445597846981926], + [0.006766628219915417,0.48327566320645904,0.48842752787389465], + [0.006643598615916955,0.48069204152249134,0.48239907727797], + [0.006520569011918493,0.47810841983852365,0.47637062668204533], + [0.00639753940792003,0.47552479815455595,0.4703421760861207], + [0.006274509803921568,0.4729411764705882,0.46431372549019606], + [0.006151480199923107,0.4703575547866205,0.4582852748942714], + [0.006028450595924644,0.4677739331026528,0.45225682429834674], + [0.005905420991926182,0.4651903114186851,0.44622837370242213], + [0.00578239138792772,0.4626066897347174,0.44019992310649747], + [0.005659361783929258,0.4600230680507497,0.4341714725105728], + [0.005536332179930796,0.457439446366782,0.4281430219146482], + [0.005413302575932333,0.45485582468281427,0.42211457131872354], + [0.005290272971933875,0.45227220299884663,0.41608612072279905], + [0.00516724336793541,0.4496885813148789,0.4100576701268742], + [0.005044213763936947,0.4471049596309112,0.4040292195309496], + [0.004921184159938485,0.4445213379469435,0.39800076893502495], + [0.004798154555940023,0.4419377162629758,0.3919723183391003], + [0.004675124951941561,0.4393540945790081,0.3859438677431757], + [0.004552095347943099,0.43677047289504034,0.379915417147251], + [0.004429065743944636,0.43418685121107264,0.37388696655132636], + [0.0043060361399461745,0.43160322952710495,0.36785851595540175], + [0.004183006535947713,0.42901960784313725,0.3618300653594771], + [0.00405997693194925,0.42643598615916956,0.35580161476355243], + [0.003936947327950788,0.4238523644752018,0.3497731641676278], + [0.00392156862745098,0.419438677431757,0.34525182622068434], + [0.00392156862745098,0.41476355247981544,0.34094579008073816], + [0.00392156862745098,0.4100884275278739,0.336639753940792], + [0.00392156862745098,0.40541330257593233,0.3323337178008458], + [0.00392156862745098,0.4007381776239909,0.32802768166089974], + [0.00392156862745098,0.3960630526720492,0.32372164552095345], + [0.00392156862745098,0.39138792772010766,0.31941560938100727], + [0.00392156862745098,0.3867128027681661,0.3151095732410611], + [0.00392156862745098,0.38203767781622455,0.31080353710111497], + [0.00392156862745098,0.377362552864283,0.3064975009611688], + [0.00392156862745098,0.37268742791234144,0.3021914648212226], + [0.00392156862745098,0.36801230296039983,0.29788542868127643], + [0.00392156862745098,0.3633371780084583,0.29357939254133025], + [0.00392156862745098,0.3586620530565167,0.2892733564013841], + [0.00392156862745098,0.35398692810457516,0.2849673202614379], + [0.00392156862745098,0.3493118031526336,0.2806612841214917], + [0.00392156862745098,0.34463667820069205,0.27635524798154554], + [0.00392156862745098,0.3399615532487505,0.27204921184159936], + [0.00392156862745098,0.33528642829680894,0.2677431757016532], + [0.00392156862745098,0.3306113033448674,0.263437139561707], + [0.00392156862745098,0.32593617839292593,0.259131103421761], + [0.00392156862745098,0.32126105344098427,0.2548250672818147], + [0.00392156862745098,0.31658592848904266,0.2505190311418685], + [0.00392156862745098,0.3119108035371011,0.24621299500192234], + [0.00392156862745098,0.30723567858515954,0.24190695886197616], + [0.00392156862745098,0.302560553633218,0.23760092272202998], + [0.00392156862745098,0.29788542868127643,0.2332948865820838], + [0.00392156862745098,0.2932103037293349,0.22898885044213763], + [0.00392156862745098,0.2885351787773933,0.22468281430219145], + [0.00392156862745098,0.28386005382545176,0.2203767781622453], + [0.00392156862745098,0.2791849288735102,0.21607074202229912], + [0.00392156862745098,0.27450980392156865,0.21176470588235294] ], + PuBuGn_r: [ + [0.00392156862745098,0.27450980392156865,0.21176470588235294], + [0.00392156862745098,0.2791849288735102,0.21607074202229912], + [0.00392156862745098,0.28386005382545176,0.2203767781622453], + [0.00392156862745098,0.2885351787773933,0.22468281430219145], + [0.00392156862745098,0.2932103037293349,0.22898885044213763], + [0.00392156862745098,0.29788542868127643,0.2332948865820838], + [0.00392156862745098,0.302560553633218,0.23760092272202998], + [0.00392156862745098,0.30723567858515954,0.24190695886197616], + [0.00392156862745098,0.3119108035371011,0.24621299500192234], + [0.00392156862745098,0.3165859284890427,0.2505190311418685], + [0.00392156862745098,0.32126105344098427,0.2548250672818147], + [0.00392156862745098,0.3259361783929258,0.2591311034217608], + [0.00392156862745098,0.3306113033448674,0.263437139561707], + [0.00392156862745098,0.33528642829680894,0.2677431757016532], + [0.00392156862745098,0.3399615532487505,0.27204921184159936], + [0.00392156862745098,0.34463667820069205,0.27635524798154554], + [0.00392156862745098,0.3493118031526336,0.2806612841214917], + [0.00392156862745098,0.35398692810457516,0.2849673202614379], + [0.00392156862745098,0.3586620530565167,0.2892733564013841], + [0.00392156862745098,0.3633371780084583,0.29357939254133025], + [0.00392156862745098,0.3680123029603999,0.29788542868127643], + [0.00392156862745098,0.37268742791234144,0.3021914648212226], + [0.00392156862745098,0.377362552864283,0.3064975009611688], + [0.00392156862745098,0.38203767781622455,0.31080353710111497], + [0.00392156862745098,0.3867128027681661,0.31510957324106115], + [0.00392156862745098,0.39138792772010766,0.31941560938100727], + [0.00392156862745098,0.3960630526720492,0.32372164552095345], + [0.00392156862745098,0.4007381776239908,0.32802768166089963], + [0.00392156862745098,0.40541330257593233,0.3323337178008458], + [0.00392156862745098,0.4100884275278739,0.336639753940792], + [0.00392156862745098,0.41476355247981544,0.34094579008073816], + [0.00392156862745098,0.419438677431757,0.34525182622068434], + [0.003936947327950788,0.42385236447520186,0.3497731641676278], + [0.004059976931949249,0.4264359861591695,0.35580161476355243], + [0.004183006535947712,0.42901960784313725,0.3618300653594771], + [0.0043060361399461745,0.43160322952710495,0.36785851595540175], + [0.004429065743944636,0.43418685121107264,0.3738869665513264], + [0.004552095347943098,0.43677047289504034,0.37991541714725097], + [0.004675124951941561,0.4393540945790081,0.3859438677431757], + [0.004798154555940023,0.4419377162629758,0.39197231833910035], + [0.004921184159938485,0.4445213379469435,0.39800076893502495], + [0.005044213763936946,0.4471049596309112,0.40402921953094956], + [0.00516724336793541,0.4496885813148789,0.4100576701268743], + [0.0052902729719338714,0.4522722029988466,0.4160861207227989], + [0.005413302575932333,0.45485582468281427,0.42211457131872354], + [0.005536332179930795,0.45743944636678197,0.42814302191464815], + [0.005659361783929258,0.4600230680507497,0.4341714725105728], + [0.00578239138792772,0.4626066897347174,0.44019992310649747], + [0.005905420991926182,0.4651903114186851,0.44622837370242213], + [0.006028450595924643,0.4677739331026528,0.4522568242983467], + [0.006151480199923107,0.4703575547866205,0.4582852748942714], + [0.006274509803921568,0.4729411764705882,0.46431372549019606], + [0.00639753940792003,0.47552479815455595,0.4703421760861207], + [0.006520569011918492,0.4781084198385236,0.47637062668204533], + [0.006643598615916955,0.48069204152249134,0.48239907727797], + [0.006766628219915417,0.48327566320645904,0.48842752787389465], + [0.0068896578239138785,0.48585928489042673,0.49445597846981926], + [0.00701268742791234,0.48844290657439443,0.5004844290657439], + [0.007135717031910804,0.4910265282583621,0.5065128796616686], + [0.007258746635909265,0.4936101499423299,0.5125413302575932], + [0.007381776239907727,0.4961937716262976,0.5185697808535179], + [0.007504805843906189,0.49877739331026527,0.5245982314494424], + [0.007627835447904652,0.5013610149942329,0.5306266820453671], + [0.007750865051903114,0.5039446366782007,0.5366551326412918], + [0.009442522106881969,0.5063437139561707,0.5428373702422145], + [0.015840061514802,0.5081891580161476,0.5494809688581315], + [0.022237600922721937,0.5100346020761245,0.5561245674740483], + [0.02863514033064206,0.5118800461361015,0.5627681660899654], + [0.03503267973856209,0.5137254901960784,0.5694117647058823], + [0.04143021914648212,0.5155709342560554,0.5760553633217993], + [0.047827758554402154,0.5174163783160323,0.5826989619377162], + [0.05422529796232218,0.5192618223760093,0.5893425605536332], + [0.06062283737024222,0.5211072664359861,0.5959861591695501], + [0.06702037677816225,0.522952710495963,0.6026297577854671], + [0.07341791618608219,0.52479815455594,0.6092733564013839], + [0.07981545559400231,0.5266435986159169,0.615916955017301], + [0.08621299500192234,0.5284890426758939,0.6225605536332179], + [0.09261053440984238,0.5303344867358708,0.629204152249135], + [0.0990080738177624,0.5321799307958477,0.6358477508650519], + [0.10540561322568243,0.5340253748558247,0.6424913494809689], + [0.11180315263360245,0.5358708189158016,0.6491349480968858], + [0.11820069204152248,0.5377162629757786,0.6557785467128028], + [0.12459823144944242,0.5395617070357555,0.6624221453287196], + [0.13099577085736253,0.5414071510957323,0.6690657439446366], + [0.13739331026528256,0.5432525951557093,0.6757093425605536], + [0.1437908496732026,0.5450980392156862,0.6823529411764706], + [0.15018838908112264,0.5469434832756632,0.6889965397923875], + [0.15658592848904265,0.5487889273356401,0.6956401384083044], + [0.1629834678969627,0.5506343713956171,0.7022837370242214], + [0.16938100730488273,0.552479815455594,0.7089273356401384], + [0.17577854671280266,0.5543252595155709,0.7155709342560552], + [0.18217608612072278,0.5561707035755479,0.7222145328719722], + [0.18857362552864282,0.5580161476355248,0.7288581314878892], + [0.19497116493656286,0.5598615916955018,0.7355017301038063], + [0.20136870434448287,0.5617070357554786,0.7421453287197232], + [0.2077662437524029,0.5635524798154555,0.7487889273356401], + [0.21402537485582468,0.5658592848904268,0.7536332179930796], + [0.2200538254517493,0.5689350249903883,0.7554786620530565], + [0.2260822760476739,0.5720107650903498,0.7573241061130334], + [0.2321107266435986,0.5750865051903115,0.7591695501730104], + [0.23813917723952327,0.5781622452902729,0.7610149942329874], + [0.2441676278354479,0.5812379853902345,0.7628604382929642], + [0.25019607843137254,0.5843137254901961,0.7647058823529411], + [0.2562245290272972,0.5873894655901576,0.7665513264129181], + [0.26225297962322186,0.5904652056901192,0.768396770472895], + [0.26828143021914647,0.5935409457900808,0.770242214532872], + [0.274309880815071,0.5966166858900422,0.7720876585928489], + [0.2803383314109958,0.5996924259900038,0.7739331026528258], + [0.28636678200692045,0.6027681660899654,0.7757785467128028], + [0.29239523260284506,0.6058439061899269,0.7776239907727797], + [0.2984236831987697,0.6089196462898885,0.7794694348327567], + [0.3044521337946944,0.6119953863898501,0.7813148788927335], + [0.310480584390619,0.6150711264898115,0.7831603229527105], + [0.31650903498654365,0.6181468665897731,0.7850057670126874], + [0.3225374855824682,0.6212226066897346,0.7868512110726643], + [0.3285659361783929,0.6242983467896962,0.7886966551326413], + [0.3345943867743176,0.6273740868896578,0.7905420991926182], + [0.34062283737024224,0.6304498269896194,0.7923875432525952], + [0.34665128796616684,0.633525567089581,0.7942329873125721], + [0.3526797385620915,0.6366013071895424,0.796078431372549], + [0.35870818915801617,0.639677047289504,0.797923875432526], + [0.3647366397539408,0.6427527873894656,0.7997693194925029], + [0.3707650903498654,0.6458285274894271,0.8016147635524797], + [0.3767935409457901,0.6489042675893887,0.8034602076124567], + [0.3828219915417147,0.6519800076893503,0.8053056516724337], + [0.38885044213763936,0.6550557477893117,0.8071510957324106], + [0.394878892733564,0.6581314878892733,0.8089965397923875], + [0.40090734332948863,0.6612072279892349,0.8108419838523645], + [0.40779700115340256,0.6639753940792003,0.8125028835063437], + [0.41554786620530565,0.6664359861591695,0.8139792387543252], + [0.4232987312572088,0.6688965782391387,0.8154555940023068], + [0.4310495963091119,0.671357170319108,0.8169319492502883], + [0.4388004613610148,0.6738177623990772,0.8184083044982698], + [0.4465513264129181,0.6762783544790465,0.8198846597462515], + [0.4543021914648212,0.6787389465590158,0.821361014994233], + [0.46205305651672435,0.681199538638985,0.8228373702422145], + [0.4698039215686275,0.6836601307189543,0.8243137254901961], + [0.4775547866205306,0.6861207227989234,0.8257900807381776], + [0.48530565167243367,0.6885813148788927,0.8272664359861591], + [0.4930565167243368,0.691041906958862,0.8287427912341407], + [0.50080738177624,0.6935024990388312,0.8302191464821222], + [0.508558246828143,0.6959630911188005,0.8316955017301038], + [0.5163091118800461,0.6984236831987697,0.8331718569780854], + [0.5240599769319493,0.700884275278739,0.8346482122260669], + [0.5318108419838524,0.7033448673587082,0.8361245674740484], + [0.5395617070357555,0.7058054594386775,0.83760092272203], + [0.5473125720876586,0.7082660515186467,0.8390772779700115], + [0.5550634371395617,0.7107266435986159,0.840553633217993], + [0.5628143021914647,0.7131872356785851,0.8420299884659745], + [0.5705651672433679,0.7156478277585544,0.8435063437139562], + [0.5783160322952711,0.7181084198385237,0.8449826989619377], + [0.5860668973471742,0.7205690119184929,0.8464590542099192], + [0.5938177623990772,0.7230296039984622,0.8479354094579008], + [0.6015686274509804,0.7254901960784313,0.8494117647058823], + [0.6093194925028835,0.7279507881584006,0.8508881199538638], + [0.6170703575547867,0.7304113802383698,0.8523644752018454], + [0.6248212226066898,0.7328719723183391,0.853840830449827], + [0.6325720876585929,0.7353325643983084,0.8553171856978085], + [0.640322952710496,0.7377931564782776,0.8567935409457901], + [0.6480738177623991,0.7402537485582469,0.8582698961937716], + [0.6542099192618224,0.7427143406382161,0.859669357939254], + [0.6593771626297578,0.7451749327181854,0.8610226835832372], + [0.6645444059976933,0.7476355247981545,0.8623760092272202], + [0.6697116493656287,0.7500961168781238,0.8637293348712033], + [0.6748788927335638,0.752556708958093,0.8650826605151863], + [0.6800461361014994,0.7550173010380623,0.8664359861591695], + [0.6852133794694348,0.7574778931180316,0.8677893118031526], + [0.6903806228373702,0.7599384851980008,0.8691426374471357], + [0.6955478662053056,0.7623990772779701,0.8704959630911188], + [0.7007151095732411,0.7648596693579393,0.8718492887351018], + [0.7058823529411765,0.7673202614379085,0.873202614379085], + [0.7110495963091119,0.7697808535178777,0.874555940023068], + [0.7162168396770473,0.772241445597847,0.8759092656670511], + [0.7213840830449827,0.7747020376778162,0.8772625913110342], + [0.7265513264129181,0.7771626297577855,0.8786159169550173], + [0.7317185697808535,0.7796232218377547,0.8799692425990003], + [0.736885813148789,0.782083813917724,0.8813225682429835], + [0.7420530565167244,0.7845444059976932,0.8826758938869665], + [0.7472202998846598,0.7870049980776624,0.8840292195309496], + [0.7523875432525952,0.7894655901576317,0.8853825451749328], + [0.7575547866205304,0.7919261822376008,0.8867358708189158], + [0.7627220299884659,0.7943867743175702,0.8880891964628989], + [0.7678892733564013,0.7968473663975394,0.889442522106882], + [0.7730565167243368,0.7993079584775087,0.8907958477508651], + [0.7782237600922722,0.8017685505574779,0.8921491733948481], + [0.7833910034602076,0.8042291426374472,0.8935024990388312], + [0.788558246828143,0.8066897347174163,0.8948558246828143], + [0.7937254901960784,0.8091503267973856,0.8962091503267974], + [0.7988927335640138,0.8116109188773548,0.8975624759707804], + [0.8040599769319492,0.8140715109573241,0.8989158016147636], + [0.8092272202998847,0.8165321030372933,0.9002691272587466], + [0.8143944636678201,0.8189926951172626,0.9016224529027297], + [0.8182698961937717,0.8211764705882353,0.902883506343714], + [0.8217147251057285,0.8232679738562091,0.9041138023836985], + [0.8251595540176855,0.825359477124183,0.9053440984236832], + [0.8286043829296424,0.8274509803921568,0.9065743944636678], + [0.8320492118415993,0.8295424836601306,0.9078046905036524], + [0.8354940407535563,0.8316339869281045,0.9090349865436371], + [0.8389388696655132,0.8337254901960784,0.9102652825836217], + [0.8423836985774702,0.8358169934640522,0.9114955786236063], + [0.8458285274894272,0.8379084967320262,0.9127258746635909], + [0.8492733564013841,0.84,0.9139561707035756], + [0.852718185313341,0.8420915032679739,0.9151864667435602], + [0.856163014225298,0.8441830065359477,0.9164167627835448], + [0.8596078431372549,0.8462745098039215,0.9176470588235294], + [0.8630526720492119,0.8483660130718954,0.9188773548635141], + [0.8664975009611688,0.8504575163398692,0.9201076509034987], + [0.8699423298731257,0.8525490196078431,0.9213379469434833], + [0.8733871587850827,0.8546405228758169,0.9225682429834678], + [0.8768319876970396,0.8567320261437908,0.9237985390234525], + [0.8802768166089966,0.8588235294117647,0.9250288350634371], + [0.8837216455209536,0.8609150326797386,0.9262591311034217], + [0.8871664744329103,0.8630065359477124,0.9274894271434063], + [0.8906113033448674,0.8650980392156863,0.928719723183391], + [0.8940561322568243,0.8671895424836601,0.9299500192233756], + [0.8975009611687813,0.869281045751634,0.9311803152633602], + [0.9009457900807382,0.8713725490196078,0.9324106113033449], + [0.9043906189926951,0.8734640522875816,0.9336409073433295], + [0.9078354479046521,0.8755555555555555,0.9348712033833141], + [0.9112802768166091,0.8776470588235293,0.9361014994232987], + [0.914725105728566,0.8797385620915033,0.9373317954632834], + [0.9181699346405229,0.881830065359477,0.938562091503268], + [0.9216147635524798,0.883921568627451,0.9397923875432526], + [0.9250595924644368,0.8860130718954248,0.9410226835832372], + [0.9275355632449058,0.8885351787773933,0.9423606305267205], + [0.9298731257208767,0.8911188004613609,0.9437139561707035], + [0.9322106881968474,0.8937024221453287,0.9450672818146867], + [0.9345482506728182,0.8962860438292964,0.9464206074586697], + [0.9368858131487889,0.898869665513264,0.9477739331026528], + [0.9392233756247598,0.9014532871972318,0.9491272587466358], + [0.9415609381007305,0.9040369088811995,0.950480584390619], + [0.9438985005767013,0.9066205305651672,0.951833910034602], + [0.946236063052672,0.9092041522491349,0.9531872356785851], + [0.9485736255286429,0.9117877739331026,0.9545405613225683], + [0.9509111880046136,0.9143713956170704,0.9558938869665513], + [0.9532487504805844,0.916955017301038,0.9572472126105344], + [0.9555863129565552,0.9195386389850058,0.9586005382545175], + [0.957923875432526,0.9221222606689734,0.9599538638985006], + [0.9602614379084967,0.9247058823529412,0.9613071895424836], + [0.9625990003844676,0.9272895040369089,0.9626605151864667], + [0.9649365628604383,0.9298731257208765,0.9640138408304498], + [0.9672741253364091,0.9324567474048443,0.9653671664744329], + [0.9696116878123798,0.9350403690888119,0.9667204921184159], + [0.9719492502883507,0.9376239907727797,0.9680738177623991], + [0.9742868127643214,0.9402076124567473,0.969427143406382], + [0.9766243752402922,0.9427912341407151,0.9707804690503652], + [0.9789619377162629,0.9453748558246828,0.9721337946943482], + [0.9812995001922338,0.9479584775086505,0.9734871203383314], + [0.9836370626682045,0.9505420991926182,0.9748404459823145], + [0.9859746251441753,0.953125720876586,0.9761937716262975], + [0.9883121876201462,0.9557093425605536,0.9775470972702807], + [0.9906497500961169,0.9582929642445214,0.9789004229142637], + [0.9929873125720876,0.960876585928489,0.9802537485582468], + [0.9953248750480584,0.9634602076124568,0.9816070742022298], + [0.9976624375240293,0.9660438292964244,0.982960399846213], + [1.0,0.9686274509803922,0.984313725490196] ], + PuBu_r: [ + [0.00784313725490196,0.2196078431372549,0.34509803921568627], + [0.008089196462898886,0.22379084967320262,0.35161860822760477], + [0.00833525567089581,0.22797385620915034,0.35813917723952327], + [0.008581314878892734,0.23215686274509803,0.36465974625144176], + [0.008827374086889658,0.23633986928104575,0.37118031526336026], + [0.009073433294886583,0.24052287581699347,0.37770088427527876], + [0.009319492502883506,0.2447058823529412,0.38422145328719726], + [0.009565551710880431,0.24888888888888888,0.3907420222991157], + [0.009811610918877355,0.2530718954248366,0.39726259131103425], + [0.01005767012687428,0.2572549019607843,0.4037831603229527], + [0.010303729334871203,0.26143790849673204,0.4103037293348712], + [0.010549788542868128,0.26562091503267976,0.4168242983467897], + [0.010795847750865051,0.2698039215686275,0.4233448673587082], + [0.011041906958861977,0.27398692810457514,0.4298654363706267], + [0.0112879661668589,0.27816993464052286,0.4363860053825452], + [0.011534025374855825,0.2823529411764706,0.4429065743944637], + [0.011780084582852748,0.2865359477124183,0.4494271434063822], + [0.012026143790849673,0.290718954248366,0.4559477124183007], + [0.012272202998846597,0.29490196078431374,0.4624682814302192], + [0.01251826220684352,0.29908496732026146,0.4689888504421377], + [0.012764321414840445,0.3032679738562092,0.4755094194540561], + [0.01301038062283737,0.3074509803921569,0.48202998846597467], + [0.013256439830834296,0.3116339869281046,0.4885505574778931], + [0.013502499038831219,0.3158169934640523,0.49507112648981166], + [0.013748558246828142,0.32,0.5015916955017301], + [0.013994617454825067,0.3241830065359477,0.5081122645136487], + [0.014240676662821992,0.32836601307189545,0.5146328335255671], + [0.014486735870818916,0.33254901960784317,0.5211534025374855], + [0.01473279507881584,0.3367320261437909,0.5276739715494041], + [0.014978854286812764,0.34091503267973855,0.5341945405613227], + [0.01522491349480969,0.34509803921568627,0.5407151095732411], + [0.015470972702806613,0.349281045751634,0.5472356785851595], + [0.01570165321030373,0.353279507881584,0.5534794309880815], + [0.01582468281430219,0.3559861591695502,0.5577854671280277], + [0.015947712418300654,0.3586928104575164,0.5620915032679739], + [0.016070742022299116,0.36139946174548254,0.56639753940792], + [0.01619377162629758,0.3641061130334487,0.5707035755478662], + [0.016316801230296038,0.36681276432141485,0.5750096116878124], + [0.0164398308342945,0.369519415609381,0.5793156478277586], + [0.016562860438292963,0.37222606689734716,0.5836216839677048], + [0.016685890042291426,0.3749327181853134,0.5879277201076509], + [0.016808919646289888,0.3776393694732795,0.5922337562475971], + [0.01693194925028835,0.3803460207612457,0.5965397923875433], + [0.017054978854286813,0.38305267204921184,0.6008458285274895], + [0.017178008458285276,0.385759323337178,0.6051518646674356], + [0.017301038062283735,0.38846597462514415,0.6094579008073817], + [0.017424067666282197,0.39117262591311036,0.613763936947328], + [0.01754709727028066,0.3938792772010765,0.6180699730872742], + [0.017670126874279123,0.39658592848904267,0.6223760092272204], + [0.017793156478277585,0.3992925797770088,0.6266820453671664], + [0.017916186082276048,0.40199923106497504,0.6309880815071126], + [0.01803921568627451,0.4047058823529412,0.6352941176470588], + [0.018162245290272973,0.40741253364090735,0.639600153787005], + [0.018285274894271432,0.4101191849288735,0.6439061899269511], + [0.018408304498269894,0.41282583621683966,0.6482122260668973], + [0.018531334102268357,0.41553248750480587,0.6525182622068435], + [0.01865436370626682,0.418239138792772,0.6568242983467897], + [0.018777393310265282,0.4209457900807382,0.6611303344867359], + [0.018900422914263745,0.42365244136870434,0.665436370626682], + [0.019023452518262207,0.4263590926566705,0.6697424067666282], + [0.01914648212226067,0.4290657439446367,0.6740484429065744], + [0.01926951172625913,0.4317723952326028,0.6783544790465206], + [0.01939254133025759,0.434479046520569,0.6826605151864668], + [0.019515570934256054,0.43718569780853517,0.6869665513264129], + [0.021114955786236064,0.44019992310649747,0.6906881968473664], + [0.027143406382160708,0.44413687043444827,0.6926566705113418], + [0.033171856978085265,0.448073817762399,0.6946251441753172], + [0.039200307574009996,0.4520107650903499,0.6965936178392925], + [0.04522875816993464,0.4559477124183006,0.698562091503268], + [0.051257208765859284,0.4598846597462514,0.7005305651672433], + [0.057285659361783925,0.4638216070742022,0.7024990388312188], + [0.06331410995770856,0.467758554402153,0.7044675124951941], + [0.06934256055363322,0.4716955017301038,0.7064359861591696], + [0.07537101114955785,0.4756324490580546,0.7084044598231449], + [0.08139946174548242,0.4795693963860053,0.7103729334871203], + [0.08742791234140715,0.4835063437139562,0.7123414071510957], + [0.0934563629373318,0.487443291041907,0.7143098808150711], + [0.09948481353325643,0.4913802383698577,0.7162783544790465], + [0.10551326412918108,0.4953171856978085,0.7182468281430219], + [0.11154171472510573,0.49925413302575933,0.7202153018069973], + [0.11757016532103036,0.5031910803537101,0.7221837754709727], + [0.123598615916955,0.5071280276816609,0.7241522491349481], + [0.12962706651287956,0.5110649750096117,0.7261207227989235], + [0.1356555171088043,0.5150019223375625,0.7280891964628988], + [0.14168396770472894,0.5189388696655133,0.7300576701268743], + [0.14771241830065357,0.5228758169934641,0.7320261437908496], + [0.15374086889657823,0.5268127643214149,0.7339946174548251], + [0.15976931949250284,0.5307497116493656,0.7359630911188004], + [0.1657977700884275,0.5346866589773164,0.7379315647827759], + [0.17182622068435216,0.5386236063052672,0.7399000384467512], + [0.1778546712802767,0.5425605536332179,0.7418685121107266], + [0.18388312187620143,0.5464975009611688,0.743836985774702], + [0.1899115724721261,0.5504344482891196,0.7458054594386774], + [0.19594002306805075,0.5543713956170704,0.7477739331026528], + [0.20196847366397536,0.5583083429450211,0.7497424067666282], + [0.20799692425990002,0.5622452902729719,0.7517108804306036], + [0.2146251441753172,0.5658592848904268,0.7536332179930796], + [0.22225297962322182,0.5689350249903883,0.7554786620530565], + [0.22988081507112637,0.5720107650903498,0.7573241061130334], + [0.23750865051903114,0.5750865051903115,0.7591695501730104], + [0.2451364859669358,0.5781622452902729,0.7610149942329874], + [0.25276432141484045,0.5812379853902345,0.7628604382929642], + [0.2603921568627451,0.5843137254901961,0.7647058823529411], + [0.26801999231064977,0.5873894655901576,0.7665513264129181], + [0.2756478277585544,0.5904652056901192,0.768396770472895], + [0.283275663206459,0.5935409457900808,0.770242214532872], + [0.2909034986543636,0.5966166858900422,0.7720876585928489], + [0.29853133410226834,0.5996924259900038,0.7739331026528258], + [0.306159169550173,0.6027681660899654,0.7757785467128028], + [0.31378700499807766,0.6058439061899269,0.7776239907727797], + [0.32141484044598234,0.6089196462898885,0.7794694348327567], + [0.32904267589388697,0.6119953863898501,0.7813148788927335], + [0.3366705113417916,0.6150711264898115,0.7831603229527105], + [0.3442983467896963,0.6181468665897731,0.7850057670126874], + [0.3519261822376008,0.6212226066897346,0.7868512110726643], + [0.35955401768550554,0.6242983467896962,0.7886966551326413], + [0.36718185313341023,0.6273740868896578,0.7905420991926182], + [0.37480968858131486,0.6304498269896194,0.7923875432525952], + [0.3824375240292195,0.633525567089581,0.7942329873125721], + [0.3900653594771242,0.6366013071895424,0.796078431372549], + [0.3976931949250288,0.639677047289504,0.797923875432526], + [0.40532103037293343,0.6427527873894656,0.7997693194925029], + [0.412948865820838,0.6458285274894271,0.8016147635524797], + [0.4205767012687428,0.6489042675893887,0.8034602076124567], + [0.42820453671664743,0.6519800076893503,0.8053056516724337], + [0.43583237216455206,0.6550557477893117,0.8071510957324106], + [0.44346020761245675,0.6581314878892733,0.8089965397923875], + [0.4510880430603614,0.6612072279892349,0.8108419838523645], + [0.45797770088427525,0.6639753940792003,0.8125028835063437], + [0.4641291810841984,0.6664359861591695,0.8139792387543252], + [0.4702806612841215,0.6688965782391387,0.8154555940023068], + [0.4764321414840446,0.671357170319108,0.8169319492502883], + [0.4825836216839675,0.6738177623990772,0.8184083044982698], + [0.4887351018838908,0.6762783544790465,0.8198846597462515], + [0.4948865820838139,0.6787389465590158,0.821361014994233], + [0.501038062283737,0.681199538638985,0.8228373702422145], + [0.5071895424836601,0.6836601307189543,0.8243137254901961], + [0.5133410226835833,0.6861207227989234,0.8257900807381776], + [0.5194925028835063,0.6885813148788927,0.8272664359861591], + [0.5256439830834294,0.691041906958862,0.8287427912341407], + [0.5317954632833526,0.6935024990388312,0.8302191464821222], + [0.5379469434832757,0.6959630911188005,0.8316955017301038], + [0.5440984236831987,0.6984236831987697,0.8331718569780854], + [0.5502499038831219,0.700884275278739,0.8346482122260669], + [0.556401384083045,0.7033448673587082,0.8361245674740484], + [0.5625528642829681,0.7058054594386775,0.83760092272203], + [0.5687043444828912,0.7082660515186467,0.8390772779700115], + [0.5748558246828144,0.7107266435986159,0.840553633217993], + [0.5810073048827372,0.7131872356785851,0.8420299884659745], + [0.5871587850826605,0.7156478277585544,0.8435063437139562], + [0.5933102652825837,0.7181084198385237,0.8449826989619377], + [0.5994617454825067,0.7205690119184929,0.8464590542099192], + [0.6056132256824298,0.7230296039984622,0.8479354094579008], + [0.611764705882353,0.7254901960784313,0.8494117647058823], + [0.617916186082276,0.7279507881584006,0.8508881199538638], + [0.6240676662821991,0.7304113802383698,0.8523644752018454], + [0.6302191464821223,0.7328719723183391,0.853840830449827], + [0.6363706266820454,0.7353325643983084,0.8553171856978085], + [0.6425221068819685,0.7377931564782776,0.8567935409457901], + [0.6486735870818916,0.7402537485582469,0.8582698961937716], + [0.6542099192618224,0.7427143406382161,0.859669357939254], + [0.6593771626297578,0.7451749327181854,0.8610226835832372], + [0.6645444059976933,0.7476355247981545,0.8623760092272202], + [0.6697116493656287,0.7500961168781238,0.8637293348712033], + [0.6748788927335638,0.752556708958093,0.8650826605151863], + [0.6800461361014994,0.7550173010380623,0.8664359861591695], + [0.6852133794694348,0.7574778931180316,0.8677893118031526], + [0.6903806228373702,0.7599384851980008,0.8691426374471357], + [0.6955478662053056,0.7623990772779701,0.8704959630911188], + [0.7007151095732411,0.7648596693579393,0.8718492887351018], + [0.7058823529411765,0.7673202614379085,0.873202614379085], + [0.7110495963091119,0.7697808535178777,0.874555940023068], + [0.7162168396770473,0.772241445597847,0.8759092656670511], + [0.7213840830449827,0.7747020376778162,0.8772625913110342], + [0.7265513264129181,0.7771626297577855,0.8786159169550173], + [0.7317185697808535,0.7796232218377547,0.8799692425990003], + [0.736885813148789,0.782083813917724,0.8813225682429835], + [0.7420530565167244,0.7845444059976932,0.8826758938869665], + [0.7472202998846598,0.7870049980776624,0.8840292195309496], + [0.7523875432525952,0.7894655901576317,0.8853825451749328], + [0.7575547866205304,0.7919261822376008,0.8867358708189158], + [0.7627220299884659,0.7943867743175702,0.8880891964628989], + [0.7678892733564013,0.7968473663975394,0.889442522106882], + [0.7730565167243368,0.7993079584775087,0.8907958477508651], + [0.7782237600922722,0.8017685505574779,0.8921491733948481], + [0.7833910034602076,0.8042291426374472,0.8935024990388312], + [0.788558246828143,0.8066897347174163,0.8948558246828143], + [0.7937254901960784,0.8091503267973856,0.8962091503267974], + [0.7988927335640138,0.8116109188773548,0.8975624759707804], + [0.8040599769319492,0.8140715109573241,0.8989158016147636], + [0.8092272202998847,0.8165321030372933,0.9002691272587466], + [0.8143944636678201,0.8189926951172626,0.9016224529027297], + [0.8182698961937717,0.8216378316032295,0.9030680507497116], + [0.8217147251057285,0.8243444828911957,0.9045444059976933], + [0.8251595540176855,0.8270511341791619,0.9060207612456748], + [0.8286043829296424,0.829757785467128,0.9074971164936563], + [0.8320492118415993,0.8324644367550941,0.9089734717416378], + [0.8354940407535563,0.8351710880430604,0.9104498269896194], + [0.8389388696655132,0.8378777393310265,0.9119261822376009], + [0.8423836985774702,0.8405843906189927,0.9134025374855824], + [0.8458285274894272,0.8432910419069588,0.914878892733564], + [0.8492733564013841,0.845997693194925,0.9163552479815456], + [0.852718185313341,0.8487043444828912,0.9178316032295271], + [0.856163014225298,0.8514109957708573,0.9193079584775087], + [0.8596078431372549,0.8541176470588235,0.9207843137254902], + [0.8630526720492119,0.8568242983467896,0.9222606689734717], + [0.8664975009611688,0.8595309496347558,0.9237370242214533], + [0.8699423298731257,0.8622376009227221,0.9252133794694348], + [0.8733871587850827,0.8649442522106882,0.9266897347174163], + [0.8768319876970396,0.8676509034986544,0.928166089965398], + [0.8802768166089966,0.8703575547866205,0.9296424452133795], + [0.8837216455209536,0.8730642060745867,0.931118800461361], + [0.8871664744329103,0.8757708573625528,0.9325951557093425], + [0.8906113033448674,0.878477508650519,0.9340715109573241], + [0.8940561322568243,0.8811841599384852,0.9355478662053056], + [0.8975009611687813,0.8838908112264514,0.9370242214532871], + [0.9009457900807382,0.8865974625144175,0.9385005767012687], + [0.9043906189926951,0.8893041138023837,0.9399769319492502], + [0.9078354479046521,0.8920107650903498,0.9414532871972318], + [0.9112802768166091,0.894717416378316,0.9429296424452134], + [0.914725105728566,0.8974240676662822,0.9444059976931949], + [0.9181699346405229,0.9001307189542483,0.9458823529411764], + [0.9216147635524798,0.9028373702422146,0.947358708189158], + [0.9250595924644368,0.9055440215301807,0.9488350634371395], + [0.9275355632449058,0.9076047673971549,0.949988465974625], + [0.9298731257208767,0.9095732410611304,0.9510957324106113], + [0.9322106881968474,0.9115417147251057,0.9522029988465974], + [0.9345482506728182,0.9135101883890812,0.9533102652825836], + [0.9368858131487889,0.9154786620530565,0.9544175317185697], + [0.9392233756247598,0.917447135717032,0.9555247981545559], + [0.9415609381007305,0.9194156093810073,0.9566320645905421], + [0.9438985005767013,0.9213840830449826,0.9577393310265282], + [0.946236063052672,0.9233525567089581,0.9588465974625143], + [0.9485736255286429,0.9253210303729335,0.9599538638985006], + [0.9509111880046136,0.9272895040369089,0.9610611303344867], + [0.9532487504805844,0.9292579777008843,0.9621683967704728], + [0.9555863129565552,0.9312264513648597,0.963275663206459], + [0.957923875432526,0.933194925028835,0.9643829296424452], + [0.9602614379084967,0.9351633986928105,0.9654901960784313], + [0.9625990003844676,0.9371318723567859,0.9665974625144175], + [0.9649365628604383,0.9391003460207612,0.9677047289504036], + [0.9672741253364091,0.9410688196847367,0.9688119953863898], + [0.9696116878123798,0.943037293348712,0.969919261822376], + [0.9719492502883507,0.9450057670126875,0.9710265282583621], + [0.9742868127643214,0.9469742406766628,0.9721337946943482], + [0.9766243752402922,0.9489427143406383,0.9732410611303345], + [0.9789619377162629,0.9509111880046136,0.9743483275663206], + [0.9812995001922338,0.9528796616685891,0.9754555940023067], + [0.9836370626682045,0.9548481353325644,0.9765628604382929], + [0.9859746251441753,0.9568166089965398,0.9776701268742791], + [0.9883121876201462,0.9587850826605152,0.9787773933102653], + [0.9906497500961169,0.9607535563244906,0.9798846597462514], + [0.9929873125720876,0.962722029988466,0.9809919261822375], + [0.9953248750480584,0.9646905036524414,0.9820991926182236], + [0.9976624375240293,0.9666589773164168,0.9832064590542099], + [1.0,0.9686274509803922,0.984313725490196] ], + PuOr: [ + [0.4980392156862745,0.23137254901960785,0.03137254901960784], + [0.5060361399461746,0.2358323721645521,0.031064975009611688], + [0.5140330642060746,0.24029219530949636,0.030757400999615533], + [0.5220299884659746,0.2447520184544406,0.030449826989619375], + [0.5300269127258747,0.24921184159938486,0.03014225297962322], + [0.5380238369857747,0.2536716647443291,0.029834678969627066], + [0.5460207612456748,0.25813148788927337,0.02952710495963091], + [0.5540176855055747,0.2625913110342176,0.029219530949634753], + [0.5620146097654748,0.2670511341791619,0.0289119569396386], + [0.5700115340253749,0.27151095732410613,0.028604382929642444], + [0.5780084582852749,0.2759707804690504,0.02829680891964629], + [0.586005382545175,0.28043060361399463,0.02798923490965013], + [0.5940023068050749,0.2848904267589389,0.027681660899653977], + [0.601999231064975,0.28935024990388314,0.027374086889657822], + [0.6099961553248751,0.2938100730488274,0.027066512879661664], + [0.617993079584775,0.29826989619377164,0.02675893886966551], + [0.6259900038446751,0.3027297193387159,0.026451364859669355], + [0.6339869281045751,0.30718954248366015,0.0261437908496732], + [0.6419838523644752,0.3116493656286044,0.025836216839677045], + [0.6499807766243753,0.31610918877354865,0.02552864282968089], + [0.6579777008842752,0.32056901191849285,0.025221068819684733], + [0.6659746251441753,0.32502883506343716,0.024913494809688578], + [0.6739715494040753,0.3294886582083814,0.024605920799692423], + [0.6819684736639753,0.33394848135332567,0.024298346789696265], + [0.6899653979238753,0.33840830449826986,0.02399077277970011], + [0.6979623221837754,0.34286812764321417,0.023683198769703956], + [0.7054209919261822,0.3483275663206459,0.024605920799692423], + [0.7123414071510957,0.35478662053056514,0.02675893886966551], + [0.7192618223760092,0.3612456747404844,0.0289119569396386], + [0.7261822376009227,0.3677047289504037,0.031064975009611685], + [0.7331026528258362,0.37416378316032295,0.03321799307958477], + [0.7400230680507497,0.3806228373702422,0.03537101114955786], + [0.7469434832756632,0.3870818915801615,0.03752402921953094], + [0.7538638985005766,0.3935409457900807,0.03967704728950402], + [0.7607843137254902,0.39999999999999997,0.041830065359477114], + [0.7677047289504036,0.40645905420991923,0.043983083429450204], + [0.7746251441753171,0.4129181084198385,0.04613610149942329], + [0.7815455594002306,0.4193771626297577,0.04828911956939637], + [0.7884659746251441,0.42583621683967704,0.05044213763936947], + [0.7953863898500576,0.4322952710495963,0.05259515570934256], + [0.8023068050749711,0.4387543252595155,0.054748173779315644], + [0.8092272202998846,0.44521337946943473,0.05690119184928871], + [0.8161476355247981,0.45167243367935406,0.059054209919261816], + [0.8230680507497117,0.4581314878892733,0.061207227989234905], + [0.8299884659746251,0.4645905420991926,0.063360246059208], + [0.8369088811995385,0.4710495963091118,0.06551326412918107], + [0.8438292964244521,0.47750865051903113,0.06766628219915417], + [0.8507497116493656,0.48396770472895034,0.06981930026912725], + [0.8576701268742791,0.49042675893886967,0.07197231833910034], + [0.8645905420991926,0.4968858131487889,0.07412533640907341], + [0.8715109573241061,0.5033448673587082,0.07627835447904652], + [0.8784313725490196,0.5098039215686274,0.0784313725490196], + [0.8828911956939638,0.5181084198385236,0.09058054594386773], + [0.8873510188389081,0.5264129181084197,0.10272971933871577], + [0.8918108419838523,0.5347174163783159,0.114878892733564], + [0.8962706651287966,0.5430219146482121,0.1270280661284121], + [0.9007304882737408,0.5513264129181084,0.13917723952326025], + [0.9051903114186851,0.5596309111880045,0.15132641291810828], + [0.9096501345636293,0.5679354094579008,0.1634755863129565], + [0.9141099577085736,0.576239907727797,0.17562475970780464], + [0.9185697808535178,0.5845444059976931,0.18777393310265278], + [0.9230296039984621,0.5928489042675893,0.1999231064975008], + [0.9274894271434063,0.6011534025374855,0.21207227989234903], + [0.9319492502883506,0.6094579008073817,0.22422145328719714], + [0.9364090734332948,0.6177623990772779,0.23637062668204528], + [0.9408688965782391,0.6260668973471741,0.24851980007689342], + [0.9453287197231833,0.6343713956170701,0.26066897347174134], + [0.9497885428681276,0.6426758938869664,0.2728181468665897], + [0.9542483660130718,0.6509803921568627,0.2849673202614378], + [0.9587081891580161,0.6592848904267589,0.2971164936562859], + [0.9631680123029603,0.6675893886966551,0.30926566705113406], + [0.9676278354479046,0.6758938869665512,0.3214148404459822], + [0.9720876585928488,0.6841983852364474,0.3335640138408303], + [0.9765474817377932,0.6925028835063436,0.34571318723567845], + [0.9810073048827374,0.7008073817762397,0.3578623606305264], + [0.9854671280276817,0.709111880046136,0.3700115340253747], + [0.9899269511726259,0.7174163783160321,0.3821607074202228], + [0.9922337562475971,0.7246443675509419,0.3946174548250671], + [0.9923875432525952,0.7307958477508649,0.40738177623990757], + [0.9925413302575933,0.7369473279507881,0.42014609765474803], + [0.9926951172625913,0.7430988081507112,0.4329104190695885], + [0.9928489042675894,0.7492502883506343,0.4456747404844289], + [0.9930026912725874,0.7554017685505573,0.4584390618992692], + [0.9931564782775856,0.7615532487504805,0.4712033833141098], + [0.9933102652825836,0.7677047289504036,0.4839677047289503], + [0.9934640522875817,0.7738562091503267,0.49673202614379075], + [0.9936178392925799,0.7800076893502499,0.5094963475586312], + [0.9937716262975779,0.786159169550173,0.5222606689734717], + [0.993925413302576,0.792310649750096,0.5350249903883121], + [0.994079200307574,0.7984621299500192,0.5477893118031525], + [0.9942329873125721,0.8046136101499421,0.5605536332179928], + [0.9943867743175702,0.8107650903498653,0.5733179546328335], + [0.9945405613225683,0.8169165705497885,0.5860822760476739], + [0.9946943483275663,0.8230680507497116,0.5988465974625143], + [0.9948481353325644,0.8292195309496347,0.6116109188773549], + [0.9950019223375625,0.8353710111495578,0.6243752402921953], + [0.9951557093425606,0.841522491349481,0.6371395617070357], + [0.9953094963475586,0.847673971549404,0.6499038831218762], + [0.9954632833525567,0.8538254517493271,0.6626682045367165], + [0.9956170703575548,0.8599769319492503,0.6754325259515571], + [0.9957708573625529,0.8661284121491734,0.6881968473663975], + [0.9959246443675509,0.8722798923490965,0.700961168781238], + [0.996078431372549,0.8784313725490196,0.7137254901960784], + [0.9950019223375625,0.8819684736639753,0.7237216455209535], + [0.993925413302576,0.8855055747789312,0.7337178008458285], + [0.9928489042675894,0.889042675893887,0.7437139561707036], + [0.9917723952326029,0.8925797770088427,0.7537101114955785], + [0.9906958861976163,0.8961168781237985,0.7637062668204537], + [0.9896193771626298,0.8996539792387543,0.7737024221453287], + [0.9885428681276432,0.9031910803537101,0.7836985774702038], + [0.9874663590926567,0.9067281814686659,0.7936947327950788], + [0.9863898500576701,0.9102652825836217,0.8036908881199539], + [0.9853133410226836,0.9138023836985775,0.8136870434448289], + [0.9842368319876971,0.9173394848135332,0.823683198769704], + [0.9831603229527105,0.920876585928489,0.8336793540945788], + [0.9820838139177239,0.9244136870434448,0.843675509419454], + [0.9810073048827375,0.9279507881584006,0.8536716647443291], + [0.9799307958477509,0.9314878892733564,0.8636678200692042], + [0.9788542868127643,0.9350249903883122,0.8736639753940791], + [0.9777777777777777,0.938562091503268,0.8836601307189542], + [0.9767012687427913,0.9420991926182237,0.8936562860438293], + [0.9756247597078047,0.9456362937331796,0.9036524413687044], + [0.9745482506728181,0.9491733948481352,0.9136485966935792], + [0.9734717416378316,0.9527104959630911,0.9236447520184544], + [0.9723952326028451,0.9562475970780469,0.9336409073433295], + [0.9713187235678585,0.9597846981930027,0.9436370626682046], + [0.970242214532872,0.9633217993079585,0.9536332179930795], + [0.9691657054978854,0.9668589004229142,0.9636293733179546], + [0.9662437524029219,0.9663975394079201,0.9677047289504037], + [0.9614763552479816,0.9619377162629758,0.9658592848904267], + [0.9567089580930411,0.9574778931180316,0.9640138408304498], + [0.9519415609381008,0.9530180699730872,0.962168396770473], + [0.9471741637831604,0.9485582468281432,0.9603229527104961], + [0.94240676662822,0.9440984236831987,0.9584775086505191], + [0.9376393694732795,0.9396386005382545,0.9566320645905421], + [0.9328719723183392,0.9351787773933102,0.9547866205305652], + [0.9281045751633987,0.930718954248366,0.9529411764705882], + [0.9233371780084584,0.9262591311034218,0.9510957324106113], + [0.9185697808535179,0.9217993079584775,0.9492502883506344], + [0.9138023836985776,0.9173394848135333,0.9474048442906574], + [0.9090349865436371,0.912879661668589,0.9455594002306805], + [0.9042675893886967,0.9084198385236448,0.9437139561707035], + [0.8995001922337563,0.9039600153787005,0.9418685121107266], + [0.894732795078816,0.8995001922337563,0.9400230680507498], + [0.8899653979238755,0.895040369088812,0.9381776239907728], + [0.8851980007689351,0.8905805459438678,0.9363321799307959], + [0.8804306036139947,0.8861207227989235,0.9344867358708189], + [0.8756632064590543,0.8816608996539793,0.932641291810842], + [0.870895809304114,0.8772010765090352,0.9307958477508651], + [0.8661284121491735,0.8727412533640908,0.9289504036908881], + [0.8613610149942331,0.8682814302191466,0.9271049596309112], + [0.8565936178392927,0.8638216070742023,0.9252595155709342], + [0.8518262206843523,0.8593617839292581,0.9234140715109573], + [0.8470588235294119,0.8549019607843138,0.9215686274509804], + [0.841214917339485,0.8476739715494043,0.9177239523260285], + [0.835371011149558,0.8404459823144946,0.9138792772010765], + [0.8295271049596311,0.8332179930795849,0.9100346020761246], + [0.8236831987697041,0.8259900038446752,0.9061899269511727], + [0.8178392925797772,0.8187620146097656,0.9023452518262207], + [0.8119953863898502,0.811534025374856,0.8985005767012688], + [0.8061514801999232,0.8043060361399463,0.8946559015763169], + [0.8003075740099963,0.7970780469050367,0.8908112264513649], + [0.7944636678200694,0.7898500576701271,0.886966551326413], + [0.7886197616301424,0.7826220684352174,0.883121876201461], + [0.7827758554402157,0.775394079200308,0.8792772010765092], + [0.7769319492502885,0.7681660899653981,0.8754325259515572], + [0.7710880430603615,0.7609381007304884,0.8715878508266052], + [0.7652441368704346,0.7537101114955788,0.8677431757016533], + [0.7594002306805077,0.7464821222606691,0.8638985005767014], + [0.7535563244905807,0.7392541330257595,0.8600538254517494], + [0.7477124183006537,0.7320261437908498,0.8562091503267975], + [0.7418685121107268,0.7247981545559402,0.8523644752018456], + [0.7360246059207998,0.7175701653210305,0.8485198000768935], + [0.7301806997308729,0.7103421760861208,0.8446751249519416], + [0.7243367935409459,0.7031141868512112,0.8408304498269897], + [0.718492887351019,0.6958861976163015,0.8369857747020377], + [0.712648981161092,0.6886582083813919,0.8331410995770858], + [0.7068050749711651,0.6814302191464823,0.8292964244521339], + [0.7009611687812382,0.6742022299115726,0.8254517493271819], + [0.6941945405613228,0.6662821991541716,0.8206074586697425], + [0.6865051903114191,0.6576701268742795,0.8147635524798158], + [0.678815840061515,0.6490580545943869,0.8089196462898887], + [0.671126489811611,0.6404459823144946,0.8030757400999616], + [0.6634371395617071,0.6318339100346022,0.7972318339100347], + [0.6557477893118033,0.6232218377547099,0.7913879277201078], + [0.6480584390618994,0.6146097654748175,0.7855440215301808], + [0.6403690888119955,0.6059976931949251,0.7797001153402539], + [0.6326797385620916,0.5973856209150328,0.7738562091503269], + [0.6249903883121877,0.5887735486351404,0.7680123029603999], + [0.6173010380622839,0.5801614763552481,0.762168396770473], + [0.60961168781238,0.5715494040753557,0.7563244905805461], + [0.601922337562476,0.5629373317954633,0.750480584390619], + [0.5942329873125722,0.554325259515571,0.7446366782006921], + [0.5865436370626683,0.5457131872356786,0.7387927720107652], + [0.5788542868127644,0.5371011149557863,0.7329488658208382], + [0.5711649365628605,0.5284890426758939,0.7271049596309113], + [0.5634755863129568,0.5198769703960018,0.7212610534409845], + [0.5557862360630528,0.5112648981161092,0.7154171472510573], + [0.5480968858131489,0.5026528258362168,0.7095732410611304], + [0.540407535563245,0.49404075355632454,0.7037293348712035], + [0.532718185313341,0.4854286812764322,0.6978854286812766], + [0.5250288350634371,0.4768166089965398,0.6920415224913495], + [0.5173394848135333,0.46820453671664747,0.6861976163014225], + [0.5096501345636294,0.4595924644367551,0.6803537101114956], + [0.5019607843137255,0.45098039215686275,0.6745098039215687], + [0.49519415609381007,0.43929257977700886,0.6689734717416379], + [0.48842752787389465,0.427604767397155,0.663437139561707], + [0.48166089965397924,0.415916955017301,0.6579008073817763], + [0.4748942714340638,0.40422914263744714,0.6523644752018455], + [0.4681276432141484,0.39254133025759325,0.6468281430219147], + [0.461361014994233,0.38085351787773936,0.6412918108419838], + [0.45459438677431757,0.3691657054978854,0.6357554786620531], + [0.4478277585544023,0.35747789311803185,0.6302191464821224], + [0.44106113033448674,0.34579008073817763,0.6246828143021915], + [0.4342945021145713,0.33410226835832374,0.6191464821222606], + [0.4275278738946559,0.32241445597846985,0.6136101499423299], + [0.4207612456747405,0.3107266435986159,0.6080738177623991], + [0.4139946174548251,0.29903883121876207,0.6025374855824683], + [0.40722798923490966,0.2873510188389081,0.5970011534025375], + [0.40046136101499424,0.2756632064590542,0.5914648212226067], + [0.39369473279507883,0.26397539407920034,0.5859284890426759], + [0.3869281045751634,0.2522875816993464,0.5803921568627451], + [0.380161476355248,0.2405997693194925,0.5748558246828143], + [0.3733948481353325,0.22891195693963862,0.5693194925028835], + [0.36662821991541716,0.2172241445597847,0.5637831603229527], + [0.3598615916955017,0.2055363321799308,0.558246828143022], + [0.35309496347558633,0.1938485198000769,0.5527104959630911], + [0.34632833525567086,0.182160707420223,0.5471741637831603], + [0.33956170703575567,0.17047289504036944,0.5416378316032296], + [0.33279507881584003,0.15878508266051522,0.5361014994232988], + [0.3264129181084198,0.14994232987312572,0.5286428296808919], + [0.32041522491349483,0.1439446366782007,0.5192618223760093], + [0.3144175317185698,0.13794694348327569,0.5098808150711265], + [0.30841983852364474,0.13194925028835064,0.5004998077662437], + [0.3024221453287197,0.12595155709342562,0.491118800461361], + [0.2964244521337947,0.11995386389850059,0.48173779315647824], + [0.29042675893886966,0.11395617070357555,0.4723567858515955], + [0.28442906574394466,0.10795847750865054,0.4629757785467128], + [0.2784313725490196,0.1019607843137255,0.45359477124183006], + [0.27243367935409457,0.09596309111880047,0.44421376393694734], + [0.2664359861591695,0.08996539792387544,0.4348327566320646], + [0.26043829296424453,0.0839677047289504,0.4254517493271819], + [0.2544405997693195,0.07797001153402539,0.4160707420222991], + [0.24844290657439447,0.07197231833910035,0.4066897347174164], + [0.24244521337946962,0.0659746251441755,0.3973087274125339], + [0.2364475201845444,0.0599769319492503,0.3879277201076509], + [0.23044982698961938,0.053979238754325254,0.3785467128027682], + [0.22445213379469436,0.047981545559400235,0.3691657054978854], + [0.21845444059976932,0.0419838523644752,0.35978469819300274], + [0.21245674740484433,0.03598615916955018,0.35040369088811996], + [0.20645905420991928,0.029988465974625136,0.34102268358323723], + [0.20046136101499423,0.023990772779700104,0.3316416762783545], + [0.1944636678200692,0.017993079584775085,0.3222606689734717], + [0.1884659746251442,0.011995386389850066,0.31287966166858905], + [0.18246828143021915,0.005997693194925019,0.30349865436370627], + [0.17647058823529413,0.0,0.29411764705882354] ], + PuOr_r: [ + [0.17647058823529413,0.0,0.29411764705882354], + [0.18246828143021915,0.005997693194925029,0.30349865436370627], + [0.1884659746251442,0.011995386389850059,0.312879661668589], + [0.1944636678200692,0.017993079584775088,0.3222606689734717], + [0.20046136101499423,0.023990772779700117,0.3316416762783545], + [0.20645905420991928,0.029988465974625147,0.34102268358323723], + [0.2124567474048443,0.035986159169550176,0.35040369088811996], + [0.21845444059976932,0.04198385236447521,0.3597846981930027], + [0.22445213379469436,0.047981545559400235,0.3691657054978854], + [0.23044982698961938,0.05397923875432527,0.3785467128027682], + [0.2364475201845444,0.059976931949250294,0.3879277201076509], + [0.24244521337946945,0.06597462514417532,0.39730872741253365], + [0.24844290657439447,0.07197231833910035,0.4066897347174164], + [0.2544405997693195,0.07797001153402537,0.4160707420222991], + [0.26043829296424453,0.08396770472895042,0.4254517493271819], + [0.2664359861591695,0.08996539792387544,0.43483275663206455], + [0.27243367935409457,0.09596309111880047,0.44421376393694734], + [0.2784313725490196,0.10196078431372549,0.45359477124183006], + [0.28442906574394466,0.10795847750865054,0.4629757785467128], + [0.29042675893886966,0.11395617070357555,0.4723567858515956], + [0.2964244521337947,0.11995386389850059,0.48173779315647824], + [0.3024221453287197,0.12595155709342562,0.491118800461361], + [0.30841983852364474,0.13194925028835064,0.5004998077662437], + [0.3144175317185698,0.13794694348327569,0.5098808150711265], + [0.32041522491349483,0.1439446366782007,0.5192618223760093], + [0.3264129181084198,0.14994232987312572,0.5286428296808919], + [0.3327950788158401,0.1587850826605152,0.5361014994232988], + [0.3395617070357555,0.1704728950403691,0.5416378316032295], + [0.3463283352556709,0.182160707420223,0.5471741637831603], + [0.35309496347558633,0.19384851980007692,0.5527104959630911], + [0.35986159169550175,0.2055363321799308,0.558246828143022], + [0.36662821991541716,0.21722414455978473,0.5637831603229527], + [0.3733948481353326,0.22891195693963862,0.5693194925028835], + [0.38016147635524794,0.24059976931949245,0.5748558246828143], + [0.3869281045751634,0.2522875816993464,0.5803921568627451], + [0.39369473279507883,0.26397539407920034,0.5859284890426759], + [0.40046136101499424,0.27566320645905423,0.5914648212226067], + [0.4072279892349096,0.287351018838908,0.5970011534025375], + [0.4139946174548251,0.299038831218762,0.6025374855824683], + [0.4207612456747405,0.3107266435986159,0.6080738177623991], + [0.4275278738946559,0.32241445597846985,0.6136101499423299], + [0.43429450211457127,0.3341022683583237,0.6191464821222606], + [0.44106113033448674,0.34579008073817763,0.6246828143021915], + [0.44782775855440216,0.3574778931180316,0.6302191464821223], + [0.45459438677431757,0.3691657054978854,0.6357554786620531], + [0.46136101499423293,0.38085351787773924,0.6412918108419838], + [0.4681276432141484,0.39254133025759325,0.6468281430219147], + [0.4748942714340638,0.40422914263744714,0.6523644752018455], + [0.48166089965397924,0.415916955017301,0.6579008073817763], + [0.4884275278738946,0.42760476739715486,0.663437139561707], + [0.49519415609381007,0.43929257977700886,0.6689734717416379], + [0.5019607843137255,0.45098039215686275,0.6745098039215687], + [0.5096501345636294,0.4595924644367551,0.6803537101114956], + [0.5173394848135332,0.46820453671664736,0.6861976163014225], + [0.5250288350634371,0.47681660899653977,0.6920415224913495], + [0.532718185313341,0.48542868127643213,0.6978854286812765], + [0.5404075355632448,0.4940407535563245,0.7037293348712034], + [0.5480968858131487,0.5026528258362167,0.7095732410611303], + [0.5557862360630527,0.5112648981161092,0.7154171472510573], + [0.5634755863129565,0.5198769703960014,0.7212610534409842], + [0.5711649365628604,0.5284890426758938,0.7271049596309112], + [0.5788542868127642,0.537101114955786,0.7329488658208381], + [0.5865436370626681,0.5457131872356785,0.7387927720107651], + [0.594232987312572,0.5543252595155709,0.744636678200692], + [0.6019223375624759,0.5629373317954632,0.7504805843906189], + [0.6096116878123797,0.5715494040753556,0.756324490580546], + [0.6173010380622835,0.5801614763552477,0.7621683967704728], + [0.6249903883121876,0.5887735486351402,0.7680123029603998], + [0.6326797385620914,0.5973856209150326,0.7738562091503267], + [0.6403690888119953,0.6059976931949249,0.7797001153402536], + [0.6480584390618992,0.6146097654748173,0.7855440215301807], + [0.655747789311803,0.6232218377547096,0.7913879277201076], + [0.6634371395617069,0.631833910034602,0.7972318339100345], + [0.6711264898116108,0.6404459823144942,0.8030757400999614], + [0.6788158400615145,0.6490580545943865,0.8089196462898883], + [0.6865051903114185,0.657670126874279,0.8147635524798154], + [0.6941945405613223,0.6662821991541713,0.8206074586697423], + [0.7009611687812378,0.6742022299115723,0.8254517493271818], + [0.7068050749711648,0.6814302191464819,0.8292964244521337], + [0.7126489811610918,0.6886582083813916,0.8331410995770856], + [0.7184928873510187,0.6958861976163013,0.8369857747020376], + [0.7243367935409457,0.703114186851211,0.8408304498269895], + [0.7301806997308725,0.7103421760861205,0.8446751249519414], + [0.7360246059207995,0.7175701653210302,0.8485198000768934], + [0.7418685121107266,0.7247981545559399,0.8523644752018453], + [0.7477124183006535,0.7320261437908495,0.8562091503267973], + [0.7535563244905805,0.7392541330257593,0.8600538254517492], + [0.7594002306805074,0.7464821222606689,0.8638985005767011], + [0.7652441368704344,0.7537101114955785,0.8677431757016532], + [0.7710880430603613,0.7609381007304882,0.8715878508266051], + [0.7769319492502882,0.7681660899653977,0.875432525951557], + [0.7827758554402152,0.7753940792003075,0.879277201076509], + [0.7886197616301422,0.7826220684352171,0.8831218762014609], + [0.7944636678200692,0.7898500576701268,0.8869665513264129], + [0.8003075740099961,0.7970780469050365,0.8908112264513648], + [0.8061514801999231,0.8043060361399461,0.8946559015763167], + [0.81199538638985,0.8115340253748557,0.8985005767012687], + [0.8178392925797769,0.8187620146097654,0.9023452518262206], + [0.8236831987697039,0.825990003844675,0.9061899269511725], + [0.8295271049596309,0.8332179930795847,0.9100346020761245], + [0.8353710111495578,0.8404459823144944,0.9138792772010764], + [0.8412149173394848,0.847673971549404,0.9177239523260284], + [0.8470588235294118,0.8549019607843137,0.9215686274509803], + [0.8518262206843522,0.859361783929258,0.9234140715109572], + [0.8565936178392926,0.8638216070742022,0.9252595155709342], + [0.861361014994233,0.8682814302191465,0.9271049596309111], + [0.8661284121491734,0.8727412533640906,0.928950403690888], + [0.8708958093041138,0.877201076509035,0.930795847750865], + [0.8756632064590542,0.8816608996539792,0.932641291810842], + [0.8804306036139946,0.8861207227989235,0.9344867358708189], + [0.8851980007689351,0.8905805459438677,0.9363321799307958], + [0.8899653979238754,0.895040369088812,0.9381776239907728], + [0.8947327950788159,0.8995001922337562,0.9400230680507496], + [0.8995001922337562,0.9039600153787005,0.9418685121107266], + [0.9042675893886966,0.9084198385236447,0.9437139561707035], + [0.909034986543637,0.912879661668589,0.9455594002306805], + [0.9138023836985775,0.9173394848135332,0.9474048442906574], + [0.9185697808535178,0.9217993079584775,0.9492502883506343], + [0.9233371780084583,0.9262591311034217,0.9510957324106113], + [0.9281045751633987,0.930718954248366,0.9529411764705882], + [0.9328719723183391,0.9351787773933102,0.9547866205305652], + [0.9376393694732795,0.9396386005382545,0.9566320645905421], + [0.9424067666282199,0.9440984236831987,0.958477508650519], + [0.9471741637831603,0.948558246828143,0.960322952710496], + [0.9519415609381008,0.9530180699730872,0.9621683967704728], + [0.9567089580930411,0.9574778931180316,0.9640138408304498], + [0.9614763552479816,0.9619377162629758,0.9658592848904267], + [0.9662437524029219,0.9663975394079201,0.9677047289504037], + [0.9691657054978854,0.9668589004229142,0.9636293733179546], + [0.970242214532872,0.9633217993079585,0.9536332179930797], + [0.9713187235678585,0.9597846981930027,0.9436370626682046], + [0.9723952326028451,0.956247597078047,0.9336409073433295], + [0.9734717416378316,0.9527104959630912,0.9236447520184548], + [0.9745482506728181,0.9491733948481353,0.9136485966935795], + [0.9756247597078047,0.9456362937331796,0.9036524413687044], + [0.9767012687427913,0.9420991926182238,0.8936562860438294], + [0.9777777777777777,0.938562091503268,0.8836601307189543], + [0.9788542868127643,0.9350249903883122,0.8736639753940794], + [0.9799307958477509,0.9314878892733565,0.8636678200692043], + [0.9810073048827374,0.9279507881584006,0.8536716647443292], + [0.9820838139177239,0.9244136870434448,0.8436755094194542], + [0.9831603229527105,0.9208765859284891,0.8336793540945792], + [0.9842368319876971,0.9173394848135333,0.8236831987697042], + [0.9853133410226835,0.9138023836985776,0.8136870434448291], + [0.9863898500576701,0.9102652825836217,0.803690888119954], + [0.9874663590926567,0.906728181468666,0.793694732795079], + [0.9885428681276432,0.9031910803537102,0.783698577470204], + [0.9896193771626297,0.8996539792387543,0.7737024221453289], + [0.9906958861976163,0.8961168781237987,0.7637062668204542], + [0.9917723952326029,0.8925797770088428,0.7537101114955789], + [0.9928489042675894,0.8890426758938871,0.7437139561707038], + [0.9939254133025759,0.8855055747789313,0.7337178008458288], + [0.9950019223375625,0.8819684736639755,0.7237216455209537], + [0.996078431372549,0.8784313725490197,0.7137254901960788], + [0.995924644367551,0.8722798923490966,0.7009611687812384], + [0.9957708573625529,0.8661284121491736,0.688196847366398], + [0.9956170703575548,0.8599769319492504,0.6754325259515574], + [0.9954632833525567,0.8538254517493273,0.662668204536717], + [0.9953094963475586,0.8476739715494043,0.6499038831218766], + [0.9951557093425606,0.8415224913494811,0.6371395617070361], + [0.9950019223375625,0.835371011149558,0.6243752402921957], + [0.9948481353325644,0.829219530949635,0.6116109188773553], + [0.9946943483275663,0.8230680507497118,0.5988465974625148], + [0.9945405613225683,0.8169165705497887,0.5860822760476744], + [0.9943867743175702,0.8107650903498658,0.5733179546328343], + [0.9942329873125721,0.8046136101499425,0.5605536332179935], + [0.994079200307574,0.7984621299500194,0.547789311803153], + [0.993925413302576,0.7923106497500962,0.5350249903883125], + [0.9937716262975779,0.7861591695501732,0.5222606689734721], + [0.9936178392925799,0.7800076893502501,0.5094963475586317], + [0.9934640522875817,0.7738562091503269,0.4967320261437912], + [0.9933102652825837,0.7677047289504039,0.4839677047289508], + [0.9931564782775856,0.7615532487504808,0.4712033833141103], + [0.9930026912725874,0.7554017685505576,0.45843906189926986], + [0.9928489042675894,0.7492502883506346,0.44567474048442945], + [0.9926951172625913,0.7430988081507114,0.432910419069589], + [0.9925413302575933,0.7369473279507883,0.42014609765474853], + [0.9923875432525952,0.7307958477508653,0.4073817762399081], + [0.9922337562475971,0.7246443675509421,0.39461745482506766], + [0.9899269511726261,0.7174163783160326,0.38216070742022334], + [0.9854671280276819,0.7091118800461366,0.3700115340253755], + [0.9810073048827376,0.7008073817762401,0.357862360630527], + [0.9765474817377933,0.6925028835063439,0.3457131872356789], + [0.9720876585928491,0.6841983852364477,0.33356401384083073], + [0.9676278354479048,0.6758938869665515,0.32141484044598256], + [0.9631680123029606,0.6675893886966553,0.30926566705113445], + [0.9587081891580163,0.6592848904267591,0.2971164936562863], + [0.954248366013072,0.6509803921568629,0.2849673202614381], + [0.9497885428681277,0.6426758938869667,0.27281814686659], + [0.9453287197231834,0.6343713956170705,0.26066897347174184], + [0.9408688965782392,0.6260668973471742,0.2485198000768937], + [0.9364090734332949,0.617762399077278,0.23637062668204556], + [0.9319492502883507,0.6094579008073818,0.2242214532871974], + [0.9274894271434064,0.6011534025374856,0.21207227989234925], + [0.9230296039984622,0.5928489042675894,0.19992310649750109], + [0.9185697808535179,0.5845444059976932,0.18777393310265295], + [0.9141099577085738,0.5762399077277973,0.17562475970780514], + [0.9096501345636294,0.5679354094579009,0.16347558631295667], + [0.9051903114186851,0.5596309111880047,0.1513264129181085], + [0.9007304882737409,0.5513264129181085,0.13917723952326033], + [0.8962706651287966,0.5430219146482123,0.12702806612841222], + [0.8918108419838524,0.534717416378316,0.11487889273356405], + [0.8873510188389081,0.5264129181084198,0.10272971933871589], + [0.8828911956939639,0.5181084198385236,0.09058054594386777], + [0.8784313725490196,0.5098039215686274,0.0784313725490196], + [0.8715109573241061,0.5033448673587082,0.07627835447904652], + [0.8645905420991926,0.4968858131487889,0.07412533640907343], + [0.8576701268742791,0.4904267589388696,0.07197231833910034], + [0.8507497116493656,0.4839677047289504,0.06981930026912726], + [0.8438292964244521,0.47750865051903113,0.06766628219915417], + [0.8369088811995387,0.47104959630911186,0.06551326412918108], + [0.8299884659746252,0.4645905420991926,0.063360246059208], + [0.8230680507497118,0.4581314878892735,0.061207227989234975], + [0.8161476355247981,0.45167243367935406,0.059054209919261816], + [0.8092272202998846,0.44521337946943484,0.05690119184928873], + [0.8023068050749711,0.4387543252595155,0.05474817377931565], + [0.7953863898500576,0.4322952710495963,0.05259515570934256], + [0.7884659746251441,0.42583621683967704,0.05044213763936947], + [0.7815455594002306,0.41937716262975777,0.04828911956939638], + [0.7746251441753171,0.4129181084198385,0.0461361014994233], + [0.7677047289504036,0.40645905420991923,0.04398308342945021], + [0.7607843137254902,0.4,0.04183006535947713], + [0.7538638985005767,0.3935409457900807,0.03967704728950403], + [0.7469434832756632,0.3870818915801615,0.03752402921953095], + [0.7400230680507497,0.3806228373702422,0.03537101114955786], + [0.7331026528258362,0.37416378316032295,0.03321799307958478], + [0.7261822376009227,0.3677047289504037,0.031064975009611688], + [0.7192618223760092,0.3612456747404844,0.0289119569396386], + [0.7123414071510958,0.3547866205305653,0.02675893886966557], + [0.7054209919261822,0.3483275663206459,0.024605920799692427], + [0.6979623221837754,0.34286812764321417,0.023683198769703956], + [0.6899653979238753,0.3384083044982699,0.02399077277970011], + [0.6819684736639754,0.33394848135332567,0.02429834678969627], + [0.6739715494040753,0.3294886582083814,0.024605920799692423], + [0.6659746251441753,0.32502883506343716,0.024913494809688578], + [0.6579777008842752,0.3205690119184929,0.025221068819684733], + [0.6499807766243753,0.31610918877354865,0.02552864282968089], + [0.6419838523644752,0.3116493656286044,0.025836216839677045], + [0.6339869281045751,0.30718954248366015,0.0261437908496732], + [0.6259900038446751,0.3027297193387159,0.026451364859669355], + [0.617993079584775,0.29826989619377164,0.02675893886966551], + [0.6099961553248751,0.2938100730488274,0.027066512879661667], + [0.601999231064975,0.28935024990388314,0.027374086889657822], + [0.5940023068050749,0.2848904267589389,0.027681660899653977], + [0.5860053825451752,0.28043060361399474,0.027989234909650124], + [0.5780084582852749,0.2759707804690504,0.02829680891964629], + [0.5700115340253749,0.27151095732410613,0.028604382929642444], + [0.5620146097654748,0.2670511341791619,0.0289119569396386], + [0.5540176855055747,0.2625913110342176,0.029219530949634753], + [0.5460207612456748,0.25813148788927337,0.029527104959630908], + [0.5380238369857747,0.2536716647443291,0.029834678969627066], + [0.5300269127258747,0.24921184159938486,0.03014225297962322], + [0.5220299884659746,0.2447520184544406,0.030449826989619375], + [0.5140330642060746,0.24029219530949636,0.030757400999615533], + [0.5060361399461746,0.2358323721645521,0.031064975009611688], + [0.4980392156862745,0.23137254901960785,0.03137254901960784] ], + PuRd: [ + [0.9686274509803922,0.9568627450980393,0.9764705882352941], + [0.9666589773164168,0.9545251826220684,0.9752402921953095], + [0.9646905036524414,0.9521876201460977,0.9740099961553248], + [0.962722029988466,0.9498500576701269,0.9727797001153402], + [0.9607535563244906,0.9475124951941561,0.9715494040753556], + [0.9587850826605152,0.9451749327181853,0.970319108035371], + [0.9568166089965398,0.9428373702422146,0.9690888119953863], + [0.9548481353325644,0.9404998077662438,0.9678585159554017], + [0.9528796616685891,0.938162245290273,0.9666282199154171], + [0.9509111880046136,0.9358246828143022,0.9653979238754326], + [0.9489427143406383,0.9334871203383315,0.9641676278354478], + [0.9469742406766628,0.9311495578623606,0.9629373317954633], + [0.9450057670126875,0.9288119953863898,0.9617070357554787], + [0.943037293348712,0.9264744329104191,0.9604767397154941], + [0.9410688196847367,0.9241368704344483,0.9592464436755094], + [0.9391003460207612,0.9217993079584775,0.9580161476355248], + [0.9371318723567859,0.9194617454825067,0.9567858515955402], + [0.9351633986928105,0.917124183006536,0.9555555555555555], + [0.933194925028835,0.9147866205305651,0.9543252595155709], + [0.9312264513648597,0.9124490580545944,0.9530949634755863], + [0.9292579777008843,0.9101114955786236,0.9518646674356017], + [0.9272895040369089,0.9077739331026529,0.950634371395617], + [0.9253210303729335,0.905436370626682,0.9494040753556324], + [0.9233525567089581,0.9030988081507113,0.9481737793156478], + [0.9213840830449826,0.9007612456747405,0.9469434832756632], + [0.9194156093810073,0.8984236831987698,0.9457131872356785], + [0.917447135717032,0.8960861207227989,0.944482891195694], + [0.9154786620530565,0.8937485582468281,0.9432525951557094], + [0.9135101883890812,0.8914109957708574,0.9420222991157248], + [0.9115417147251057,0.8890734332948865,0.9407920030757401], + [0.9095732410611304,0.8867358708189158,0.9395617070357555], + [0.9076047673971549,0.884398308342945,0.9383314109957709], + [0.9055901576316802,0.8817377931564783,0.9369319492502883], + [0.9032525951557093,0.8768166089965398,0.9343483275663207], + [0.9009150326797386,0.8718954248366013,0.9317647058823529], + [0.8985774702037678,0.8669742406766628,0.9291810841983852], + [0.896239907727797,0.8620530565167243,0.9265974625144175], + [0.8939023452518262,0.8571318723567859,0.9240138408304498], + [0.8915647827758555,0.8522106881968473,0.9214302191464822], + [0.8892272202998847,0.8472895040369088,0.9188465974625144], + [0.8868896578239139,0.8423683198769704,0.9162629757785467], + [0.8845520953479431,0.8374471357170319,0.913679354094579], + [0.8822145328719724,0.8325259515570934,0.9110957324106113], + [0.8798769703960015,0.8276047673971549,0.9085121107266436], + [0.8775394079200308,0.8226835832372165,0.9059284890426759], + [0.87520184544406,0.817762399077278,0.9033448673587082], + [0.8728642829680893,0.8128412149173394,0.9007612456747405], + [0.8705267204921184,0.8079200307574009,0.8981776239907727], + [0.8681891580161477,0.8029988465974625,0.8955940023068051], + [0.8658515955401769,0.7980776624375241,0.8930103806228373], + [0.8635140330642062,0.7931564782775855,0.8904267589388697], + [0.8611764705882353,0.788235294117647,0.8878431372549019], + [0.8588389081122645,0.7833141099577086,0.8852595155709342], + [0.8565013456362938,0.7783929257977701,0.8826758938869665], + [0.854163783160323,0.7734717416378316,0.8800922722029988], + [0.8518262206843522,0.7685505574778931,0.8775086505190312], + [0.8494886582083814,0.7636293733179547,0.8749250288350634], + [0.8471510957324107,0.7587081891580162,0.8723414071510958], + [0.8448135332564398,0.7537870049980776,0.869757785467128], + [0.8424759707804691,0.7488658208381391,0.8671741637831603], + [0.8401384083044983,0.7439446366782007,0.8645905420991926], + [0.8378008458285275,0.7390234525182622,0.8620069204152249], + [0.8354632833525567,0.7341022683583237,0.8594232987312571], + [0.833125720876586,0.7291810841983852,0.8568396770472895], + [0.8310342176086121,0.7243521722414455,0.854317570165321], + [0.829680891964629,0.7198000768935024,0.8519800076893502], + [0.828327566320646,0.7152479815455595,0.8496424452133795], + [0.8269742406766628,0.7106958861976163,0.8473048827374087], + [0.8256209150326798,0.7061437908496732,0.8449673202614378], + [0.8242675893886967,0.7015916955017301,0.8426297577854671], + [0.8229142637447135,0.697039600153787,0.8402921953094963], + [0.8215609381007305,0.6924875048058439,0.8379546328335256], + [0.8202076124567474,0.6879354094579008,0.8356170703575547], + [0.8188542868127644,0.6833833141099577,0.833279507881584], + [0.8175009611687812,0.6788312187620147,0.8309419454056133], + [0.8161476355247982,0.6742791234140715,0.8286043829296424], + [0.8147943098808151,0.6697270280661284,0.8262668204536716], + [0.813440984236832,0.6651749327181853,0.8239292579777009], + [0.8120876585928489,0.6606228373702422,0.8215916955017301], + [0.8107343329488659,0.6560707420222991,0.8192541330257593], + [0.8093810073048827,0.651518646674356,0.8169165705497885], + [0.8080276816608997,0.6469665513264129,0.8145790080738178], + [0.8066743560169166,0.6424144559784699,0.8122414455978471], + [0.8053210303729335,0.6378623606305267,0.8099038831218762], + [0.8039677047289504,0.6333102652825836,0.8075663206459054], + [0.8026143790849674,0.6287581699346405,0.8052287581699347], + [0.8012610534409842,0.6242060745866974,0.8028911956939638], + [0.7999077277970011,0.6196539792387543,0.8005536332179931], + [0.7985544021530181,0.6151018838908112,0.7982160707420223], + [0.7972010765090349,0.6105497885428681,0.7958785082660516], + [0.7958477508650519,0.6059976931949251,0.7935409457900807], + [0.7944944252210688,0.6014455978469819,0.79120338331411], + [0.7931410995770857,0.5968935024990389,0.7888658208381392], + [0.7917877739331026,0.5923414071510957,0.7865282583621684], + [0.7904344482891196,0.5877893118031527,0.7841906958861976], + [0.7890811226451364,0.5832372164552095,0.7818531334102269], + [0.7892502883506344,0.5782237600922723,0.7793310265282584], + [0.7919569396386005,0.5724413687043445,0.7765013456362937], + [0.7946635909265667,0.5666589773164169,0.7736716647443291], + [0.7973702422145329,0.5608765859284891,0.7708419838523645], + [0.800076893502499,0.5550941945405614,0.7680123029603998], + [0.8027835447904652,0.5493118031526336,0.7651826220684352], + [0.8054901960784313,0.5435294117647059,0.7623529411764706], + [0.8081968473663975,0.5377470203767782,0.759523260284506], + [0.8109034986543637,0.5319646289888504,0.7566935793925413], + [0.8136101499423298,0.5261822376009228,0.7538638985005767], + [0.8163168012302959,0.5203998462129951,0.7510342176086121], + [0.8190234525182621,0.5146174548250673,0.7482045367166474], + [0.8217301038062284,0.5088350634371396,0.7453748558246828], + [0.8244367550941946,0.5030526720492119,0.7425451749327182], + [0.8271434063821607,0.49727028066128415,0.7397154940407535], + [0.8298500576701269,0.4914878892733564,0.736885813148789], + [0.832556708958093,0.4857054978854287,0.7340561322568243], + [0.8352633602460592,0.479923106497501,0.7312264513648596], + [0.8379700115340253,0.47414071510957334,0.7283967704728951], + [0.8406766628219915,0.46835832372164554,0.7255670895809304], + [0.8433833141099577,0.4625759323337178,0.7227374086889657], + [0.8460899653979239,0.4567935409457901,0.7199077277970012], + [0.84879661668589,0.45101114955786237,0.7170780469050365], + [0.8515032679738562,0.4452287581699347,0.7142483660130718], + [0.8542099192618223,0.43944636678200694,0.7114186851211073], + [0.8569165705497885,0.4336639753940792,0.7085890042291426], + [0.8596232218377546,0.42788158400615156,0.7057593233371781], + [0.8623298731257208,0.42209919261822376,0.7029296424452134], + [0.8650365244136871,0.416316801230296,0.7000999615532487], + [0.8677431757016532,0.41053440984236833,0.6972702806612842], + [0.8704498269896194,0.4047520184544406,0.6944405997693195], + [0.8731564782775856,0.39896962706651284,0.6916109188773548], + [0.8750019223375625,0.3923875432525951,0.6878585159554017], + [0.8759861591695501,0.3850057670126874,0.6831833910034601], + [0.8769703960015379,0.3776239907727797,0.6785082660515186], + [0.8779546328335256,0.370242214532872,0.673833141099577], + [0.8789388696655133,0.36286043829296444,0.6691580161476356], + [0.8799231064975009,0.3554786620530565,0.6644828911956939], + [0.8809073433294886,0.3480968858131488,0.6598077662437524], + [0.8818915801614764,0.340715109573241,0.6551326412918108], + [0.8828758169934641,0.3333333333333333,0.6504575163398693], + [0.8838600538254517,0.3259515570934256,0.6457823913879277], + [0.8848442906574394,0.31856978085351784,0.6411072664359861], + [0.8858285274894272,0.3111880046136101,0.6364321414840446], + [0.8868127643214149,0.3038062283737024,0.631757016532103], + [0.8877970011534025,0.2964244521337947,0.6270818915801615], + [0.8887812379853902,0.289042675893887,0.6224067666282199], + [0.8897654748173779,0.2816608996539792,0.6177316416762784], + [0.8907497116493657,0.2742791234140715,0.6130565167243368], + [0.8917339484813533,0.2668973471741638,0.6083813917723953], + [0.892718185313341,0.25951557093425603,0.6037062668204536], + [0.8937024221453287,0.2521337946943483,0.5990311418685121], + [0.8946866589773164,0.2447520184544408,0.5943560169165707], + [0.8956708958093041,0.23737024221453287,0.5896808919646289], + [0.8966551326412918,0.22998846597462513,0.5850057670126874], + [0.8976393694732795,0.22260668973471742,0.5803306420607458], + [0.8986236063052672,0.21522491349480968,0.5756555171088042], + [0.899607843137255,0.20784313725490194,0.5709803921568627], + [0.9005920799692426,0.20046136101499423,0.5663052672049211], + [0.9015763168012303,0.1930795847750865,0.5616301422529796], + [0.902560553633218,0.18569780853517878,0.556955017301038], + [0.9035447904652056,0.17831603229527104,0.5522798923490965], + [0.9045290272971934,0.17093425605536333,0.5476047673971549], + [0.9055132641291811,0.1635524798154556,0.5429296424452134], + [0.9039600153787005,0.1590157631680123,0.5371780084582852], + [0.9008842752787389,0.1561860822760477,0.5307804690503652], + [0.8978085351787773,0.15335640138408305,0.5243829296424452], + [0.8947327950788159,0.15052672049211843,0.5179853902345252], + [0.8916570549788544,0.14769703960015387,0.5115878508266053], + [0.8885813148788927,0.14486735870818918,0.5051903114186851], + [0.8855055747789312,0.14203767781622453,0.49879277201076505], + [0.8824298346789696,0.13920799692425992,0.492395232602845], + [0.879354094579008,0.13637831603229528,0.48599769319492503], + [0.8762783544790466,0.13354863514033066,0.479600153787005], + [0.873202614379085,0.13071895424836602,0.47320261437908495], + [0.8701268742791234,0.12788927335640138,0.4668050749711649], + [0.8670511341791619,0.12505959246443676,0.4604075355632449], + [0.8639753940792003,0.12222991157247214,0.4540099961553249], + [0.8608996539792387,0.11940023068050751,0.44761245674740485], + [0.8578239138792773,0.11657054978854287,0.4412149173394848], + [0.8547481737793157,0.11374086889657825,0.4348173779315648], + [0.8516724336793541,0.11091118800461361,0.42841983852364474], + [0.8485966935793925,0.10808150711264898,0.4220222991157247], + [0.845520953479431,0.10525182622068435,0.41562475970780466], + [0.8424452133794695,0.1024221453287198,0.40922722029988484], + [0.8393694732795078,0.0995924644367551,0.40282968089196464], + [0.8362937331795464,0.09676278354479047,0.3964321414840446], + [0.8332179930795848,0.09393310265282584,0.39003460207612456], + [0.8301422529796232,0.09110342176086121,0.3836370626682045], + [0.8270665128796617,0.08827374086889658,0.37723952326028454], + [0.8239907727797001,0.08544405997693194,0.37084198385236444], + [0.8209150326797385,0.08261437908496731,0.36444444444444446], + [0.817839292579777,0.07978469819300268,0.3580469050365244], + [0.8147635524798155,0.07695501730103806,0.3516493656286044], + [0.8116878123798539,0.07412533640907343,0.3452518262206844], + [0.8086120722798924,0.0712956555171088,0.3388542868127643], + [0.8028604382929643,0.0689273356401384,0.33550173010380624], + [0.7962168396770473,0.06671280276816609,0.33316416762783546], + [0.7895732410611304,0.06449826989619377,0.3308266051518647], + [0.7829296424452133,0.06228373702422145,0.3284890426758939], + [0.7762860438292967,0.0600692041522492,0.3261514801999232], + [0.7696424452133794,0.05785467128027681,0.32381391772395235], + [0.7629988465974625,0.0556401384083045,0.32147635524798157], + [0.7563552479815455,0.05342560553633218,0.3191387927720108], + [0.7497116493656286,0.051211072664359855,0.31680123029604], + [0.7430680507497116,0.048996539792387536,0.31446366782006924], + [0.7364244521337947,0.046782006920415224,0.31212610534409846], + [0.7297808535178778,0.044567474048442905,0.3097885428681277], + [0.7231372549019608,0.042352941176470586,0.3074509803921569], + [0.7164936562860438,0.04013840830449827,0.30511341791618607], + [0.7098500576701269,0.03792387543252595,0.30277585544021535], + [0.70320645905421,0.03570934256055363,0.3004382929642445], + [0.696562860438293,0.03349480968858131,0.29810073048827374], + [0.689919261822376,0.03128027681660899,0.29576316801230296], + [0.683275663206459,0.02906574394463668,0.2934256055363322], + [0.6766320645905421,0.02685121107266436,0.2910880430603614], + [0.6699884659746254,0.024636678200692104,0.2887504805843907], + [0.6633448673587081,0.022422145328719723,0.28641291810841984], + [0.6567012687427912,0.020207612456747404,0.28407535563244907], + [0.6500576701268743,0.017993079584775085,0.2817377931564783], + [0.6434140715109573,0.015778546712802766,0.2794002306805075], + [0.6367704728950403,0.013564013840830447,0.27706266820453673], + [0.6301268742791234,0.011349480968858128,0.27472510572856595], + [0.6234832756632065,0.009134948096885809,0.2723875432525952], + [0.6168396770472895,0.00692041522491349,0.2700499807766244], + [0.6101960784313726,0.004705882352941171,0.2677124183006536], + [0.6035524798154556,0.002491349480968852,0.26537485582468284], + [0.5969088811995387,0.00027681660899653293,0.26303729334871206], + [0.590803537101115,0.0,0.2588696655132641], + [0.5847750865051903,0.0,0.2544405997693195], + [0.5787466359092657,0.0,0.25001153402537485], + [0.5727181853133411,0.0,0.24558246828143024], + [0.5666897347174166,0.0,0.2411534025374857], + [0.5606612841214917,0.0,0.23672433679354096], + [0.554632833525567,0.0,0.23229527104959632], + [0.5486043829296424,0.0,0.2278662053056517], + [0.5425759323337178,0.0,0.22343713956170705], + [0.5365474817377931,0.0,0.2190080738177624], + [0.5305190311418685,0.0,0.21457900807381777], + [0.5244905805459439,0.0,0.21014994232987314], + [0.5184621299500192,0.0,0.2057208765859285], + [0.5124336793540946,0.0,0.20129181084198386], + [0.50640522875817,0.0,0.19686274509803922], + [0.5003767781622452,0.0,0.19243367935409458], + [0.49434832756632063,0.0,0.18800461361014997], + [0.488319876970396,0.0,0.18357554786620534], + [0.48229142637447137,0.0,0.1791464821222607], + [0.4762629757785467,0.0,0.17471741637831606], + [0.4702345251826222,0.0,0.17028835063437153], + [0.46420607458669744,0.0,0.16585928489042678], + [0.4581776239907728,0.0,0.16143021914648215], + [0.45214917339484817,0.0,0.1570011534025375], + [0.4461207227989235,0.0,0.15257208765859287], + [0.44009227220299885,0.0,0.14814302191464823], + [0.43406382160707424,0.0,0.1437139561707036], + [0.4280353710111495,0.0,0.13928489042675896], + [0.4220069204152249,0.0,0.13485582468281432], + [0.4159784698193003,0.0,0.13042675893886968], + [0.4099500192233756,0.0,0.12599769319492504], + [0.403921568627451,0.0,0.12156862745098039] ], + PuRd_r: [ + [0.403921568627451,0.0,0.12156862745098039], + [0.40995001922337565,0.0,0.12599769319492501], + [0.41597846981930026,0.0,0.13042675893886965], + [0.4220069204152249,0.0,0.1348558246828143], + [0.4280353710111496,0.0,0.13928489042675893], + [0.4340638216070742,0.0,0.14371395617070357], + [0.44009227220299885,0.0,0.1481430219146482], + [0.4461207227989235,0.0,0.15257208765859284], + [0.45214917339484817,0.0,0.15700115340253748], + [0.4581776239907728,0.0,0.16143021914648212], + [0.46420607458669744,0.0,0.16585928489042676], + [0.4702345251826221,0.0,0.1702883506343714], + [0.4762629757785467,0.0,0.17471741637831603], + [0.48229142637447137,0.0,0.17914648212226067], + [0.488319876970396,0.0,0.1835755478662053], + [0.49434832756632063,0.0,0.18800461361014995], + [0.5003767781622452,0.0,0.19243367935409456], + [0.50640522875817,0.0,0.1968627450980392], + [0.5124336793540946,0.0,0.20129181084198383], + [0.5184621299500192,0.0,0.20572087658592847], + [0.5244905805459439,0.0,0.2101499423298731], + [0.5305190311418685,0.0,0.21457900807381775], + [0.5365474817377931,0.0,0.21900807381776238], + [0.5425759323337178,0.0,0.22343713956170702], + [0.5486043829296424,0.0,0.22786620530565166], + [0.554632833525567,0.0,0.2322952710495963], + [0.5606612841214917,0.0,0.23672433679354093], + [0.5666897347174163,0.0,0.24115340253748557], + [0.572718185313341,0.0,0.2455824682814302], + [0.5787466359092657,0.0,0.25001153402537485], + [0.5847750865051903,0.0,0.2544405997693195], + [0.5908035371011149,0.0,0.2588696655132641], + [0.5969088811995387,0.00027681660899653976,0.26303729334871206], + [0.6035524798154556,0.0024913494809688424,0.2653748558246828], + [0.6101960784313726,0.004705882352941176,0.2677124183006536], + [0.6168396770472895,0.006920415224913495,0.2700499807766244], + [0.6234832756632065,0.009134948096885814,0.2723875432525952], + [0.6301268742791234,0.011349480968858117,0.27472510572856595], + [0.6367704728950404,0.01356401384083045,0.27706266820453673], + [0.6434140715109573,0.01577854671280277,0.2794002306805075], + [0.6500576701268743,0.017993079584775085,0.2817377931564783], + [0.6567012687427912,0.020207612456747386,0.28407535563244907], + [0.6633448673587081,0.022422145328719723,0.28641291810841984], + [0.6699884659746251,0.02463667820069204,0.2887504805843906], + [0.6766320645905421,0.026851211072664357,0.2910880430603614], + [0.683275663206459,0.029065743944636662,0.2934256055363322], + [0.689919261822376,0.03128027681660899,0.29576316801230296], + [0.696562860438293,0.03349480968858131,0.29810073048827374], + [0.70320645905421,0.03570934256055363,0.3004382929642445], + [0.7098500576701268,0.037923875432525934,0.3027758554402153], + [0.7164936562860438,0.04013840830449827,0.30511341791618607], + [0.7231372549019608,0.042352941176470586,0.3074509803921569], + [0.7297808535178778,0.044567474048442905,0.3097885428681277], + [0.7364244521337946,0.04678200692041521,0.3121261053440984], + [0.7430680507497116,0.04899653979238754,0.31446366782006924], + [0.7497116493656286,0.05121107266435986,0.31680123029604], + [0.7563552479815456,0.053425605536332174,0.3191387927720108], + [0.7629988465974624,0.05564013840830448,0.32147635524798157], + [0.7696424452133794,0.05785467128027681,0.32381391772395235], + [0.7762860438292964,0.06006920415224913,0.3261514801999231], + [0.7829296424452133,0.06228373702422145,0.3284890426758939], + [0.7895732410611302,0.06449826989619376,0.3308266051518647], + [0.7962168396770473,0.06671280276816609,0.33316416762783546], + [0.8028604382929643,0.0689273356401384,0.33550173010380624], + [0.8086120722798924,0.0712956555171088,0.33885428681276436], + [0.8116878123798539,0.07412533640907343,0.3452518262206844], + [0.8147635524798155,0.07695501730103803,0.3516493656286043], + [0.817839292579777,0.07978469819300268,0.3580469050365244], + [0.8209150326797385,0.08261437908496733,0.36444444444444446], + [0.8239907727797001,0.08544405997693195,0.3708419838523645], + [0.8270665128796617,0.08827374086889658,0.37723952326028454], + [0.8301422529796232,0.09110342176086121,0.3836370626682045], + [0.8332179930795848,0.09393310265282584,0.39003460207612456], + [0.8362937331795464,0.09676278354479047,0.3964321414840446], + [0.8393694732795078,0.09959246443675505,0.4028296808919646], + [0.8424452133794694,0.10242214532871974,0.4092272202998847], + [0.845520953479431,0.10525182622068435,0.4156247597078047], + [0.8485966935793926,0.108081507112649,0.42202229911572475], + [0.8516724336793541,0.11091118800461361,0.42841983852364474], + [0.8547481737793157,0.11374086889657825,0.4348173779315648], + [0.8578239138792773,0.11657054978854287,0.4412149173394848], + [0.8608996539792387,0.11940023068050751,0.4476124567474048], + [0.8639753940792003,0.1222299115724721,0.4540099961553248], + [0.8670511341791619,0.12505959246443676,0.4604075355632449], + [0.8701268742791234,0.12788927335640138,0.4668050749711649], + [0.873202614379085,0.13071895424836602,0.47320261437908495], + [0.8762783544790466,0.13354863514033066,0.47960015378700493], + [0.879354094579008,0.13637831603229528,0.48599769319492503], + [0.8824298346789696,0.1392079969242599,0.492395232602845], + [0.8855055747789312,0.14203767781622453,0.49879277201076505], + [0.8885813148788927,0.14486735870818912,0.505190311418685], + [0.8916570549788543,0.1476970396001538,0.5115878508266052], + [0.8947327950788159,0.1505267204921184,0.5179853902345252], + [0.8978085351787773,0.15335640138408305,0.5243829296424452], + [0.9008842752787389,0.1561860822760477,0.5307804690503652], + [0.9039600153787005,0.1590157631680123,0.5371780084582852], + [0.9055132641291811,0.1635524798154556,0.5429296424452134], + [0.9045290272971934,0.17093425605536333,0.5476047673971549], + [0.9035447904652057,0.17831603229527096,0.5522798923490964], + [0.902560553633218,0.18569780853517878,0.556955017301038], + [0.9015763168012303,0.19307958477508652,0.5616301422529796], + [0.9005920799692426,0.20046136101499423,0.5663052672049211], + [0.899607843137255,0.20784313725490197,0.5709803921568627], + [0.8986236063052672,0.2152249134948097,0.5756555171088042], + [0.8976393694732795,0.22260668973471742,0.5803306420607458], + [0.8966551326412918,0.22998846597462513,0.5850057670126874], + [0.8956708958093041,0.2373702422145328,0.5896808919646289], + [0.8946866589773164,0.2447520184544406,0.5943560169165705], + [0.8937024221453287,0.2521337946943483,0.5990311418685121], + [0.892718185313341,0.25951557093425603,0.6037062668204537], + [0.8917339484813533,0.2668973471741638,0.6083813917723953], + [0.8907497116493657,0.2742791234140715,0.6130565167243368], + [0.8897654748173779,0.2816608996539792,0.6177316416762784], + [0.8887812379853902,0.289042675893887,0.6224067666282199], + [0.8877970011534025,0.29642445213379454,0.6270818915801614], + [0.8868127643214149,0.3038062283737024,0.631757016532103], + [0.8858285274894272,0.3111880046136101,0.6364321414840446], + [0.8848442906574394,0.31856978085351784,0.6411072664359861], + [0.8838600538254517,0.3259515570934256,0.6457823913879277], + [0.8828758169934641,0.3333333333333333,0.6504575163398693], + [0.8818915801614764,0.340715109573241,0.6551326412918108], + [0.8809073433294886,0.3480968858131488,0.6598077662437524], + [0.8799231064975009,0.3554786620530564,0.6644828911956939], + [0.8789388696655133,0.3628604382929642,0.6691580161476355], + [0.8779546328335256,0.370242214532872,0.673833141099577], + [0.8769703960015379,0.37762399077277964,0.6785082660515186], + [0.8759861591695501,0.3850057670126874,0.6831833910034601], + [0.8750019223375625,0.3923875432525951,0.6878585159554018], + [0.8731564782775856,0.39896962706651284,0.6916109188773548], + [0.8704498269896194,0.4047520184544406,0.6944405997693195], + [0.8677431757016532,0.41053440984236833,0.6972702806612842], + [0.8650365244136871,0.416316801230296,0.7000999615532487], + [0.862329873125721,0.4220991926182236,0.7029296424452133], + [0.8596232218377547,0.42788158400615145,0.705759323337178], + [0.8569165705497885,0.4336639753940792,0.7085890042291426], + [0.8542099192618223,0.43944636678200694,0.7114186851211073], + [0.8515032679738562,0.4452287581699346,0.7142483660130718], + [0.84879661668589,0.45101114955786237,0.7170780469050365], + [0.8460899653979239,0.45679354094579006,0.7199077277970012], + [0.8433833141099577,0.4625759323337178,0.7227374086889657], + [0.8406766628219915,0.46835832372164554,0.7255670895809304], + [0.8379700115340254,0.47414071510957323,0.7283967704728951], + [0.8352633602460592,0.479923106497501,0.7312264513648596], + [0.832556708958093,0.4857054978854287,0.7340561322568243], + [0.8298500576701269,0.4914878892733564,0.736885813148789], + [0.8271434063821607,0.49727028066128415,0.7397154940407535], + [0.8244367550941946,0.5030526720492119,0.7425451749327182], + [0.8217301038062284,0.5088350634371396,0.7453748558246828], + [0.8190234525182623,0.5146174548250672,0.7482045367166473], + [0.816316801230296,0.5203998462129951,0.7510342176086121], + [0.8136101499423298,0.5261822376009228,0.7538638985005767], + [0.8109034986543637,0.5319646289888504,0.7566935793925413], + [0.8081968473663975,0.5377470203767782,0.759523260284506], + [0.8054901960784313,0.5435294117647059,0.7623529411764706], + [0.8027835447904652,0.5493118031526336,0.7651826220684352], + [0.800076893502499,0.5550941945405614,0.7680123029603998], + [0.7973702422145328,0.5608765859284891,0.7708419838523645], + [0.7946635909265667,0.5666589773164168,0.7736716647443291], + [0.7919569396386005,0.5724413687043446,0.7765013456362937], + [0.7892502883506344,0.5782237600922723,0.7793310265282584], + [0.7890811226451364,0.5832372164552095,0.7818531334102269], + [0.7904344482891196,0.5877893118031526,0.7841906958861976], + [0.7917877739331026,0.5923414071510957,0.7865282583621684], + [0.7931410995770857,0.5968935024990388,0.7888658208381392], + [0.7944944252210687,0.6014455978469818,0.7912033833141099], + [0.7958477508650519,0.605997693194925,0.7935409457900807], + [0.7972010765090349,0.6105497885428681,0.7958785082660516], + [0.7985544021530181,0.6151018838908112,0.7982160707420223], + [0.7999077277970011,0.6196539792387543,0.8005536332179931], + [0.8012610534409842,0.6242060745866974,0.8028911956939638], + [0.8026143790849674,0.6287581699346405,0.8052287581699347], + [0.8039677047289504,0.6333102652825836,0.8075663206459054], + [0.8053210303729335,0.6378623606305267,0.8099038831218762], + [0.8066743560169166,0.6424144559784698,0.812241445597847], + [0.8080276816608997,0.6469665513264129,0.8145790080738178], + [0.8093810073048827,0.651518646674356,0.8169165705497885], + [0.8107343329488659,0.6560707420222991,0.8192541330257593], + [0.8120876585928489,0.6606228373702422,0.8215916955017301], + [0.813440984236832,0.6651749327181853,0.8239292579777009], + [0.8147943098808151,0.6697270280661284,0.8262668204536716], + [0.8161476355247982,0.6742791234140714,0.8286043829296423], + [0.8175009611687812,0.6788312187620146,0.8309419454056132], + [0.8188542868127644,0.6833833141099577,0.833279507881584], + [0.8202076124567474,0.6879354094579008,0.8356170703575547], + [0.8215609381007305,0.6924875048058439,0.8379546328335256], + [0.8229142637447135,0.697039600153787,0.8402921953094963], + [0.8242675893886967,0.7015916955017301,0.8426297577854671], + [0.8256209150326798,0.7061437908496732,0.8449673202614378], + [0.8269742406766628,0.7106958861976163,0.8473048827374087], + [0.828327566320646,0.7152479815455594,0.8496424452133794], + [0.829680891964629,0.7198000768935024,0.8519800076893502], + [0.8310342176086121,0.7243521722414455,0.854317570165321], + [0.833125720876586,0.7291810841983852,0.8568396770472895], + [0.8354632833525567,0.7341022683583237,0.8594232987312572], + [0.8378008458285275,0.7390234525182622,0.8620069204152249], + [0.8401384083044983,0.7439446366782007,0.8645905420991926], + [0.842475970780469,0.748865820838139,0.8671741637831603], + [0.8448135332564398,0.7537870049980776,0.869757785467128], + [0.8471510957324107,0.7587081891580161,0.8723414071510956], + [0.8494886582083814,0.7636293733179547,0.8749250288350634], + [0.8518262206843522,0.7685505574778931,0.8775086505190312], + [0.854163783160323,0.7734717416378316,0.8800922722029988], + [0.8565013456362938,0.7783929257977701,0.8826758938869665], + [0.8588389081122645,0.7833141099577086,0.8852595155709342], + [0.8611764705882353,0.788235294117647,0.8878431372549019], + [0.8635140330642062,0.7931564782775855,0.8904267589388697], + [0.8658515955401769,0.798077662437524,0.8930103806228373], + [0.8681891580161477,0.8029988465974625,0.8955940023068051], + [0.8705267204921184,0.8079200307574009,0.8981776239907727], + [0.8728642829680893,0.8128412149173394,0.9007612456747405], + [0.87520184544406,0.817762399077278,0.9033448673587082], + [0.8775394079200308,0.8226835832372165,0.9059284890426759], + [0.8798769703960014,0.8276047673971547,0.9085121107266435], + [0.8822145328719724,0.8325259515570934,0.9110957324106113], + [0.8845520953479431,0.8374471357170319,0.913679354094579], + [0.8868896578239139,0.8423683198769704,0.9162629757785468], + [0.8892272202998847,0.8472895040369088,0.9188465974625144], + [0.8915647827758555,0.8522106881968473,0.9214302191464822], + [0.8939023452518262,0.8571318723567858,0.9240138408304498], + [0.896239907727797,0.8620530565167244,0.9265974625144175], + [0.8985774702037678,0.8669742406766627,0.9291810841983852], + [0.9009150326797386,0.8718954248366013,0.9317647058823529], + [0.9032525951557093,0.8768166089965398,0.9343483275663207], + [0.9055901576316802,0.8817377931564783,0.9369319492502883], + [0.9076047673971549,0.884398308342945,0.9383314109957709], + [0.9095732410611304,0.8867358708189158,0.9395617070357555], + [0.9115417147251057,0.8890734332948865,0.9407920030757401], + [0.9135101883890812,0.8914109957708574,0.9420222991157248], + [0.9154786620530565,0.8937485582468281,0.9432525951557093], + [0.917447135717032,0.8960861207227989,0.944482891195694], + [0.9194156093810073,0.8984236831987696,0.9457131872356785], + [0.9213840830449826,0.9007612456747405,0.9469434832756632], + [0.9233525567089581,0.9030988081507113,0.9481737793156478], + [0.9253210303729335,0.905436370626682,0.9494040753556324], + [0.9272895040369089,0.9077739331026529,0.950634371395617], + [0.9292579777008843,0.9101114955786236,0.9518646674356017], + [0.9312264513648597,0.9124490580545944,0.9530949634755863], + [0.933194925028835,0.9147866205305651,0.9543252595155709], + [0.9351633986928105,0.917124183006536,0.9555555555555555], + [0.9371318723567859,0.9194617454825067,0.9567858515955402], + [0.9391003460207612,0.9217993079584775,0.9580161476355248], + [0.9410688196847367,0.9241368704344483,0.9592464436755094], + [0.943037293348712,0.9264744329104191,0.9604767397154941], + [0.9450057670126875,0.9288119953863898,0.9617070357554787], + [0.9469742406766628,0.9311495578623605,0.9629373317954633], + [0.9489427143406383,0.9334871203383315,0.9641676278354478], + [0.9509111880046136,0.9358246828143022,0.9653979238754326], + [0.9528796616685891,0.938162245290273,0.9666282199154171], + [0.9548481353325644,0.9404998077662438,0.9678585159554017], + [0.9568166089965398,0.9428373702422146,0.9690888119953863], + [0.9587850826605152,0.9451749327181853,0.970319108035371], + [0.9607535563244906,0.9475124951941561,0.9715494040753556], + [0.962722029988466,0.9498500576701269,0.9727797001153402], + [0.9646905036524414,0.9521876201460977,0.9740099961553248], + [0.9666589773164168,0.9545251826220684,0.9752402921953095], + [0.9686274509803922,0.9568627450980393,0.9764705882352941] ], + Purples: [ + [0.9882352941176471,0.984313725490196,0.9921568627450981], + [0.9866359092656671,0.9825913110342176,0.9911726259131104], + [0.985036524413687,0.9808688965782391,0.9901883890811227], + [0.9834371395617071,0.9791464821222606,0.9892041522491349], + [0.9818377547097271,0.9774240676662822,0.9882199154171473], + [0.980238369857747,0.9757016532103037,0.9872356785851596], + [0.9786389850057671,0.9739792387543252,0.9862514417531719], + [0.977039600153787,0.9722568242983467,0.9852672049211841], + [0.975440215301807,0.9705344098423683,0.9842829680891965], + [0.973840830449827,0.9688119953863898,0.9832987312572088], + [0.972241445597847,0.9670895809304113,0.9823144944252211], + [0.970642060745867,0.9653671664744329,0.9813302575932334], + [0.969042675893887,0.9636447520184545,0.9803460207612457], + [0.967443291041907,0.9619223375624759,0.979361783929258], + [0.965843906189927,0.9601999231064975,0.9783775470972703], + [0.9642445213379469,0.9584775086505191,0.9773933102652826], + [0.962645136485967,0.9567550941945405,0.9764090734332949], + [0.961045751633987,0.9550326797385621,0.9754248366013072], + [0.9594463667820069,0.9533102652825836,0.9744405997693195], + [0.9578469819300269,0.9515878508266051,0.9734563629373318], + [0.956247597078047,0.9498654363706267,0.9724721261053442], + [0.9546482122260669,0.9481430219146482,0.9714878892733564], + [0.9530488273740869,0.9464206074586697,0.9705036524413687], + [0.951449442522107,0.9446981930026913,0.969519415609381], + [0.9498500576701269,0.9429757785467128,0.9685351787773934], + [0.9482506728181469,0.9412533640907343,0.9675509419454056], + [0.9466512879661668,0.9395309496347559,0.9665667051134179], + [0.9450519031141869,0.9378085351787774,0.9655824682814302], + [0.9434525182622069,0.936086120722799,0.9645982314494426], + [0.9418531334102268,0.9343637062668205,0.9636139946174549], + [0.9402537485582468,0.932641291810842,0.9626297577854671], + [0.9386543637062669,0.9309188773548636,0.9616455209534794], + [0.9369319492502883,0.9291195693963861,0.9606305267204921], + [0.9343483275663207,0.9267820069204152,0.9594002306805075], + [0.9317647058823529,0.9244444444444445,0.9581699346405229], + [0.9291810841983852,0.9221068819684737,0.9569396386005383], + [0.9265974625144175,0.919769319492503,0.9557093425605536], + [0.9240138408304498,0.9174317570165321,0.954479046520569], + [0.9214302191464822,0.9150941945405613,0.9532487504805844], + [0.9188465974625144,0.9127566320645906,0.9520184544405997], + [0.9162629757785467,0.9104190695886197,0.9507881584006151], + [0.913679354094579,0.908081507112649,0.9495578623606306], + [0.9110957324106113,0.9057439446366782,0.9483275663206459], + [0.9085121107266436,0.9034063821607075,0.9470972702806613], + [0.9059284890426759,0.9010688196847366,0.9458669742406767], + [0.9033448673587082,0.8987312572087659,0.9446366782006921], + [0.9007612456747405,0.8963936947327951,0.9434063821607074], + [0.8981776239907727,0.8940561322568243,0.9421760861207228], + [0.8955940023068051,0.8917185697808535,0.9409457900807382], + [0.8930103806228373,0.8893810073048828,0.9397154940407535], + [0.8904267589388697,0.887043444828912,0.9384851980007689], + [0.8878431372549019,0.8847058823529411,0.9372549019607843], + [0.8852595155709342,0.8823683198769704,0.9360246059207997], + [0.8826758938869665,0.8800307574009996,0.934794309880815], + [0.8800922722029988,0.8776931949250288,0.9335640138408304], + [0.8775086505190312,0.875355632449058,0.9323337178008458], + [0.8749250288350634,0.8730180699730873,0.9311034217608611], + [0.8723414071510958,0.8706805074971165,0.9298731257208765], + [0.869757785467128,0.8683429450211457,0.928642829680892], + [0.8671741637831603,0.8660053825451749,0.9274125336409073], + [0.8645905420991926,0.8636678200692041,0.9261822376009227], + [0.8620069204152249,0.8613302575932333,0.9249519415609381], + [0.8594232987312571,0.8589926951172626,0.9237216455209534], + [0.8568396770472895,0.8566551326412918,0.9224913494809688], + [0.8539792387543252,0.8540099961553248,0.9211072664359861], + [0.8502883506343714,0.8504421376393695,0.9192618223760092], + [0.8465974625144176,0.8468742791234141,0.9174163783160323], + [0.8429065743944636,0.8433064206074586,0.9155709342560553], + [0.8392156862745098,0.8397385620915032,0.9137254901960784], + [0.8355247981545559,0.8361707035755478,0.9118800461361014], + [0.831833910034602,0.8326028450595925,0.9100346020761245], + [0.8281430219146482,0.829034986543637,0.9081891580161476], + [0.8244521337946943,0.8254671280276816,0.9063437139561706], + [0.8207612456747405,0.8218992695117262,0.9044982698961938], + [0.8170703575547866,0.8183314109957709,0.9026528258362169], + [0.8133794694348327,0.8147635524798155,0.9008073817762399], + [0.8096885813148789,0.81119569396386,0.898961937716263], + [0.805997693194925,0.8076278354479046,0.897116493656286], + [0.8023068050749712,0.8040599769319492,0.8952710495963091], + [0.7986159169550173,0.8004921184159939,0.8934256055363322], + [0.7949250288350634,0.7969242599000385,0.8915801614763552], + [0.7912341407151096,0.793356401384083,0.8897347174163783], + [0.7875432525951558,0.7897885428681277,0.8878892733564014], + [0.7838523644752019,0.7862206843521723,0.8860438292964244], + [0.780161476355248,0.7826528258362169,0.8841983852364476], + [0.7764705882352941,0.7790849673202614,0.8823529411764706], + [0.7727797001153403,0.775517108804306,0.8805074971164937], + [0.7690888119953865,0.7719492502883507,0.8786620530565168], + [0.7653979238754326,0.7683813917723953,0.8768166089965398], + [0.7617070357554787,0.7648135332564399,0.8749711649365629], + [0.7580161476355249,0.7612456747404845,0.873125720876586], + [0.754325259515571,0.757677816224529,0.871280276816609], + [0.7506343713956172,0.7541099577085737,0.8694348327566321], + [0.7469434832756633,0.7505420991926183,0.8675893886966551], + [0.7432525951557094,0.7469742406766628,0.8657439446366783], + [0.7395617070357555,0.7434063821607074,0.8638985005767013], + [0.7358708189158016,0.7395617070357555,0.8618223760092273], + [0.7321799307958478,0.7352556708958093,0.859361783929258], + [0.728489042675894,0.7309496347558632,0.8569011918492888], + [0.7247981545559401,0.726643598615917,0.8544405997693195], + [0.7211072664359862,0.7223375624759708,0.8519800076893503], + [0.7174163783160323,0.7180315263360246,0.849519415609381], + [0.7137254901960784,0.7137254901960784,0.8470588235294118], + [0.7100346020761246,0.7094194540561323,0.8445982314494426], + [0.7063437139561708,0.7051134179161861,0.8421376393694733], + [0.7026528258362169,0.7008073817762399,0.8396770472895041], + [0.698961937716263,0.6965013456362938,0.8372164552095348], + [0.6952710495963091,0.6921953094963476,0.8347558631295656], + [0.6915801614763553,0.6878892733564014,0.8322952710495963], + [0.6878892733564014,0.6835832372164552,0.829834678969627], + [0.6841983852364476,0.679277201076509,0.8273740868896579], + [0.6805074971164937,0.6749711649365628,0.8249134948096886], + [0.6768166089965398,0.6706651287966167,0.8224529027297194], + [0.673125720876586,0.6663590926566705,0.8199923106497501], + [0.6694348327566322,0.6620530565167244,0.8175317185697809], + [0.6657439446366782,0.6577470203767781,0.8150711264898116], + [0.6620530565167244,0.653440984236832,0.8126105344098424], + [0.6583621683967705,0.6491349480968858,0.8101499423298731], + [0.6546712802768166,0.6448289119569396,0.8076893502499038], + [0.6509803921568628,0.6405228758169934,0.8052287581699347], + [0.6472895040369089,0.6362168396770472,0.8027681660899654], + [0.6435986159169551,0.631910803537101,0.8003075740099962], + [0.6399077277970012,0.627604767397155,0.7978469819300269], + [0.6362168396770473,0.6232987312572087,0.7953863898500577], + [0.6325259515570935,0.6189926951172626,0.7929257977700884], + [0.6288350634371396,0.6146866589773163,0.7904652056901191], + [0.6251441753171857,0.6103806228373703,0.78800461361015], + [0.6214532871972318,0.606074586697424,0.7855440215301807], + [0.617762399077278,0.6021376393694733,0.7834525182622069], + [0.6140715109573242,0.5985697808535179,0.7817301038062283], + [0.6103806228373703,0.5950019223375624,0.7800076893502499], + [0.6066897347174164,0.591434063821607,0.7782852748942715], + [0.6029988465974626,0.5878662053056517,0.776562860438293], + [0.5993079584775086,0.5842983467896963,0.7748404459823145], + [0.5956170703575548,0.5807304882737409,0.773118031526336], + [0.591926182237601,0.5771626297577854,0.7713956170703575], + [0.5882352941176471,0.57359477124183,0.7696732026143791], + [0.5845444059976932,0.5700269127258746,0.7679507881584006], + [0.5808535178777393,0.5664590542099193,0.7662283737024221], + [0.5771626297577854,0.5628911956939638,0.7645059592464436], + [0.5734717416378317,0.5593233371780084,0.7627835447904652], + [0.5697808535178778,0.555755478662053,0.7610611303344867], + [0.5660899653979239,0.5521876201460976,0.7593387158785082], + [0.56239907727797,0.5486197616301423,0.7576163014225298], + [0.5587081891580161,0.5450519031141868,0.7558938869665512], + [0.5550173010380622,0.5414840445982314,0.7541714725105728], + [0.5513264129181085,0.537916186082276,0.7524490580545944], + [0.5476355247981546,0.5343483275663206,0.7507266435986159], + [0.5439446366782008,0.5307804690503654,0.7490042291426374], + [0.5402537485582468,0.5272126105344098,0.747281814686659], + [0.5365628604382929,0.5236447520184544,0.7455594002306805], + [0.532871972318339,0.520076893502499,0.743836985774702], + [0.5291810841983853,0.5165090349865435,0.7421145713187235], + [0.5254901960784314,0.5129411764705882,0.7403921568627451], + [0.5217993079584775,0.5093733179546328,0.7386697424067666], + [0.5181084198385236,0.5058054594386774,0.7369473279507881], + [0.5144175317185697,0.502237600922722,0.7352249134948097], + [0.5107266435986159,0.4986697424067666,0.7335024990388311], + [0.5070357554786621,0.4951018838908112,0.7317800845828527], + [0.5033448673587082,0.4915340253748558,0.7300576701268743], + [0.5002691272587466,0.4868127643214148,0.7276432141484044], + [0.49756247597078046,0.4813994617454825,0.7248135332564398], + [0.4948558246828143,0.47598615916955017,0.7219838523644752], + [0.49214917339484815,0.4705728565936178,0.7191541714725105], + [0.48944252210688205,0.46515955401768566,0.716324490580546], + [0.4867358708189158,0.45974625144175313,0.7134948096885813], + [0.48402921953094963,0.4543329488658208,0.7106651287966167], + [0.4813225682429835,0.44891964628988845,0.707835447904652], + [0.4786159169550173,0.44350634371395614,0.7050057670126874], + [0.47590926566705116,0.43809304113802383,0.7021760861207228], + [0.47320261437908495,0.43267973856209146,0.6993464052287581], + [0.4704959630911188,0.42726643598615915,0.6965167243367935], + [0.46778931180315264,0.4218531334102268,0.6936870434448289], + [0.4650826605151865,0.4164398308342945,0.6908573625528642], + [0.46237600922722033,0.41102652825836217,0.6880276816608997], + [0.4596693579392541,0.4056132256824298,0.685198000768935], + [0.45696270665128796,0.4001999231064975,0.6823683198769703], + [0.4542560553633218,0.3947866205305651,0.6795386389850058], + [0.45154940407535565,0.3893733179546328,0.6767089580930411], + [0.4488427527873895,0.3839600153787005,0.6738792772010764], + [0.4461361014994234,0.3785467128027683,0.6710495963091119], + [0.44342945021145713,0.3731334102268358,0.6682199154171472], + [0.440722798923491,0.36772010765090346,0.6653902345251825], + [0.4380161476355248,0.36230680507497115,0.662560553633218], + [0.43530949634755867,0.35689350249903884,0.6597308727412533], + [0.43260284505959246,0.3514801999231065,0.6569011918492886], + [0.4298961937716263,0.3460668973471741,0.6540715109573241], + [0.42718954248366015,0.3406535947712418,0.6512418300653594], + [0.424482891195694,0.3352402921953095,0.6484121491733947], + [0.42177623990772783,0.3298269896193772,0.6455824682814302], + [0.4190695886197616,0.3244136870434448,0.6427527873894655], + [0.41636293733179547,0.31900038446751244,0.639923106497501], + [0.4136562860438293,0.3137716262975778,0.6373702422145329], + [0.41094963475586316,0.30860438292964243,0.6349096501345636], + [0.408242983467897,0.30343713956170704,0.6324490580545944], + [0.4055363321799308,0.2982698961937716,0.6299884659746251], + [0.40282968089196475,0.29310265282583636,0.6275278738946559], + [0.4001230296039985,0.2879354094579008,0.6250672818146866], + [0.3974163783160323,0.28276816608996536,0.6226066897347173], + [0.39470972702806617,0.27760092272202996,0.6201460976547482], + [0.39200307574009996,0.27243367935409457,0.6176855055747789], + [0.3892964244521338,0.2672664359861592,0.6152249134948097], + [0.38658977316416765,0.26209919261822373,0.6127643214148404], + [0.3838831218762015,0.25693194925028834,0.6103037293348712], + [0.3811764705882353,0.25176470588235295,0.6078431372549019], + [0.37846981930026913,0.24659746251441753,0.6053825451749327], + [0.375763168012303,0.2414302191464821,0.6029219530949634], + [0.3730565167243368,0.2362629757785467,0.6004613610149943], + [0.3703498654363706,0.2310957324106113,0.598000768935025], + [0.36764321414840445,0.22592848904267587,0.5955401768550557], + [0.3649365628604383,0.22076124567474048,0.5930795847750865], + [0.36222991157247214,0.2155940023068051,0.5906189926951172], + [0.35952326028450604,0.2104267589388698,0.5881584006151481], + [0.3568166089965398,0.20525951557093425,0.5856978085351787], + [0.3541099577085736,0.20009227220299886,0.5832372164552095], + [0.35140330642060746,0.19492502883506344,0.5807766243752402], + [0.3486966551326413,0.18975778546712804,0.5783160322952711], + [0.34599000384467515,0.18459054209919262,0.5758554402153018], + [0.34328335255670894,0.1794232987312572,0.5733948481353326], + [0.3405767012687428,0.1742560553633218,0.5709342560553633], + [0.33787004998077663,0.1690888119953864,0.5684736639753941], + [0.3351633986928104,0.163921568627451,0.5660130718954248], + [0.33245674740484427,0.15875432525951558,0.5635524798154556], + [0.3297500961168781,0.15358708189158016,0.5610918877354863], + [0.32715109573241064,0.14874279123414072,0.5588465974625144], + [0.3245674740484429,0.1439446366782007,0.5566320645905422], + [0.3219838523644752,0.1391464821222607,0.5544175317185698], + [0.3194002306805075,0.13434832756632065,0.5522029988465975], + [0.31681660899653985,0.12955017301038077,0.5499884659746253], + [0.3142329873125721,0.1247520184544406,0.5477739331026529], + [0.3116493656286044,0.11995386389850059,0.5455594002306805], + [0.30906574394463665,0.11515570934256056,0.5433448673587082], + [0.30648212226066895,0.11035755478662054,0.5411303344867359], + [0.30389850057670126,0.10555940023068051,0.5389158016147636], + [0.30131487889273356,0.10076124567474048,0.5367012687427912], + [0.29873125720876587,0.09596309111880047,0.534486735870819], + [0.29614763552479817,0.09116493656286044,0.5322722029988466], + [0.2935640138408305,0.08636678200692043,0.5300576701268743], + [0.2909803921568628,0.0815686274509804,0.527843137254902], + [0.288396770472895,0.07677047289504037,0.5256286043829297], + [0.28581314878892733,0.07197231833910035,0.5234140715109573], + [0.28322952710495963,0.06717416378316032,0.5211995386389849], + [0.28064590542099194,0.06237600922722031,0.5189850057670127], + [0.27806228373702424,0.05757785467128028,0.5167704728950404], + [0.2754786620530566,0.05277970011534039,0.5145559400230681], + [0.27289504036908885,0.047981545559400235,0.5123414071510957], + [0.2703114186851211,0.043183391003460206,0.5101268742791234], + [0.2677277970011534,0.03838523644752019,0.5079123414071511], + [0.2651441753171857,0.03358708189158016,0.5056978085351788], + [0.262560553633218,0.028788927335640146,0.5034832756632064], + [0.2599769319492503,0.023990772779700104,0.5012687427912341], + [0.25739331026528256,0.01919261822376009,0.4990542099192618], + [0.2548096885813149,0.014394463667820073,0.4968396770472895], + [0.25222606689734717,0.009596309111880058,0.49462514417531717], + [0.24964244521337947,0.004798154555940015,0.49241061130334485], + [0.24705882352941178,0.0,0.49019607843137253] ], + Purples_r: [ + [0.24705882352941178,0.0,0.49019607843137253], + [0.24964244521337947,0.004798154555940023,0.49241061130334485], + [0.25222606689734717,0.009596309111880046,0.49462514417531717], + [0.25480968858131486,0.01439446366782007,0.4968396770472895], + [0.2573933102652826,0.019192618223760092,0.4990542099192618], + [0.2599769319492503,0.023990772779700117,0.5012687427912341], + [0.262560553633218,0.02878892733564014,0.5034832756632065], + [0.2651441753171857,0.03358708189158016,0.5056978085351788], + [0.2677277970011534,0.038385236447520184,0.5079123414071511], + [0.2703114186851211,0.04318339100346021,0.5101268742791234], + [0.2728950403690888,0.047981545559400235,0.5123414071510958], + [0.27547866205305654,0.05277970011534026,0.514555940023068], + [0.27806228373702424,0.05757785467128028,0.5167704728950404], + [0.28064590542099194,0.0623760092272203,0.5189850057670127], + [0.28322952710495963,0.06717416378316032,0.521199538638985], + [0.28581314878892733,0.07197231833910035,0.5234140715109573], + [0.288396770472895,0.07677047289504037,0.5256286043829297], + [0.2909803921568628,0.0815686274509804,0.527843137254902], + [0.2935640138408305,0.08636678200692043,0.5300576701268742], + [0.29614763552479817,0.09116493656286044,0.5322722029988466], + [0.29873125720876587,0.09596309111880047,0.534486735870819], + [0.30131487889273356,0.10076124567474048,0.5367012687427912], + [0.30389850057670126,0.10555940023068051,0.5389158016147636], + [0.30648212226066895,0.11035755478662054,0.5411303344867359], + [0.3090657439446367,0.11515570934256056,0.5433448673587082], + [0.31164936562860435,0.11995386389850059,0.5455594002306805], + [0.3142329873125721,0.1247520184544406,0.5477739331026529], + [0.3168166089965398,0.12955017301038063,0.5499884659746251], + [0.3194002306805075,0.13434832756632065,0.5522029988465975], + [0.3219838523644752,0.1391464821222607,0.5544175317185698], + [0.3245674740484429,0.1439446366782007,0.556632064590542], + [0.32715109573241064,0.14874279123414072,0.5588465974625144], + [0.3297500961168781,0.15358708189158018,0.5610918877354863], + [0.33245674740484427,0.15875432525951555,0.5635524798154555], + [0.3351633986928105,0.163921568627451,0.5660130718954248], + [0.33787004998077663,0.1690888119953864,0.5684736639753941], + [0.3405767012687428,0.1742560553633218,0.5709342560553633], + [0.34328335255670894,0.17942329873125717,0.5733948481353326], + [0.34599000384467515,0.18459054209919262,0.5758554402153018], + [0.3486966551326413,0.18975778546712804,0.5783160322952711], + [0.35140330642060746,0.19492502883506344,0.5807766243752402], + [0.3541099577085736,0.2000922722029988,0.5832372164552095], + [0.3568166089965398,0.20525951557093425,0.5856978085351787], + [0.359523260284506,0.21042675893886967,0.588158400615148], + [0.36222991157247214,0.2155940023068051,0.5906189926951172], + [0.3649365628604383,0.22076124567474043,0.5930795847750865], + [0.36764321414840445,0.22592848904267587,0.5955401768550557], + [0.3703498654363706,0.2310957324106113,0.598000768935025], + [0.3730565167243368,0.2362629757785467,0.6004613610149943], + [0.375763168012303,0.24143021914648208,0.6029219530949634], + [0.37846981930026913,0.24659746251441753,0.6053825451749327], + [0.3811764705882353,0.25176470588235295,0.6078431372549019], + [0.3838831218762015,0.25693194925028834,0.6103037293348712], + [0.38658977316416765,0.26209919261822373,0.6127643214148404], + [0.3892964244521338,0.2672664359861592,0.6152249134948097], + [0.39200307574009996,0.27243367935409457,0.6176855055747789], + [0.39470972702806617,0.27760092272202996,0.6201460976547482], + [0.39741637831603227,0.28276816608996536,0.6226066897347173], + [0.4001230296039985,0.2879354094579008,0.6250672818146866], + [0.40282968089196464,0.2931026528258362,0.6275278738946559], + [0.4055363321799308,0.29826989619377164,0.6299884659746251], + [0.40824298346789695,0.303437139561707,0.6324490580545943], + [0.41094963475586316,0.30860438292964243,0.6349096501345636], + [0.4136562860438293,0.3137716262975778,0.6373702422145329], + [0.41636293733179547,0.3190003844675125,0.639923106497501], + [0.4190695886197616,0.3244136870434448,0.6427527873894655], + [0.4217762399077278,0.32982698961937706,0.6455824682814302], + [0.424482891195694,0.3352402921953095,0.6484121491733948], + [0.42718954248366015,0.3406535947712418,0.6512418300653594], + [0.4298961937716263,0.34606689734717416,0.6540715109573241], + [0.43260284505959246,0.3514801999231065,0.6569011918492886], + [0.43530949634755867,0.35689350249903884,0.6597308727412533], + [0.4380161476355248,0.36230680507497115,0.662560553633218], + [0.440722798923491,0.36772010765090346,0.6653902345251825], + [0.44342945021145713,0.37313341022683577,0.6682199154171472], + [0.4461361014994233,0.37854671280276814,0.6710495963091119], + [0.4488427527873895,0.3839600153787005,0.6738792772010764], + [0.45154940407535565,0.3893733179546328,0.6767089580930411], + [0.4542560553633218,0.3947866205305651,0.6795386389850058], + [0.45696270665128796,0.4001999231064975,0.6823683198769703], + [0.4596693579392541,0.4056132256824298,0.685198000768935], + [0.46237600922722033,0.41102652825836217,0.6880276816608996], + [0.46508266051518643,0.41643983083429437,0.6908573625528642], + [0.46778931180315264,0.4218531334102268,0.6936870434448289], + [0.4704959630911188,0.42726643598615915,0.6965167243367935], + [0.47320261437908495,0.43267973856209146,0.6993464052287581], + [0.47590926566705116,0.43809304113802383,0.7021760861207228], + [0.4786159169550173,0.44350634371395614,0.7050057670126874], + [0.4813225682429835,0.44891964628988845,0.707835447904652], + [0.48402921953094963,0.4543329488658208,0.7106651287966166], + [0.4867358708189158,0.4597462514417531,0.7134948096885813], + [0.489442522106882,0.4651595540176855,0.7163244905805459], + [0.4921491733948481,0.4705728565936178,0.7191541714725105], + [0.4948558246828143,0.4759861591695501,0.7219838523644752], + [0.49756247597078046,0.4813994617454825,0.7248135332564398], + [0.5002691272587466,0.48681276432141485,0.7276432141484044], + [0.5033448673587082,0.4915340253748558,0.7300576701268743], + [0.5070357554786621,0.4951018838908112,0.7317800845828527], + [0.5107266435986159,0.49866974240676654,0.7335024990388311], + [0.5144175317185697,0.502237600922722,0.7352249134948097], + [0.5181084198385236,0.5058054594386774,0.7369473279507881], + [0.5217993079584775,0.5093733179546328,0.7386697424067666], + [0.5254901960784314,0.5129411764705882,0.7403921568627451], + [0.5291810841983853,0.5165090349865437,0.7421145713187235], + [0.532871972318339,0.520076893502499,0.743836985774702], + [0.5365628604382929,0.5236447520184544,0.7455594002306805], + [0.5402537485582468,0.5272126105344097,0.7472818146866589], + [0.5439446366782007,0.5307804690503652,0.7490042291426374], + [0.5476355247981546,0.5343483275663207,0.7507266435986159], + [0.5513264129181085,0.537916186082276,0.7524490580545944], + [0.5550173010380622,0.5414840445982314,0.7541714725105728], + [0.5587081891580161,0.5450519031141868,0.7558938869665514], + [0.56239907727797,0.5486197616301423,0.7576163014225298], + [0.5660899653979239,0.5521876201460976,0.7593387158785082], + [0.5697808535178777,0.555755478662053,0.7610611303344866], + [0.5734717416378317,0.5593233371780084,0.7627835447904652], + [0.5771626297577854,0.5628911956939638,0.7645059592464436], + [0.5808535178777393,0.5664590542099193,0.7662283737024221], + [0.5845444059976932,0.5700269127258746,0.7679507881584006], + [0.5882352941176471,0.57359477124183,0.7696732026143791], + [0.591926182237601,0.5771626297577854,0.7713956170703575], + [0.5956170703575547,0.5807304882737409,0.773118031526336], + [0.5993079584775086,0.5842983467896962,0.7748404459823145], + [0.6029988465974625,0.5878662053056516,0.7765628604382929], + [0.6066897347174164,0.591434063821607,0.7782852748942715], + [0.6103806228373703,0.5950019223375624,0.7800076893502499], + [0.6140715109573242,0.5985697808535179,0.7817301038062283], + [0.617762399077278,0.6021376393694733,0.7834525182622069], + [0.6214532871972318,0.606074586697424,0.7855440215301807], + [0.6251441753171857,0.6103806228373702,0.78800461361015], + [0.6288350634371396,0.6146866589773163,0.7904652056901191], + [0.6325259515570935,0.6189926951172625,0.7929257977700884], + [0.6362168396770472,0.6232987312572086,0.7953863898500576], + [0.6399077277970012,0.6276047673971549,0.7978469819300269], + [0.643598615916955,0.631910803537101,0.8003075740099962], + [0.6472895040369089,0.6362168396770472,0.8027681660899654], + [0.6509803921568628,0.6405228758169934,0.8052287581699347], + [0.6546712802768166,0.6448289119569396,0.8076893502499038], + [0.6583621683967705,0.6491349480968858,0.8101499423298731], + [0.6620530565167244,0.653440984236832,0.8126105344098424], + [0.6657439446366782,0.6577470203767781,0.8150711264898116], + [0.6694348327566321,0.6620530565167243,0.8175317185697809], + [0.673125720876586,0.6663590926566705,0.8199923106497501], + [0.6768166089965398,0.6706651287966167,0.8224529027297194], + [0.6805074971164937,0.6749711649365628,0.8249134948096886], + [0.6841983852364476,0.679277201076509,0.8273740868896579], + [0.6878892733564014,0.6835832372164552,0.8298346789696271], + [0.6915801614763553,0.6878892733564014,0.8322952710495963], + [0.695271049596309,0.6921953094963474,0.8347558631295655], + [0.698961937716263,0.6965013456362937,0.8372164552095348], + [0.7026528258362169,0.7008073817762399,0.8396770472895041], + [0.7063437139561708,0.7051134179161861,0.8421376393694733], + [0.7100346020761246,0.7094194540561323,0.8445982314494426], + [0.7137254901960784,0.7137254901960784,0.8470588235294118], + [0.7174163783160323,0.7180315263360246,0.849519415609381], + [0.7211072664359862,0.7223375624759708,0.8519800076893502], + [0.7247981545559401,0.726643598615917,0.8544405997693195], + [0.728489042675894,0.7309496347558632,0.8569011918492888], + [0.7321799307958478,0.7352556708958093,0.859361783929258], + [0.7358708189158016,0.7395617070357555,0.8618223760092273], + [0.7395617070357555,0.7434063821607074,0.8638985005767013], + [0.7432525951557094,0.7469742406766628,0.8657439446366783], + [0.7469434832756633,0.7505420991926183,0.8675893886966551], + [0.7506343713956171,0.7541099577085737,0.8694348327566321], + [0.7543252595155708,0.7576778162245289,0.871280276816609], + [0.7580161476355248,0.7612456747404844,0.8731257208765859], + [0.7617070357554787,0.7648135332564399,0.8749711649365629], + [0.7653979238754326,0.7683813917723953,0.8768166089965398], + [0.7690888119953864,0.7719492502883506,0.8786620530565168], + [0.7727797001153403,0.775517108804306,0.8805074971164937], + [0.7764705882352941,0.7790849673202614,0.8823529411764706], + [0.780161476355248,0.7826528258362169,0.8841983852364476], + [0.7838523644752019,0.7862206843521723,0.8860438292964244], + [0.7875432525951557,0.7897885428681276,0.8878892733564013], + [0.7912341407151096,0.793356401384083,0.8897347174163783], + [0.7949250288350634,0.7969242599000385,0.8915801614763552], + [0.7986159169550173,0.8004921184159939,0.8934256055363322], + [0.8023068050749712,0.8040599769319492,0.8952710495963091], + [0.805997693194925,0.8076278354479046,0.897116493656286], + [0.8096885813148789,0.81119569396386,0.898961937716263], + [0.8133794694348326,0.8147635524798154,0.9008073817762399], + [0.8170703575547866,0.8183314109957709,0.9026528258362169], + [0.8207612456747405,0.8218992695117262,0.9044982698961938], + [0.8244521337946943,0.8254671280276816,0.9063437139561706], + [0.8281430219146482,0.829034986543637,0.9081891580161476], + [0.831833910034602,0.8326028450595925,0.9100346020761245], + [0.8355247981545559,0.8361707035755479,0.9118800461361014], + [0.8392156862745098,0.8397385620915032,0.9137254901960784], + [0.8429065743944636,0.8433064206074586,0.9155709342560553], + [0.8465974625144175,0.8468742791234141,0.9174163783160323], + [0.8502883506343714,0.8504421376393694,0.9192618223760092], + [0.8539792387543252,0.8540099961553248,0.9211072664359861], + [0.8568396770472895,0.8566551326412918,0.9224913494809688], + [0.8594232987312572,0.8589926951172625,0.9237216455209535], + [0.8620069204152249,0.8613302575932333,0.9249519415609381], + [0.8645905420991926,0.8636678200692042,0.9261822376009227], + [0.8671741637831603,0.8660053825451748,0.9274125336409073], + [0.869757785467128,0.8683429450211457,0.928642829680892], + [0.8723414071510956,0.8706805074971165,0.9298731257208765], + [0.8749250288350634,0.8730180699730873,0.9311034217608611], + [0.8775086505190312,0.875355632449058,0.9323337178008458], + [0.8800922722029988,0.8776931949250288,0.9335640138408304], + [0.8826758938869665,0.8800307574009996,0.934794309880815], + [0.8852595155709342,0.8823683198769704,0.9360246059207997], + [0.8878431372549019,0.8847058823529411,0.9372549019607843], + [0.8904267589388697,0.887043444828912,0.9384851980007689], + [0.8930103806228373,0.8893810073048827,0.9397154940407535], + [0.8955940023068051,0.8917185697808535,0.9409457900807382], + [0.8981776239907727,0.8940561322568243,0.9421760861207228], + [0.9007612456747405,0.8963936947327951,0.9434063821607074], + [0.9033448673587082,0.8987312572087659,0.9446366782006921], + [0.9059284890426759,0.9010688196847366,0.9458669742406767], + [0.9085121107266435,0.9034063821607073,0.9470972702806613], + [0.9110957324106113,0.9057439446366782,0.9483275663206459], + [0.913679354094579,0.908081507112649,0.9495578623606306], + [0.9162629757785468,0.9104190695886197,0.9507881584006151], + [0.9188465974625144,0.9127566320645906,0.9520184544405997], + [0.9214302191464822,0.9150941945405613,0.9532487504805844], + [0.9240138408304498,0.9174317570165321,0.954479046520569], + [0.9265974625144175,0.919769319492503,0.9557093425605536], + [0.9291810841983852,0.9221068819684737,0.9569396386005383], + [0.9317647058823529,0.9244444444444445,0.9581699346405229], + [0.9343483275663207,0.9267820069204152,0.9594002306805075], + [0.9369319492502883,0.9291195693963861,0.9606305267204921], + [0.9386543637062669,0.9309188773548636,0.9616455209534794], + [0.9402537485582468,0.932641291810842,0.9626297577854671], + [0.9418531334102268,0.9343637062668205,0.9636139946174549], + [0.9434525182622069,0.936086120722799,0.9645982314494426], + [0.9450519031141869,0.9378085351787774,0.9655824682814302], + [0.9466512879661668,0.9395309496347559,0.9665667051134179], + [0.9482506728181469,0.9412533640907343,0.9675509419454057], + [0.9498500576701269,0.9429757785467128,0.9685351787773934], + [0.951449442522107,0.9446981930026913,0.969519415609381], + [0.9530488273740869,0.9464206074586697,0.9705036524413687], + [0.9546482122260669,0.9481430219146482,0.9714878892733564], + [0.956247597078047,0.9498654363706267,0.9724721261053442], + [0.9578469819300269,0.9515878508266051,0.9734563629373318], + [0.9594463667820069,0.9533102652825836,0.9744405997693195], + [0.961045751633987,0.9550326797385621,0.9754248366013072], + [0.962645136485967,0.9567550941945405,0.9764090734332949], + [0.9642445213379469,0.9584775086505191,0.9773933102652826], + [0.965843906189927,0.9601999231064975,0.9783775470972703], + [0.967443291041907,0.9619223375624759,0.979361783929258], + [0.969042675893887,0.9636447520184545,0.9803460207612457], + [0.970642060745867,0.9653671664744329,0.9813302575932333], + [0.972241445597847,0.9670895809304113,0.9823144944252211], + [0.973840830449827,0.9688119953863898,0.9832987312572088], + [0.975440215301807,0.9705344098423683,0.9842829680891965], + [0.977039600153787,0.9722568242983467,0.9852672049211841], + [0.9786389850057671,0.9739792387543252,0.9862514417531719], + [0.980238369857747,0.9757016532103037,0.9872356785851596], + [0.981837754709727,0.9774240676662822,0.9882199154171473], + [0.9834371395617071,0.9791464821222606,0.9892041522491349], + [0.985036524413687,0.9808688965782391,0.9901883890811227], + [0.9866359092656671,0.9825913110342176,0.9911726259131104], + [0.9882352941176471,0.984313725490196,0.9921568627450981] ], + RdBu: [ + [0.403921568627451,0.0,0.12156862745098039], + [0.4154555940023068,0.003690888119953864,0.12341407151095732], + [0.4269896193771626,0.007381776239907728,0.12525951557093426], + [0.43852364475201844,0.011072664359861591,0.12710495963091117], + [0.45005767012687425,0.014763552479815456,0.12895040369088812], + [0.4615916955017301,0.01845444059976932,0.13079584775086506], + [0.47312572087658594,0.022145328719723183,0.132641291810842], + [0.48465974625144176,0.02583621683967705,0.1344867358708189], + [0.4961937716262976,0.02952710495963091,0.13633217993079585], + [0.5077277970011534,0.03321799307958478,0.13817762399077277], + [0.5192618223760093,0.03690888119953864,0.1400230680507497], + [0.5307958477508651,0.0405997693194925,0.14186851211072665], + [0.5423298731257209,0.044290657439446365,0.1437139561707036], + [0.5538638985005767,0.04798154555940023,0.1455594002306805], + [0.5653979238754325,0.0516724336793541,0.14740484429065745], + [0.5769319492502883,0.05536332179930796,0.14925028835063436], + [0.5884659746251442,0.05905420991926182,0.1510957324106113], + [0.6,0.06274509803921569,0.15294117647058825], + [0.6115340253748558,0.06643598615916955,0.1547866205305652], + [0.6230680507497116,0.07012687427912341,0.1566320645905421], + [0.6346020761245674,0.07381776239907728,0.15847750865051904], + [0.6461361014994232,0.07750865051903114,0.16032295271049596], + [0.6576701268742791,0.081199538638985,0.1621683967704729], + [0.669204152249135,0.08489042675893888,0.16401384083044984], + [0.6807381776239907,0.08858131487889273,0.16585928489042678], + [0.6922722029988466,0.09227220299884659,0.1677047289504037], + [0.7008073817762399,0.09965397923875433,0.17124183006535948], + [0.7063437139561707,0.11072664359861592,0.17647058823529413], + [0.7118800461361015,0.12179930795847752,0.18169934640522878], + [0.7174163783160322,0.1328719723183391,0.1869281045751634], + [0.7229527104959631,0.14394463667820068,0.19215686274509805], + [0.7284890426758939,0.15501730103806227,0.1973856209150327], + [0.7340253748558246,0.16608996539792387,0.20261437908496732], + [0.7395617070357554,0.1771626297577854,0.20784313725490194], + [0.7450980392156863,0.18823529411764706,0.2130718954248366], + [0.7506343713956171,0.19930795847750865,0.21830065359477124], + [0.7561707035755478,0.21038062283737025,0.22352941176470587], + [0.7617070357554786,0.22145328719723176,0.2287581699346405], + [0.7672433679354095,0.2325259515570934,0.23398692810457516], + [0.7727797001153403,0.243598615916955,0.2392156862745098], + [0.778316032295271,0.2546712802768166,0.24444444444444444], + [0.7838523644752018,0.2657439446366781,0.24967320261437903], + [0.7893886966551327,0.2768166089965398,0.2549019607843137], + [0.7949250288350634,0.28788927335640135,0.26013071895424833], + [0.8004613610149942,0.298961937716263,0.265359477124183], + [0.805997693194925,0.3100346020761245,0.2705882352941176], + [0.8115340253748559,0.3211072664359862,0.2758169934640523], + [0.8170703575547866,0.33217993079584773,0.28104575163398693], + [0.8226066897347174,0.34325259515570933,0.28627450980392155], + [0.8281430219146482,0.35432525951557087,0.2915032679738562], + [0.833679354094579,0.3653979238754325,0.29673202614379085], + [0.8392156862745098,0.3764705882352941,0.30196078431372547], + [0.8438292964244521,0.3870818915801615,0.3101114955786236], + [0.8484429065743945,0.39769319492502875,0.31826220684352163], + [0.8530565167243368,0.4083044982698962,0.3264129181084198], + [0.8576701268742791,0.41891580161476355,0.3345636293733179], + [0.8622837370242215,0.42952710495963087,0.34271434063821604], + [0.8668973471741638,0.44013840830449813,0.35086505190311407], + [0.8715109573241061,0.4507497116493656,0.35901576316801226], + [0.8761245674740484,0.46136101499423293,0.3671664744329104], + [0.8807381776239908,0.4719723183391003,0.3753171856978085], + [0.8853517877739331,0.48258362168396757,0.38346789696270656], + [0.8899653979238754,0.493194925028835,0.3916186082276047], + [0.8945790080738177,0.5038062283737024,0.39976931949250283], + [0.8991926182237601,0.5144175317185697,0.4079200307574009], + [0.9038062283737024,0.5250288350634371,0.41607074202229904], + [0.9084198385236447,0.5356401384083043,0.424221453287197], + [0.913033448673587,0.5462514417531718,0.43237216455209526], + [0.9176470588235294,0.5568627450980391,0.44052287581699334], + [0.9222606689734717,0.5674740484429065,0.4486735870818915], + [0.926874279123414,0.5780853517877739,0.4568242983467896], + [0.9314878892733564,0.5886966551326411,0.4649750096116877], + [0.9361014994232987,0.5993079584775085,0.4731257208765858], + [0.940715109573241,0.6099192618223759,0.4812764321414839], + [0.9453287197231833,0.6205305651672431,0.48942714340638194], + [0.9499423298731257,0.6311418685121106,0.49757785467128013], + [0.954555940023068,0.641753171856978,0.5057285659361782], + [0.9575547866205306,0.6512110726643597,0.515109573241061], + [0.9589388696655133,0.659515570934256,0.5257208765859284], + [0.960322952710496,0.6678200692041522,0.5363321799307956], + [0.9617070357554787,0.6761245674740484,0.546943483275663], + [0.9630911188004614,0.6844290657439446,0.5575547866205304], + [0.9644752018454441,0.6927335640138407,0.5681660899653976], + [0.9658592848904268,0.701038062283737,0.5787773933102651], + [0.9672433679354094,0.7093425605536331,0.5893886966551325], + [0.9686274509803922,0.7176470588235293,0.5999999999999999], + [0.9700115340253749,0.7259515570934255,0.6106113033448672], + [0.9713956170703576,0.7342560553633217,0.6212226066897346], + [0.9727797001153403,0.7425605536332179,0.631833910034602], + [0.9741637831603229,0.7508650519031141,0.6424452133794694], + [0.9755478662053056,0.7591695501730102,0.6530565167243365], + [0.9769319492502884,0.7674740484429066,0.6636678200692041], + [0.9783160322952711,0.7757785467128027,0.6742791234140715], + [0.9797001153402538,0.7840830449826989,0.6848904267589389], + [0.9810841983852365,0.7923875432525951,0.6955017301038062], + [0.9824682814302191,0.8006920415224913,0.7061130334486736], + [0.9838523644752019,0.8089965397923875,0.7167243367935409], + [0.9852364475201846,0.8173010380622837,0.7273356401384083], + [0.9866205305651673,0.8256055363321797,0.7379469434832755], + [0.98800461361015,0.833910034602076,0.748558246828143], + [0.9893886966551326,0.8422145328719722,0.7591695501730104], + [0.9907727797001153,0.8505190311418684,0.7697808535178777], + [0.9921568627450981,0.8588235294117647,0.7803921568627451], + [0.9912341407151096,0.8631295655517108,0.7877739331026529], + [0.9903114186851212,0.867435601691657,0.7951557093425605], + [0.9893886966551326,0.8717416378316032,0.8025374855824683], + [0.9884659746251442,0.8760476739715493,0.809919261822376], + [0.9875432525951557,0.8803537101114955,0.8173010380622837], + [0.9866205305651673,0.8846597462514417,0.8246828143021915], + [0.9856978085351787,0.8889657823913879,0.8320645905420992], + [0.9847750865051903,0.8932718185313341,0.8394463667820069], + [0.9838523644752019,0.8975778546712803,0.8468281430219147], + [0.9829296424452134,0.9018838908112264,0.8542099192618224], + [0.982006920415225,0.9061899269511726,0.8615916955017301], + [0.9810841983852365,0.9104959630911187,0.8689734717416377], + [0.980161476355248,0.914801999231065,0.8763552479815455], + [0.9792387543252595,0.9191080353710112,0.8837370242214533], + [0.9783160322952711,0.9234140715109573,0.891118800461361], + [0.9773933102652826,0.9277201076509035,0.8985005767012687], + [0.9764705882352941,0.9320261437908497,0.9058823529411765], + [0.9755478662053056,0.9363321799307959,0.9132641291810842], + [0.9746251441753172,0.940638216070742,0.9206459054209919], + [0.9737024221453288,0.9449442522106881,0.9280276816608996], + [0.9727797001153402,0.9492502883506344,0.9354094579008074], + [0.9718569780853518,0.9535563244905806,0.9427912341407151], + [0.9709342560553633,0.9578623606305268,0.9501730103806229], + [0.9700115340253749,0.9621683967704728,0.9575547866205305], + [0.9690888119953864,0.9664744329104191,0.9649365628604383], + [0.9657054978854287,0.9672433679354094,0.9680891964628989], + [0.9598615916955018,0.9644752018454441,0.9670126874279124], + [0.9540176855055748,0.9617070357554787,0.9659361783929258], + [0.9481737793156478,0.9589388696655132,0.9648596693579392], + [0.942329873125721,0.956170703575548,0.9637831603229527], + [0.936485966935794,0.9534025374855825,0.9627066512879662], + [0.930642060745867,0.9506343713956171,0.9616301422529796], + [0.92479815455594,0.9478662053056517,0.960553633217993], + [0.9189542483660131,0.9450980392156864,0.9594771241830066], + [0.9131103421760862,0.9423298731257209,0.95840061514802], + [0.9072664359861592,0.9395617070357555,0.9573241061130334], + [0.9014225297962323,0.9367935409457901,0.956247597078047], + [0.8955786236063054,0.9340253748558247,0.9551710880430604], + [0.8897347174163783,0.9312572087658594,0.9540945790080738], + [0.8838908112264514,0.9284890426758939,0.9530180699730872], + [0.8780469050365245,0.9257208765859286,0.9519415609381008], + [0.8722029988465976,0.9229527104959632,0.9508650519031142], + [0.8663590926566707,0.9201845444059977,0.9497885428681276], + [0.8605151864667436,0.9174163783160324,0.9487120338331411], + [0.8546712802768167,0.914648212226067,0.9476355247981546], + [0.8488273740868899,0.9118800461361016,0.946559015763168], + [0.8429834678969628,0.9091118800461362,0.9454825067281815], + [0.8371395617070359,0.9063437139561707,0.9444059976931949], + [0.8312956555171089,0.9035755478662054,0.9433294886582084], + [0.825451749327182,0.90080738177624,0.9422529796232219], + [0.8196078431372551,0.8980392156862746,0.9411764705882353], + [0.8099192618223763,0.8931180315263362,0.93840830449827], + [0.8002306805074973,0.8881968473663977,0.9356401384083045], + [0.7905420991926184,0.8832756632064592,0.9328719723183392], + [0.7808535178777396,0.8783544790465208,0.9301038062283737], + [0.7711649365628607,0.8734332948865823,0.9273356401384084], + [0.7614763552479817,0.8685121107266438,0.924567474048443], + [0.7517877739331029,0.8635909265667053,0.9217993079584775], + [0.742099192618224,0.8586697424067669,0.9190311418685122], + [0.7324106113033451,0.8537485582468283,0.9162629757785468], + [0.7227220299884662,0.8488273740868898,0.9134948096885814], + [0.7130334486735876,0.8439061899269515,0.9107266435986161], + [0.7033448673587084,0.8389850057670128,0.9079584775086506], + [0.6936562860438296,0.8340638216070744,0.9051903114186852], + [0.6839677047289506,0.8291426374471359,0.9024221453287198], + [0.6742791234140717,0.8242214532871974,0.8996539792387545], + [0.6645905420991929,0.819300269127259,0.896885813148789], + [0.654901960784314,0.8143790849673205,0.8941176470588236], + [0.645213379469435,0.8094579008073819,0.8913494809688582], + [0.6355247981545562,0.8045367166474434,0.8885813148788928], + [0.6258362168396773,0.7996155324875049,0.8858131487889275], + [0.6161476355247983,0.7946943483275665,0.883044982698962], + [0.6064590542099195,0.789773164167628,0.8802768166089966], + [0.5967704728950406,0.7848519800076895,0.8775086505190313], + [0.5870818915801617,0.779930795847751,0.8747404844290658], + [0.5773933102652828,0.7750096116878126,0.8719723183391004], + [0.5664744329104193,0.7687043444828915,0.8685121107266437], + [0.5543252595155715,0.7610149942329878,0.8643598615916958], + [0.5421760861207231,0.7533256439830837,0.8602076124567475], + [0.530026912725875,0.7456362937331797,0.8560553633217994], + [0.5178777393310268,0.7379469434832758,0.8519031141868513], + [0.5057285659361787,0.7302575932333719,0.8477508650519032], + [0.4935793925413305,0.7225682429834681,0.8435986159169551], + [0.4814302191464823,0.7148788927335642,0.839446366782007], + [0.4692810457516342,0.7071895424836603,0.8352941176470589], + [0.45713187235678604,0.6995001922337564,0.8311418685121108], + [0.4449826989619379,0.6918108419838525,0.8269896193771626], + [0.43283352556708976,0.6841214917339487,0.8228373702422146], + [0.42068435217224165,0.6764321414840447,0.8186851211072664], + [0.4085351787773935,0.6687427912341408,0.8145328719723184], + [0.3963860053825453,0.6610534409842369,0.8103806228373702], + [0.38423683198769715,0.653364090734333,0.8062283737024222], + [0.37208765859284904,0.6456747404844292,0.8020761245674741], + [0.3599384851980012,0.6379853902345254,0.7979238754325261], + [0.34778931180315276,0.6302960399846214,0.7937716262975778], + [0.3356401384083046,0.6226066897347174,0.7896193771626298], + [0.3234909650134564,0.6149173394848135,0.7854671280276817], + [0.3113417916186083,0.6072279892349096,0.7813148788927335], + [0.29919261822376014,0.5995386389850057,0.7771626297577854], + [0.287043444828912,0.5918492887351019,0.7730103806228373], + [0.27489427143406386,0.584159938485198,0.7688581314878893], + [0.2627450980392157,0.5764705882352941,0.7647058823529411], + [0.2575163398692811,0.5695501730103806,0.7611687812379854], + [0.2522875816993464,0.5626297577854671,0.7576316801230295], + [0.24705882352941178,0.5557093425605536,0.7540945790080738], + [0.24183006535947713,0.5487889273356401,0.750557477893118], + [0.2366013071895425,0.5418685121107266,0.7470203767781622], + [0.23137254901960785,0.5349480968858131,0.7434832756632064], + [0.2261437908496732,0.5280276816608996,0.7399461745482506], + [0.22091503267973872,0.5211072664359864,0.736409073433295], + [0.21568627450980393,0.5141868512110727,0.7328719723183391], + [0.21045751633986928,0.5072664359861592,0.7293348712033833], + [0.20522875816993463,0.5003460207612457,0.7257977700884275], + [0.2,0.4934256055363322,0.7222606689734717], + [0.1947712418300654,0.4865051903114187,0.718723567858516], + [0.1895424836601307,0.47958477508650516,0.7151864667435601], + [0.1843137254901961,0.47266435986159167,0.7116493656286044], + [0.17908496732026147,0.46574394463667823,0.7081122645136486], + [0.17385620915032682,0.45882352941176474,0.7045751633986929], + [0.16862745098039217,0.4519031141868512,0.701038062283737], + [0.16339869281045752,0.4449826989619377,0.6975009611687812], + [0.15816993464052287,0.43806228373702427,0.6939638600538255], + [0.15294117647058825,0.4311418685121108,0.6904267589388697], + [0.1477124183006536,0.42422145328719724,0.6868896578239139], + [0.14248366013071895,0.41730103806228375,0.6833525567089581], + [0.13725490196078446,0.4103806228373704,0.6798154555940025], + [0.1320261437908497,0.40346020761245677,0.6762783544790466], + [0.12725874663590928,0.3958477508650519,0.6687427912341407], + [0.1229527104959631,0.3875432525951557,0.6572087658592849], + [0.11864667435601693,0.37923875432525955,0.6456747404844291], + [0.11434063821607075,0.37093425605536334,0.6341407151095733], + [0.11003460207612457,0.36262975778546713,0.6226066897347174], + [0.10572856593617841,0.3543252595155709,0.6110726643598616], + [0.10142252979623223,0.34602076124567477,0.5995386389850058], + [0.09711649365628605,0.33771626297577856,0.58800461361015], + [0.09281045751633987,0.3294117647058824,0.5764705882352942], + [0.0885044213763937,0.3211072664359862,0.5649365628604384], + [0.08419838523644753,0.31280276816609,0.5534025374855824], + [0.07989234909650135,0.3044982698961938,0.5418685121107266], + [0.07558631295655519,0.29619377162629756,0.5303344867358708], + [0.071280276816609,0.2878892733564014,0.518800461361015], + [0.06697424067666295,0.2795847750865054,0.5072664359861595], + [0.06266820453671666,0.27128027681660905,0.49573241061130335], + [0.05836216839677047,0.26297577854671284,0.48419838523644754], + [0.054056132256824305,0.2546712802768166,0.4726643598615917], + [0.049750096116878126,0.24636678200692042,0.4611303344867359], + [0.04544405997693196,0.23806228373702423,0.4495963091118801], + [0.04113802383698577,0.22975778546712802,0.4380622837370242], + [0.0368319876970396,0.22145328719723184,0.4265282583621684], + [0.032525951557093424,0.21314878892733566,0.4149942329873126], + [0.02821991541714726,0.20484429065743945,0.40346020761245677], + [0.02391387927720108,0.19653979238754324,0.3919261822376009], + [0.0196078431372549,0.18823529411764706,0.3803921568627451] ], + RdBu_r: [ + [0.0196078431372549,0.18823529411764706,0.3803921568627451], + [0.023913879277201077,0.19653979238754324,0.3919261822376009], + [0.028219915417147252,0.20484429065743945,0.4034602076124567], + [0.032525951557093424,0.21314878892733563,0.4149942329873126], + [0.0368319876970396,0.22145328719723184,0.4265282583621684], + [0.041138023836985775,0.22975778546712802,0.4380622837370242], + [0.04544405997693195,0.23806228373702423,0.44959630911188003], + [0.049750096116878126,0.24636678200692042,0.4611303344867359], + [0.054056132256824305,0.2546712802768166,0.4726643598615917], + [0.05836216839677048,0.26297577854671284,0.48419838523644754], + [0.06266820453671665,0.271280276816609,0.49573241061130335], + [0.06697424067666283,0.2795847750865052,0.5072664359861592], + [0.071280276816609,0.2878892733564014,0.518800461361015], + [0.07558631295655517,0.29619377162629756,0.5303344867358708], + [0.07989234909650136,0.3044982698961938,0.5418685121107267], + [0.08419838523644753,0.31280276816609,0.5534025374855824], + [0.08850442137639371,0.3211072664359862,0.5649365628604384], + [0.09281045751633987,0.32941176470588235,0.5764705882352941], + [0.09711649365628605,0.33771626297577856,0.58800461361015], + [0.10142252979623223,0.34602076124567477,0.5995386389850058], + [0.1057285659361784,0.3543252595155709,0.6110726643598616], + [0.11003460207612457,0.36262975778546713,0.6226066897347174], + [0.11434063821607075,0.37093425605536334,0.6341407151095733], + [0.11864667435601693,0.37923875432525955,0.6456747404844292], + [0.1229527104959631,0.38754325259515576,0.6572087658592849], + [0.12725874663590928,0.3958477508650519,0.6687427912341408], + [0.13202614379084968,0.40346020761245677,0.6762783544790466], + [0.13725490196078433,0.41038062283737026,0.6798154555940024], + [0.14248366013071898,0.41730103806228375,0.6833525567089581], + [0.1477124183006536,0.42422145328719724,0.6868896578239139], + [0.15294117647058825,0.4311418685121107,0.6904267589388697], + [0.1581699346405229,0.4380622837370242,0.6939638600538255], + [0.16339869281045752,0.4449826989619377,0.6975009611687812], + [0.16862745098039214,0.45190311418685114,0.701038062283737], + [0.1738562091503268,0.4588235294117647,0.7045751633986929], + [0.17908496732026147,0.46574394463667823,0.7081122645136486], + [0.1843137254901961,0.47266435986159167,0.7116493656286044], + [0.18954248366013068,0.4795847750865051,0.7151864667435601], + [0.19477124183006536,0.4865051903114187,0.718723567858516], + [0.2,0.4934256055363322,0.7222606689734717], + [0.20522875816993463,0.5003460207612457,0.7257977700884275], + [0.21045751633986925,0.5072664359861591,0.7293348712033833], + [0.21568627450980393,0.5141868512110727,0.7328719723183391], + [0.22091503267973855,0.5211072664359861,0.7364090734332949], + [0.2261437908496732,0.5280276816608996,0.7399461745482506], + [0.2313725490196078,0.5349480968858131,0.7434832756632064], + [0.2366013071895425,0.5418685121107266,0.7470203767781622], + [0.24183006535947715,0.5487889273356401,0.750557477893118], + [0.24705882352941178,0.5557093425605536,0.7540945790080738], + [0.2522875816993464,0.5626297577854671,0.7576316801230295], + [0.257516339869281,0.5695501730103806,0.7611687812379854], + [0.2627450980392157,0.5764705882352941,0.7647058823529411], + [0.2748942714340638,0.584159938485198,0.7688581314878892], + [0.28704344482891186,0.5918492887351018,0.7730103806228373], + [0.2991926182237601,0.5995386389850057,0.7771626297577854], + [0.3113417916186082,0.6072279892349096,0.7813148788927335], + [0.3234909650134563,0.6149173394848135,0.7854671280276816], + [0.33564013840830437,0.6226066897347173,0.7896193771626296], + [0.3477893118031526,0.6302960399846212,0.7937716262975778], + [0.3599384851980007,0.6379853902345252,0.7979238754325259], + [0.37208765859284887,0.645674740484429,0.802076124567474], + [0.38423683198769687,0.6533640907343328,0.8062283737024221], + [0.3963860053825451,0.6610534409842368,0.8103806228373702], + [0.4085351787773932,0.6687427912341406,0.8145328719723183], + [0.4206843521722413,0.6764321414840445,0.8186851211072664], + [0.4328335255670895,0.6841214917339484,0.8228373702422145], + [0.44498269896193743,0.6918108419838522,0.8269896193771625], + [0.45713187235678576,0.6995001922337561,0.8311418685121107], + [0.4692810457516339,0.7071895424836601,0.8352941176470587], + [0.481430219146482,0.714878892733564,0.8394463667820069], + [0.4935793925413301,0.7225682429834679,0.843598615916955], + [0.5057285659361782,0.7302575932333717,0.8477508650519031], + [0.5178777393310263,0.7379469434832756,0.8519031141868512], + [0.5300269127258745,0.7456362937331795,0.8560553633217992], + [0.5421760861207224,0.7533256439830832,0.8602076124567473], + [0.5543252595155708,0.7610149942329872,0.8643598615916954], + [0.5664744329104188,0.7687043444828912,0.8685121107266436], + [0.5773933102652824,0.7750096116878123,0.8719723183391003], + [0.5870818915801613,0.7799307958477508,0.8747404844290657], + [0.5967704728950403,0.7848519800076893,0.8775086505190312], + [0.6064590542099191,0.7897731641676278,0.8802768166089965], + [0.616147635524798,0.7946943483275662,0.8830449826989619], + [0.6258362168396767,0.7996155324875047,0.8858131487889273], + [0.6355247981545558,0.8045367166474433,0.8885813148788927], + [0.6452133794694347,0.8094579008073818,0.8913494809688581], + [0.6549019607843136,0.8143790849673203,0.8941176470588235], + [0.6645905420991925,0.8193002691272587,0.8968858131487889], + [0.6742791234140714,0.8242214532871972,0.8996539792387543], + [0.6839677047289503,0.8291426374471357,0.9024221453287197], + [0.6936562860438292,0.8340638216070742,0.9051903114186851], + [0.7033448673587079,0.8389850057670126,0.9079584775086504], + [0.713033448673587,0.8439061899269512,0.9107266435986159], + [0.7227220299884659,0.8488273740868897,0.9134948096885813], + [0.7324106113033448,0.8537485582468282,0.9162629757785467], + [0.7420991926182237,0.8586697424067666,0.9190311418685121], + [0.7517877739331026,0.8635909265667051,0.9217993079584775], + [0.7614763552479815,0.8685121107266436,0.9245674740484429], + [0.7711649365628603,0.8734332948865821,0.9273356401384083], + [0.7808535178777392,0.8783544790465205,0.9301038062283736], + [0.7905420991926182,0.8832756632064591,0.9328719723183391], + [0.800230680507497,0.8881968473663976,0.9356401384083045], + [0.8099192618223761,0.8931180315263361,0.9384083044982698], + [0.8196078431372549,0.8980392156862745,0.9411764705882353], + [0.8254517493271818,0.90080738177624,0.9422529796232219], + [0.8312956555171088,0.9035755478662053,0.9433294886582083], + [0.8371395617070357,0.9063437139561707,0.9444059976931949], + [0.8429834678969625,0.9091118800461361,0.9454825067281815], + [0.8488273740868897,0.9118800461361015,0.946559015763168], + [0.8546712802768166,0.914648212226067,0.9476355247981545], + [0.8605151864667435,0.9174163783160323,0.9487120338331411], + [0.8663590926566704,0.9201845444059977,0.9497885428681276], + [0.8722029988465975,0.9229527104959632,0.9508650519031142], + [0.8780469050365244,0.9257208765859285,0.9519415609381007], + [0.8838908112264514,0.9284890426758939,0.9530180699730872], + [0.8897347174163782,0.9312572087658593,0.9540945790080738], + [0.8955786236063052,0.9340253748558247,0.9551710880430604], + [0.9014225297962322,0.9367935409457901,0.9562475970780469], + [0.9072664359861592,0.9395617070357555,0.9573241061130334], + [0.9131103421760861,0.9423298731257209,0.95840061514802], + [0.918954248366013,0.9450980392156862,0.9594771241830066], + [0.92479815455594,0.9478662053056517,0.960553633217993], + [0.930642060745867,0.9506343713956171,0.9616301422529796], + [0.9364859669357939,0.9534025374855825,0.9627066512879662], + [0.9423298731257208,0.9561707035755479,0.9637831603229527], + [0.9481737793156478,0.9589388696655132,0.9648596693579392], + [0.9540176855055748,0.9617070357554787,0.9659361783929258], + [0.9598615916955018,0.9644752018454441,0.9670126874279124], + [0.9657054978854287,0.9672433679354094,0.9680891964628989], + [0.9690888119953864,0.9664744329104191,0.9649365628604383], + [0.9700115340253749,0.962168396770473,0.9575547866205306], + [0.9709342560553633,0.9578623606305268,0.9501730103806229], + [0.9718569780853518,0.9535563244905806,0.9427912341407152], + [0.9727797001153402,0.9492502883506345,0.9354094579008077], + [0.9737024221453288,0.9449442522106882,0.9280276816608997], + [0.9746251441753172,0.940638216070742,0.920645905420992], + [0.9755478662053056,0.9363321799307959,0.9132641291810842], + [0.9764705882352941,0.9320261437908497,0.9058823529411766], + [0.9773933102652825,0.9277201076509035,0.8985005767012688], + [0.9783160322952711,0.9234140715109573,0.891118800461361], + [0.9792387543252595,0.9191080353710112,0.8837370242214534], + [0.980161476355248,0.914801999231065,0.8763552479815456], + [0.9810841983852364,0.9104959630911188,0.868973471741638], + [0.9820069204152249,0.9061899269511726,0.8615916955017302], + [0.9829296424452134,0.9018838908112266,0.8542099192618225], + [0.9838523644752019,0.8975778546712803,0.8468281430219148], + [0.9847750865051903,0.8932718185313342,0.8394463667820071], + [0.9856978085351787,0.888965782391388,0.8320645905420994], + [0.9866205305651673,0.8846597462514418,0.8246828143021916], + [0.9875432525951557,0.8803537101114958,0.817301038062284], + [0.9884659746251442,0.8760476739715495,0.8099192618223762], + [0.9893886966551326,0.8717416378316033,0.8025374855824685], + [0.9903114186851211,0.8674356016916571,0.7951557093425607], + [0.9912341407151096,0.8631295655517109,0.787773933102653], + [0.9921568627450981,0.8588235294117648,0.7803921568627453], + [0.9907727797001155,0.8505190311418687,0.7697808535178781], + [0.9893886966551327,0.8422145328719725,0.7591695501730107], + [0.98800461361015,0.8339100346020764,0.7485582468281433], + [0.9866205305651673,0.8256055363321801,0.7379469434832759], + [0.9852364475201846,0.8173010380622839,0.7273356401384086], + [0.983852364475202,0.8089965397923877,0.7167243367935412], + [0.9824682814302192,0.8006920415224915,0.7061130334486739], + [0.9810841983852365,0.7923875432525953,0.6955017301038066], + [0.9797001153402538,0.7840830449826992,0.6848904267589392], + [0.9783160322952711,0.775778546712803,0.6742791234140718], + [0.9769319492502885,0.767474048442907,0.6636678200692048], + [0.9755478662053058,0.7591695501730106,0.6530565167243371], + [0.974163783160323,0.7508650519031144,0.6424452133794697], + [0.9727797001153403,0.7425605536332183,0.6318339100346023], + [0.9713956170703576,0.7342560553633221,0.6212226066897351], + [0.970011534025375,0.7259515570934258,0.6106113033448677], + [0.9686274509803923,0.7176470588235296,0.6000000000000003], + [0.9672433679354095,0.7093425605536334,0.5893886966551329], + [0.9658592848904268,0.7010380622837373,0.5787773933102656], + [0.9644752018454441,0.6927335640138411,0.5681660899653982], + [0.9630911188004614,0.6844290657439449,0.5575547866205308], + [0.9617070357554788,0.6761245674740487,0.5469434832756634], + [0.9603229527104961,0.6678200692041525,0.5363321799307961], + [0.9589388696655133,0.6595155709342564,0.5257208765859287], + [0.9575547866205306,0.6512110726643601,0.5151095732410613], + [0.9545559400230682,0.6417531718569784,0.5057285659361785], + [0.949942329873126,0.6311418685121113,0.4975778546712807], + [0.9453287197231836,0.6205305651672437,0.4894271434063823], + [0.9407151095732412,0.6099192618223763,0.4812764321414842], + [0.9361014994232989,0.599307958477509,0.4731257208765861], + [0.9314878892733566,0.5886966551326416,0.464975009611688], + [0.9268742791234142,0.5780853517877742,0.45682429834678984], + [0.9222606689734718,0.5674740484429068,0.4486735870818917], + [0.9176470588235295,0.5568627450980395,0.44052287581699356], + [0.9130334486735872,0.5462514417531721,0.4323721645520955], + [0.9084198385236448,0.5356401384083047,0.42422145328719735], + [0.9038062283737025,0.5250288350634373,0.4160707420222992], + [0.8991926182237602,0.51441753171857,0.4079200307574011], + [0.8945790080738178,0.5038062283737026,0.39976931949250294], + [0.8899653979238755,0.4931949250288352,0.39161860822760486], + [0.8853517877739332,0.48258362168396784,0.38346789696270667], + [0.8807381776239909,0.47197231833910047,0.3753171856978086], + [0.8761245674740487,0.4613610149942334,0.3671664744329107], + [0.8715109573241062,0.4507497116493657,0.3590157631680123], + [0.8668973471741639,0.44013840830449835,0.35086505190311423], + [0.8622837370242215,0.429527104959631,0.3427143406382161], + [0.8576701268742791,0.4189158016147636,0.33456362937331796], + [0.8530565167243368,0.40830449826989623,0.3264129181084199], + [0.8484429065743945,0.39769319492502886,0.3182622068435217], + [0.8438292964244521,0.3870818915801615,0.3101114955786236], + [0.8392156862745098,0.3764705882352941,0.30196078431372547], + [0.833679354094579,0.3653979238754325,0.29673202614379085], + [0.8281430219146482,0.3543252595155709,0.2915032679738562], + [0.8226066897347174,0.34325259515570933,0.28627450980392155], + [0.8170703575547866,0.33217993079584773,0.28104575163398693], + [0.8115340253748559,0.32110726643598614,0.27581699346405225], + [0.8059976931949251,0.31003460207612454,0.27058823529411763], + [0.8004613610149942,0.29896193771626295,0.265359477124183], + [0.7949250288350636,0.2878892733564017,0.2601307189542485], + [0.7893886966551327,0.2768166089965398,0.2549019607843137], + [0.7838523644752018,0.26574394463667816,0.2496732026143791], + [0.778316032295271,0.2546712802768166,0.24444444444444444], + [0.7727797001153403,0.243598615916955,0.2392156862745098], + [0.7672433679354095,0.23252595155709344,0.23398692810457516], + [0.7617070357554786,0.2214532871972318,0.22875816993464052], + [0.7561707035755478,0.21038062283737025,0.22352941176470587], + [0.7506343713956171,0.19930795847750865,0.21830065359477124], + [0.7450980392156863,0.18823529411764706,0.21307189542483662], + [0.7395617070357554,0.17716262975778546,0.20784313725490194], + [0.7340253748558246,0.16608996539792387,0.20261437908496732], + [0.7284890426758939,0.15501730103806227,0.1973856209150327], + [0.7229527104959631,0.1439446366782007,0.19215686274509805], + [0.7174163783160322,0.13287197231833908,0.1869281045751634], + [0.7118800461361015,0.12179930795847749,0.18169934640522878], + [0.7063437139561708,0.11072664359861623,0.17647058823529427], + [0.7008073817762399,0.09965397923875435,0.1712418300653595], + [0.6922722029988465,0.0922722029988466,0.1677047289504037], + [0.6807381776239907,0.08858131487889273,0.16585928489042678], + [0.6692041522491349,0.08489042675893888,0.16401384083044984], + [0.6576701268742791,0.081199538638985,0.1621683967704729], + [0.6461361014994232,0.07750865051903114,0.16032295271049596], + [0.6346020761245674,0.07381776239907728,0.15847750865051904], + [0.6230680507497116,0.07012687427912341,0.1566320645905421], + [0.6115340253748558,0.06643598615916954,0.1547866205305652], + [0.6,0.06274509803921569,0.15294117647058825], + [0.5884659746251442,0.05905420991926182,0.1510957324106113], + [0.5769319492502883,0.05536332179930796,0.14925028835063436], + [0.5653979238754325,0.05167243367935409,0.14740484429065745], + [0.5538638985005767,0.047981545559400235,0.1455594002306805], + [0.5423298731257209,0.044290657439446365,0.1437139561707036], + [0.5307958477508654,0.04059976931949261,0.1418685121107267], + [0.5192618223760093,0.03690888119953864,0.1400230680507497], + [0.5077277970011533,0.03321799307958477,0.13817762399077277], + [0.4961937716262976,0.029527104959630915,0.13633217993079585], + [0.48465974625144176,0.025836216839677045,0.1344867358708189], + [0.47312572087658594,0.02214532871972319,0.132641291810842], + [0.46159169550173007,0.01845444059976932,0.13079584775086506], + [0.45005767012687425,0.01476355247981545,0.12895040369088812], + [0.43852364475201844,0.011072664359861595,0.12710495963091117], + [0.4269896193771627,0.007381776239907739,0.12525951557093426], + [0.4154555940023068,0.0036908881199538557,0.12341407151095732], + [0.403921568627451,0.0,0.12156862745098039] ], + RdGy: [ + [0.403921568627451,0.0,0.12156862745098039], + [0.4154555940023068,0.003690888119953864,0.12341407151095732], + [0.4269896193771626,0.007381776239907728,0.12525951557093426], + [0.43852364475201844,0.011072664359861591,0.12710495963091117], + [0.45005767012687425,0.014763552479815456,0.12895040369088812], + [0.4615916955017301,0.01845444059976932,0.13079584775086506], + [0.47312572087658594,0.022145328719723183,0.132641291810842], + [0.48465974625144176,0.02583621683967705,0.1344867358708189], + [0.4961937716262976,0.02952710495963091,0.13633217993079585], + [0.5077277970011534,0.03321799307958478,0.13817762399077277], + [0.5192618223760093,0.03690888119953864,0.1400230680507497], + [0.5307958477508651,0.0405997693194925,0.14186851211072665], + [0.5423298731257209,0.044290657439446365,0.1437139561707036], + [0.5538638985005767,0.04798154555940023,0.1455594002306805], + [0.5653979238754325,0.0516724336793541,0.14740484429065745], + [0.5769319492502883,0.05536332179930796,0.14925028835063436], + [0.5884659746251442,0.05905420991926182,0.1510957324106113], + [0.6,0.06274509803921569,0.15294117647058825], + [0.6115340253748558,0.06643598615916955,0.1547866205305652], + [0.6230680507497116,0.07012687427912341,0.1566320645905421], + [0.6346020761245674,0.07381776239907728,0.15847750865051904], + [0.6461361014994232,0.07750865051903114,0.16032295271049596], + [0.6576701268742791,0.081199538638985,0.1621683967704729], + [0.669204152249135,0.08489042675893888,0.16401384083044984], + [0.6807381776239907,0.08858131487889273,0.16585928489042678], + [0.6922722029988466,0.09227220299884659,0.1677047289504037], + [0.7008073817762399,0.09965397923875433,0.17124183006535948], + [0.7063437139561707,0.11072664359861592,0.17647058823529413], + [0.7118800461361015,0.12179930795847752,0.18169934640522878], + [0.7174163783160322,0.1328719723183391,0.1869281045751634], + [0.7229527104959631,0.14394463667820068,0.19215686274509805], + [0.7284890426758939,0.15501730103806227,0.1973856209150327], + [0.7340253748558246,0.16608996539792387,0.20261437908496732], + [0.7395617070357554,0.1771626297577854,0.20784313725490194], + [0.7450980392156863,0.18823529411764706,0.2130718954248366], + [0.7506343713956171,0.19930795847750865,0.21830065359477124], + [0.7561707035755478,0.21038062283737025,0.22352941176470587], + [0.7617070357554786,0.22145328719723176,0.2287581699346405], + [0.7672433679354095,0.2325259515570934,0.23398692810457516], + [0.7727797001153403,0.243598615916955,0.2392156862745098], + [0.778316032295271,0.2546712802768166,0.24444444444444444], + [0.7838523644752018,0.2657439446366781,0.24967320261437903], + [0.7893886966551327,0.2768166089965398,0.2549019607843137], + [0.7949250288350634,0.28788927335640135,0.26013071895424833], + [0.8004613610149942,0.298961937716263,0.265359477124183], + [0.805997693194925,0.3100346020761245,0.2705882352941176], + [0.8115340253748559,0.3211072664359862,0.2758169934640523], + [0.8170703575547866,0.33217993079584773,0.28104575163398693], + [0.8226066897347174,0.34325259515570933,0.28627450980392155], + [0.8281430219146482,0.35432525951557087,0.2915032679738562], + [0.833679354094579,0.3653979238754325,0.29673202614379085], + [0.8392156862745098,0.3764705882352941,0.30196078431372547], + [0.8438292964244521,0.3870818915801615,0.3101114955786236], + [0.8484429065743945,0.39769319492502875,0.31826220684352163], + [0.8530565167243368,0.4083044982698962,0.3264129181084198], + [0.8576701268742791,0.41891580161476355,0.3345636293733179], + [0.8622837370242215,0.42952710495963087,0.34271434063821604], + [0.8668973471741638,0.44013840830449813,0.35086505190311407], + [0.8715109573241061,0.4507497116493656,0.35901576316801226], + [0.8761245674740484,0.46136101499423293,0.3671664744329104], + [0.8807381776239908,0.4719723183391003,0.3753171856978085], + [0.8853517877739331,0.48258362168396757,0.38346789696270656], + [0.8899653979238754,0.493194925028835,0.3916186082276047], + [0.8945790080738177,0.5038062283737024,0.39976931949250283], + [0.8991926182237601,0.5144175317185697,0.4079200307574009], + [0.9038062283737024,0.5250288350634371,0.41607074202229904], + [0.9084198385236447,0.5356401384083043,0.424221453287197], + [0.913033448673587,0.5462514417531718,0.43237216455209526], + [0.9176470588235294,0.5568627450980391,0.44052287581699334], + [0.9222606689734717,0.5674740484429065,0.4486735870818915], + [0.926874279123414,0.5780853517877739,0.4568242983467896], + [0.9314878892733564,0.5886966551326411,0.4649750096116877], + [0.9361014994232987,0.5993079584775085,0.4731257208765858], + [0.940715109573241,0.6099192618223759,0.4812764321414839], + [0.9453287197231833,0.6205305651672431,0.48942714340638194], + [0.9499423298731257,0.6311418685121106,0.49757785467128013], + [0.954555940023068,0.641753171856978,0.5057285659361782], + [0.9575547866205306,0.6512110726643597,0.515109573241061], + [0.9589388696655133,0.659515570934256,0.5257208765859284], + [0.960322952710496,0.6678200692041522,0.5363321799307956], + [0.9617070357554787,0.6761245674740484,0.546943483275663], + [0.9630911188004614,0.6844290657439446,0.5575547866205304], + [0.9644752018454441,0.6927335640138407,0.5681660899653976], + [0.9658592848904268,0.701038062283737,0.5787773933102651], + [0.9672433679354094,0.7093425605536331,0.5893886966551325], + [0.9686274509803922,0.7176470588235293,0.5999999999999999], + [0.9700115340253749,0.7259515570934255,0.6106113033448672], + [0.9713956170703576,0.7342560553633217,0.6212226066897346], + [0.9727797001153403,0.7425605536332179,0.631833910034602], + [0.9741637831603229,0.7508650519031141,0.6424452133794694], + [0.9755478662053056,0.7591695501730102,0.6530565167243365], + [0.9769319492502884,0.7674740484429066,0.6636678200692041], + [0.9783160322952711,0.7757785467128027,0.6742791234140715], + [0.9797001153402538,0.7840830449826989,0.6848904267589389], + [0.9810841983852365,0.7923875432525951,0.6955017301038062], + [0.9824682814302191,0.8006920415224913,0.7061130334486736], + [0.9838523644752019,0.8089965397923875,0.7167243367935409], + [0.9852364475201846,0.8173010380622837,0.7273356401384083], + [0.9866205305651673,0.8256055363321797,0.7379469434832755], + [0.98800461361015,0.833910034602076,0.748558246828143], + [0.9893886966551326,0.8422145328719722,0.7591695501730104], + [0.9907727797001153,0.8505190311418684,0.7697808535178777], + [0.9921568627450981,0.8588235294117647,0.7803921568627451], + [0.9924644367550942,0.8643598615916954,0.7890042291426375], + [0.9927720107650904,0.8698961937716263,0.7976163014225298], + [0.9930795847750865,0.8754325259515571,0.8062283737024222], + [0.9933871587850827,0.8809688581314877,0.8148404459823144], + [0.9936947327950788,0.8865051903114186,0.8234525182622069], + [0.994002306805075,0.8920415224913494,0.8320645905420991], + [0.9943098808150711,0.8975778546712803,0.8406766628219915], + [0.9946174548250672,0.903114186851211,0.8492887351018839], + [0.9949250288350635,0.9086505190311418,0.8579008073817762], + [0.9952326028450597,0.9141868512110727,0.8665128796616686], + [0.9955401768550558,0.9197231833910035,0.8751249519415609], + [0.995847750865052,0.9252595155709341,0.8837370242214532], + [0.9961553248750481,0.930795847750865,0.8923490965013456], + [0.9964628988850442,0.9363321799307959,0.900961168781238], + [0.9967704728950404,0.9418685121107266,0.9095732410611304], + [0.9970780469050365,0.9474048442906574,0.9181853133410227], + [0.9973856209150327,0.9529411764705882,0.9267973856209151], + [0.9976931949250288,0.9584775086505191,0.9354094579008074], + [0.998000768935025,0.9640138408304498,0.9440215301806998], + [0.9983083429450211,0.9695501730103805,0.9526336024605919], + [0.9986159169550173,0.9750865051903114,0.9612456747404844], + [0.9989234909650134,0.9806228373702423,0.9698577470203767], + [0.9992310649750096,0.986159169550173,0.9784698193002691], + [0.9995386389850057,0.9916955017301038,0.9870818915801615], + [0.9998462129950019,0.9972318339100346,0.9956939638600538], + [0.9976163014225298,0.9976163014225298,0.9976163014225298], + [0.9928489042675894,0.9928489042675894,0.9928489042675894], + [0.988081507112649,0.988081507112649,0.988081507112649], + [0.9833141099577086,0.9833141099577086,0.9833141099577086], + [0.9785467128027683,0.9785467128027683,0.9785467128027683], + [0.9737793156478278,0.9737793156478278,0.9737793156478278], + [0.9690119184928874,0.9690119184928874,0.9690119184928874], + [0.964244521337947,0.964244521337947,0.964244521337947], + [0.9594771241830066,0.9594771241830066,0.9594771241830066], + [0.9547097270280662,0.9547097270280662,0.9547097270280662], + [0.9499423298731258,0.9499423298731258,0.9499423298731258], + [0.9451749327181853,0.9451749327181853,0.9451749327181853], + [0.940407535563245,0.940407535563245,0.940407535563245], + [0.9356401384083045,0.9356401384083045,0.9356401384083045], + [0.9308727412533642,0.9308727412533642,0.9308727412533642], + [0.9261053440984237,0.9261053440984237,0.9261053440984237], + [0.9213379469434834,0.9213379469434834,0.9213379469434834], + [0.9165705497885429,0.9165705497885429,0.9165705497885429], + [0.9118031526336026,0.9118031526336026,0.9118031526336026], + [0.9070357554786621,0.9070357554786621,0.9070357554786621], + [0.9022683583237219,0.9022683583237219,0.9022683583237219], + [0.8975009611687813,0.8975009611687813,0.8975009611687813], + [0.892733564013841,0.892733564013841,0.892733564013841], + [0.8879661668589005,0.8879661668589005,0.8879661668589005], + [0.8831987697039602,0.8831987697039602,0.8831987697039602], + [0.8784313725490197,0.8784313725490197,0.8784313725490197], + [0.8725874663590928,0.8725874663590928,0.8725874663590928], + [0.8667435601691659,0.8667435601691659,0.8667435601691659], + [0.860899653979239,0.860899653979239,0.860899653979239], + [0.8550557477893119,0.8550557477893119,0.8550557477893119], + [0.849211841599385,0.849211841599385,0.849211841599385], + [0.8433679354094581,0.8433679354094581,0.8433679354094581], + [0.8375240292195311,0.8375240292195311,0.8375240292195311], + [0.8316801230296041,0.8316801230296041,0.8316801230296041], + [0.8258362168396772,0.8258362168396772,0.8258362168396772], + [0.8199923106497502,0.8199923106497502,0.8199923106497502], + [0.8141484044598235,0.8141484044598235,0.8141484044598235], + [0.8083044982698964,0.8083044982698964,0.8083044982698964], + [0.8024605920799694,0.8024605920799694,0.8024605920799694], + [0.7966166858900424,0.7966166858900424,0.7966166858900424], + [0.7907727797001155,0.7907727797001155,0.7907727797001155], + [0.7849288735101885,0.7849288735101885,0.7849288735101885], + [0.7790849673202616,0.7790849673202616,0.7790849673202616], + [0.7732410611303346,0.7732410611303346,0.7732410611303346], + [0.7673971549404077,0.7673971549404077,0.7673971549404077], + [0.7615532487504807,0.7615532487504807,0.7615532487504807], + [0.7557093425605538,0.7557093425605538,0.7557093425605538], + [0.7498654363706267,0.7498654363706267,0.7498654363706267], + [0.7440215301806998,0.7440215301806998,0.7440215301806998], + [0.7381776239907729,0.7381776239907729,0.7381776239907729], + [0.732333717800846,0.732333717800846,0.732333717800846], + [0.7254901960784316,0.7254901960784316,0.7254901960784316], + [0.7176470588235299,0.7176470588235299,0.7176470588235299], + [0.7098039215686276,0.7098039215686276,0.7098039215686276], + [0.7019607843137257,0.7019607843137257,0.7019607843137257], + [0.6941176470588237,0.6941176470588237,0.6941176470588237], + [0.6862745098039217,0.6862745098039217,0.6862745098039217], + [0.6784313725490198,0.6784313725490198,0.6784313725490198], + [0.6705882352941178,0.6705882352941178,0.6705882352941178], + [0.6627450980392158,0.6627450980392158,0.6627450980392158], + [0.6549019607843138,0.6549019607843138,0.6549019607843138], + [0.6470588235294119,0.6470588235294119,0.6470588235294119], + [0.6392156862745099,0.6392156862745099,0.6392156862745099], + [0.6313725490196079,0.6313725490196079,0.6313725490196079], + [0.623529411764706,0.623529411764706,0.623529411764706], + [0.615686274509804,0.615686274509804,0.615686274509804], + [0.607843137254902,0.607843137254902,0.607843137254902], + [0.6000000000000001,0.6000000000000001,0.6000000000000001], + [0.5921568627450984,0.5921568627450984,0.5921568627450984], + [0.5843137254901961,0.5843137254901961,0.5843137254901961], + [0.5764705882352942,0.5764705882352942,0.5764705882352942], + [0.5686274509803921,0.5686274509803921,0.5686274509803921], + [0.5607843137254902,0.5607843137254902,0.5607843137254902], + [0.5529411764705883,0.5529411764705883,0.5529411764705883], + [0.5450980392156863,0.5450980392156863,0.5450980392156863], + [0.5372549019607844,0.5372549019607844,0.5372549019607844], + [0.5294117647058824,0.5294117647058824,0.5294117647058824], + [0.5204921184159939,0.5204921184159939,0.5204921184159939], + [0.5115724721261053,0.5115724721261053,0.5115724721261053], + [0.5026528258362168,0.5026528258362168,0.5026528258362168], + [0.49373317954632834,0.49373317954632834,0.49373317954632834], + [0.48481353325643983,0.48481353325643983,0.48481353325643983], + [0.4758938869665513,0.4758938869665513,0.4758938869665513], + [0.4669742406766628,0.4669742406766628,0.4669742406766628], + [0.45805459438677454,0.45805459438677454,0.45805459438677454], + [0.4491349480968858,0.4491349480968858,0.4491349480968858], + [0.4402153018069973,0.4402153018069973,0.4402153018069973], + [0.4312956555171088,0.4312956555171088,0.4312956555171088], + [0.4223760092272203,0.4223760092272203,0.4223760092272203], + [0.4134563629373318,0.4134563629373318,0.4134563629373318], + [0.4045367166474433,0.4045367166474433,0.4045367166474433], + [0.3956170703575548,0.3956170703575548,0.3956170703575548], + [0.3866974240676663,0.3866974240676663,0.3866974240676663], + [0.37777777777777777,0.37777777777777777,0.37777777777777777], + [0.36885813148788926,0.36885813148788926,0.36885813148788926], + [0.35993848519800076,0.35993848519800076,0.35993848519800076], + [0.35101883890811225,0.35101883890811225,0.35101883890811225], + [0.34209919261822375,0.34209919261822375,0.34209919261822375], + [0.33317954632833524,0.33317954632833524,0.33317954632833524], + [0.32425990003844674,0.32425990003844674,0.32425990003844674], + [0.31534025374855845,0.31534025374855845,0.31534025374855845], + [0.3064206074586697,0.3064206074586697,0.3064206074586697], + [0.2980392156862745,0.2980392156862745,0.2980392156862745], + [0.2901960784313725,0.2901960784313725,0.2901960784313725], + [0.2823529411764706,0.2823529411764706,0.2823529411764706], + [0.2745098039215686,0.2745098039215686,0.2745098039215686], + [0.26666666666666666,0.26666666666666666,0.26666666666666666], + [0.2588235294117647,0.2588235294117647,0.2588235294117647], + [0.25098039215686274,0.25098039215686274,0.25098039215686274], + [0.24313725490196075,0.24313725490196075,0.24313725490196075], + [0.23529411764705882,0.23529411764705882,0.23529411764705882], + [0.22745098039215683,0.22745098039215683,0.22745098039215683], + [0.2196078431372549,0.2196078431372549,0.2196078431372549], + [0.2117647058823529,0.2117647058823529,0.2117647058823529], + [0.20392156862745098,0.20392156862745098,0.20392156862745098], + [0.196078431372549,0.196078431372549,0.196078431372549], + [0.18823529411764728,0.18823529411764728,0.18823529411764728], + [0.1803921568627451,0.1803921568627451,0.1803921568627451], + [0.17254901960784313,0.17254901960784313,0.17254901960784313], + [0.16470588235294117,0.16470588235294117,0.16470588235294117], + [0.1568627450980392,0.1568627450980392,0.1568627450980392], + [0.14901960784313725,0.14901960784313725,0.14901960784313725], + [0.1411764705882353,0.1411764705882353,0.1411764705882353], + [0.13333333333333333,0.13333333333333333,0.13333333333333333], + [0.12549019607843137,0.12549019607843137,0.12549019607843137], + [0.11764705882352941,0.11764705882352941,0.11764705882352941], + [0.10980392156862745,0.10980392156862745,0.10980392156862745], + [0.10196078431372549,0.10196078431372549,0.10196078431372549] ], + RdGy_r: [ + [0.10196078431372549,0.10196078431372549,0.10196078431372549], + [0.10980392156862745,0.10980392156862745,0.10980392156862745], + [0.11764705882352941,0.11764705882352941,0.11764705882352941], + [0.12549019607843137,0.12549019607843137,0.12549019607843137], + [0.13333333333333333,0.13333333333333333,0.13333333333333333], + [0.1411764705882353,0.1411764705882353,0.1411764705882353], + [0.14901960784313725,0.14901960784313725,0.14901960784313725], + [0.1568627450980392,0.1568627450980392,0.1568627450980392], + [0.16470588235294117,0.16470588235294117,0.16470588235294117], + [0.17254901960784313,0.17254901960784313,0.17254901960784313], + [0.1803921568627451,0.1803921568627451,0.1803921568627451], + [0.18823529411764706,0.18823529411764706,0.18823529411764706], + [0.196078431372549,0.196078431372549,0.196078431372549], + [0.20392156862745098,0.20392156862745098,0.20392156862745098], + [0.21176470588235294,0.21176470588235294,0.21176470588235294], + [0.2196078431372549,0.2196078431372549,0.2196078431372549], + [0.22745098039215686,0.22745098039215686,0.22745098039215686], + [0.2352941176470588,0.2352941176470588,0.2352941176470588], + [0.24313725490196078,0.24313725490196078,0.24313725490196078], + [0.25098039215686274,0.25098039215686274,0.25098039215686274], + [0.2588235294117647,0.2588235294117647,0.2588235294117647], + [0.2666666666666666,0.2666666666666666,0.2666666666666666], + [0.27450980392156865,0.27450980392156865,0.27450980392156865], + [0.2823529411764706,0.2823529411764706,0.2823529411764706], + [0.2901960784313725,0.2901960784313725,0.2901960784313725], + [0.29803921568627445,0.29803921568627445,0.29803921568627445], + [0.3064206074586697,0.3064206074586697,0.3064206074586697], + [0.31534025374855823,0.31534025374855823,0.31534025374855823], + [0.32425990003844674,0.32425990003844674,0.32425990003844674], + [0.33317954632833524,0.33317954632833524,0.33317954632833524], + [0.34209919261822375,0.34209919261822375,0.34209919261822375], + [0.35101883890811225,0.35101883890811225,0.35101883890811225], + [0.35993848519800076,0.35993848519800076,0.35993848519800076], + [0.3688581314878892,0.3688581314878892,0.3688581314878892], + [0.37777777777777777,0.37777777777777777,0.37777777777777777], + [0.3866974240676663,0.3866974240676663,0.3866974240676663], + [0.3956170703575548,0.3956170703575548,0.3956170703575548], + [0.40453671664744323,0.40453671664744323,0.40453671664744323], + [0.4134563629373318,0.4134563629373318,0.4134563629373318], + [0.4223760092272203,0.4223760092272203,0.4223760092272203], + [0.4312956555171088,0.4312956555171088,0.4312956555171088], + [0.44021530180699725,0.44021530180699725,0.44021530180699725], + [0.4491349480968858,0.4491349480968858,0.4491349480968858], + [0.4580545943867743,0.4580545943867743,0.4580545943867743], + [0.4669742406766628,0.4669742406766628,0.4669742406766628], + [0.47589388696655127,0.47589388696655127,0.47589388696655127], + [0.48481353325643983,0.48481353325643983,0.48481353325643983], + [0.49373317954632834,0.49373317954632834,0.49373317954632834], + [0.5026528258362168,0.5026528258362168,0.5026528258362168], + [0.5115724721261052,0.5115724721261052,0.5115724721261052], + [0.5204921184159939,0.5204921184159939,0.5204921184159939], + [0.5294117647058824,0.5294117647058824,0.5294117647058824], + [0.5372549019607843,0.5372549019607843,0.5372549019607843], + [0.5450980392156862,0.5450980392156862,0.5450980392156862], + [0.5529411764705883,0.5529411764705883,0.5529411764705883], + [0.5607843137254902,0.5607843137254902,0.5607843137254902], + [0.5686274509803921,0.5686274509803921,0.5686274509803921], + [0.5764705882352941,0.5764705882352941,0.5764705882352941], + [0.584313725490196,0.584313725490196,0.584313725490196], + [0.592156862745098,0.592156862745098,0.592156862745098], + [0.6,0.6,0.6], + [0.6078431372549018,0.6078431372549018,0.6078431372549018], + [0.6156862745098038,0.6156862745098038,0.6156862745098038], + [0.6235294117647058,0.6235294117647058,0.6235294117647058], + [0.6313725490196078,0.6313725490196078,0.6313725490196078], + [0.6392156862745098,0.6392156862745098,0.6392156862745098], + [0.6470588235294116,0.6470588235294116,0.6470588235294116], + [0.6549019607843136,0.6549019607843136,0.6549019607843136], + [0.6627450980392156,0.6627450980392156,0.6627450980392156], + [0.6705882352941175,0.6705882352941175,0.6705882352941175], + [0.6784313725490195,0.6784313725490195,0.6784313725490195], + [0.6862745098039215,0.6862745098039215,0.6862745098039215], + [0.6941176470588234,0.6941176470588234,0.6941176470588234], + [0.7019607843137253,0.7019607843137253,0.7019607843137253], + [0.7098039215686271,0.7098039215686271,0.7098039215686271], + [0.7176470588235293,0.7176470588235293,0.7176470588235293], + [0.7254901960784312,0.7254901960784312,0.7254901960784312], + [0.7323337178008457,0.7323337178008457,0.7323337178008457], + [0.7381776239907727,0.7381776239907727,0.7381776239907727], + [0.7440215301806996,0.7440215301806996,0.7440215301806996], + [0.7498654363706265,0.7498654363706265,0.7498654363706265], + [0.7557093425605536,0.7557093425605536,0.7557093425605536], + [0.7615532487504804,0.7615532487504804,0.7615532487504804], + [0.7673971549404075,0.7673971549404075,0.7673971549404075], + [0.7732410611303344,0.7732410611303344,0.7732410611303344], + [0.7790849673202613,0.7790849673202613,0.7790849673202613], + [0.7849288735101884,0.7849288735101884,0.7849288735101884], + [0.7907727797001153,0.7907727797001153,0.7907727797001153], + [0.7966166858900422,0.7966166858900422,0.7966166858900422], + [0.8024605920799692,0.8024605920799692,0.8024605920799692], + [0.808304498269896,0.808304498269896,0.808304498269896], + [0.8141484044598231,0.8141484044598231,0.8141484044598231], + [0.81999231064975,0.81999231064975,0.81999231064975], + [0.825836216839677,0.825836216839677,0.825836216839677], + [0.8316801230296039,0.8316801230296039,0.8316801230296039], + [0.837524029219531,0.837524029219531,0.837524029219531], + [0.8433679354094579,0.8433679354094579,0.8433679354094579], + [0.8492118415993848,0.8492118415993848,0.8492118415993848], + [0.8550557477893117,0.8550557477893117,0.8550557477893117], + [0.8608996539792387,0.8608996539792387,0.8608996539792387], + [0.8667435601691656,0.8667435601691656,0.8667435601691656], + [0.8725874663590927,0.8725874663590927,0.8725874663590927], + [0.8784313725490196,0.8784313725490196,0.8784313725490196], + [0.88319876970396,0.88319876970396,0.88319876970396], + [0.8879661668589004,0.8879661668589004,0.8879661668589004], + [0.8927335640138409,0.8927335640138409,0.8927335640138409], + [0.8975009611687812,0.8975009611687812,0.8975009611687812], + [0.9022683583237217,0.9022683583237217,0.9022683583237217], + [0.907035755478662,0.907035755478662,0.907035755478662], + [0.9118031526336025,0.9118031526336025,0.9118031526336025], + [0.9165705497885429,0.9165705497885429,0.9165705497885429], + [0.9213379469434833,0.9213379469434833,0.9213379469434833], + [0.9261053440984237,0.9261053440984237,0.9261053440984237], + [0.930872741253364,0.930872741253364,0.930872741253364], + [0.9356401384083044,0.9356401384083044,0.9356401384083044], + [0.9404075355632449,0.9404075355632449,0.9404075355632449], + [0.9451749327181853,0.9451749327181853,0.9451749327181853], + [0.9499423298731258,0.9499423298731258,0.9499423298731258], + [0.9547097270280661,0.9547097270280661,0.9547097270280661], + [0.9594771241830066,0.9594771241830066,0.9594771241830066], + [0.9642445213379469,0.9642445213379469,0.9642445213379469], + [0.9690119184928874,0.9690119184928874,0.9690119184928874], + [0.9737793156478277,0.9737793156478277,0.9737793156478277], + [0.9785467128027682,0.9785467128027682,0.9785467128027682], + [0.9833141099577085,0.9833141099577085,0.9833141099577085], + [0.988081507112649,0.988081507112649,0.988081507112649], + [0.9928489042675894,0.9928489042675894,0.9928489042675894], + [0.9976163014225298,0.9976163014225298,0.9976163014225298], + [0.9998462129950019,0.9972318339100346,0.9956939638600538], + [0.9995386389850057,0.9916955017301038,0.9870818915801615], + [0.9992310649750096,0.986159169550173,0.9784698193002691], + [0.9989234909650134,0.9806228373702423,0.9698577470203769], + [0.9986159169550173,0.9750865051903116,0.9612456747404847], + [0.9983083429450211,0.9695501730103806,0.9526336024605921], + [0.998000768935025,0.9640138408304498,0.9440215301806998], + [0.9976931949250288,0.9584775086505191,0.9354094579008074], + [0.9973856209150327,0.9529411764705883,0.9267973856209151], + [0.9970780469050365,0.9474048442906575,0.9181853133410228], + [0.9967704728950404,0.9418685121107266,0.9095732410611305], + [0.9964628988850442,0.9363321799307959,0.9009611687812381], + [0.9961553248750481,0.9307958477508651,0.8923490965013458], + [0.995847750865052,0.9252595155709343,0.8837370242214534], + [0.9955401768550558,0.9197231833910036,0.8751249519415611], + [0.9952326028450597,0.9141868512110727,0.8665128796616688], + [0.9949250288350635,0.9086505190311419,0.8579008073817764], + [0.9946174548250674,0.9031141868512111,0.8492887351018841], + [0.9943098808150711,0.8975778546712804,0.8406766628219917], + [0.994002306805075,0.8920415224913496,0.8320645905420994], + [0.9936947327950788,0.886505190311419,0.8234525182622072], + [0.9933871587850827,0.880968858131488,0.8148404459823146], + [0.9930795847750865,0.8754325259515572,0.8062283737024224], + [0.9927720107650904,0.8698961937716264,0.79761630142253], + [0.9924644367550942,0.8643598615916956,0.7890042291426377], + [0.9921568627450981,0.8588235294117648,0.7803921568627453], + [0.9907727797001155,0.8505190311418687,0.7697808535178781], + [0.9893886966551327,0.8422145328719725,0.7591695501730107], + [0.98800461361015,0.8339100346020764,0.7485582468281433], + [0.9866205305651673,0.8256055363321801,0.7379469434832759], + [0.9852364475201846,0.8173010380622839,0.7273356401384086], + [0.983852364475202,0.8089965397923877,0.7167243367935412], + [0.9824682814302192,0.8006920415224915,0.7061130334486739], + [0.9810841983852365,0.7923875432525953,0.6955017301038066], + [0.9797001153402538,0.7840830449826992,0.6848904267589392], + [0.9783160322952711,0.775778546712803,0.6742791234140718], + [0.9769319492502885,0.767474048442907,0.6636678200692048], + [0.9755478662053058,0.7591695501730106,0.6530565167243371], + [0.974163783160323,0.7508650519031144,0.6424452133794697], + [0.9727797001153403,0.7425605536332183,0.6318339100346023], + [0.9713956170703576,0.7342560553633221,0.6212226066897351], + [0.970011534025375,0.7259515570934258,0.6106113033448677], + [0.9686274509803923,0.7176470588235296,0.6000000000000003], + [0.9672433679354095,0.7093425605536334,0.5893886966551329], + [0.9658592848904268,0.7010380622837373,0.5787773933102656], + [0.9644752018454441,0.6927335640138411,0.5681660899653982], + [0.9630911188004614,0.6844290657439449,0.5575547866205308], + [0.9617070357554788,0.6761245674740487,0.5469434832756634], + [0.9603229527104961,0.6678200692041525,0.5363321799307961], + [0.9589388696655133,0.6595155709342564,0.5257208765859287], + [0.9575547866205306,0.6512110726643601,0.5151095732410613], + [0.9545559400230682,0.6417531718569784,0.5057285659361785], + [0.949942329873126,0.6311418685121113,0.4975778546712807], + [0.9453287197231836,0.6205305651672437,0.4894271434063823], + [0.9407151095732412,0.6099192618223763,0.4812764321414842], + [0.9361014994232989,0.599307958477509,0.4731257208765861], + [0.9314878892733566,0.5886966551326416,0.464975009611688], + [0.9268742791234142,0.5780853517877742,0.45682429834678984], + [0.9222606689734718,0.5674740484429068,0.4486735870818917], + [0.9176470588235295,0.5568627450980395,0.44052287581699356], + [0.9130334486735872,0.5462514417531721,0.4323721645520955], + [0.9084198385236448,0.5356401384083047,0.42422145328719735], + [0.9038062283737025,0.5250288350634373,0.4160707420222992], + [0.8991926182237602,0.51441753171857,0.4079200307574011], + [0.8945790080738178,0.5038062283737026,0.39976931949250294], + [0.8899653979238755,0.4931949250288352,0.39161860822760486], + [0.8853517877739332,0.48258362168396784,0.38346789696270667], + [0.8807381776239909,0.47197231833910047,0.3753171856978086], + [0.8761245674740487,0.4613610149942334,0.3671664744329107], + [0.8715109573241062,0.4507497116493657,0.3590157631680123], + [0.8668973471741639,0.44013840830449835,0.35086505190311423], + [0.8622837370242215,0.429527104959631,0.3427143406382161], + [0.8576701268742791,0.4189158016147636,0.33456362937331796], + [0.8530565167243368,0.40830449826989623,0.3264129181084199], + [0.8484429065743945,0.39769319492502886,0.3182622068435217], + [0.8438292964244521,0.3870818915801615,0.3101114955786236], + [0.8392156862745098,0.3764705882352941,0.30196078431372547], + [0.833679354094579,0.3653979238754325,0.29673202614379085], + [0.8281430219146482,0.3543252595155709,0.2915032679738562], + [0.8226066897347174,0.34325259515570933,0.28627450980392155], + [0.8170703575547866,0.33217993079584773,0.28104575163398693], + [0.8115340253748559,0.32110726643598614,0.27581699346405225], + [0.8059976931949251,0.31003460207612454,0.27058823529411763], + [0.8004613610149942,0.29896193771626295,0.265359477124183], + [0.7949250288350636,0.2878892733564017,0.2601307189542485], + [0.7893886966551327,0.2768166089965398,0.2549019607843137], + [0.7838523644752018,0.26574394463667816,0.2496732026143791], + [0.778316032295271,0.2546712802768166,0.24444444444444444], + [0.7727797001153403,0.243598615916955,0.2392156862745098], + [0.7672433679354095,0.23252595155709344,0.23398692810457516], + [0.7617070357554786,0.2214532871972318,0.22875816993464052], + [0.7561707035755478,0.21038062283737025,0.22352941176470587], + [0.7506343713956171,0.19930795847750865,0.21830065359477124], + [0.7450980392156863,0.18823529411764706,0.21307189542483662], + [0.7395617070357554,0.17716262975778546,0.20784313725490194], + [0.7340253748558246,0.16608996539792387,0.20261437908496732], + [0.7284890426758939,0.15501730103806227,0.1973856209150327], + [0.7229527104959631,0.1439446366782007,0.19215686274509805], + [0.7174163783160322,0.13287197231833908,0.1869281045751634], + [0.7118800461361015,0.12179930795847749,0.18169934640522878], + [0.7063437139561708,0.11072664359861623,0.17647058823529427], + [0.7008073817762399,0.09965397923875435,0.1712418300653595], + [0.6922722029988465,0.0922722029988466,0.1677047289504037], + [0.6807381776239907,0.08858131487889273,0.16585928489042678], + [0.6692041522491349,0.08489042675893888,0.16401384083044984], + [0.6576701268742791,0.081199538638985,0.1621683967704729], + [0.6461361014994232,0.07750865051903114,0.16032295271049596], + [0.6346020761245674,0.07381776239907728,0.15847750865051904], + [0.6230680507497116,0.07012687427912341,0.1566320645905421], + [0.6115340253748558,0.06643598615916954,0.1547866205305652], + [0.6,0.06274509803921569,0.15294117647058825], + [0.5884659746251442,0.05905420991926182,0.1510957324106113], + [0.5769319492502883,0.05536332179930796,0.14925028835063436], + [0.5653979238754325,0.05167243367935409,0.14740484429065745], + [0.5538638985005767,0.047981545559400235,0.1455594002306805], + [0.5423298731257209,0.044290657439446365,0.1437139561707036], + [0.5307958477508654,0.04059976931949261,0.1418685121107267], + [0.5192618223760093,0.03690888119953864,0.1400230680507497], + [0.5077277970011533,0.03321799307958477,0.13817762399077277], + [0.4961937716262976,0.029527104959630915,0.13633217993079585], + [0.48465974625144176,0.025836216839677045,0.1344867358708189], + [0.47312572087658594,0.02214532871972319,0.132641291810842], + [0.46159169550173007,0.01845444059976932,0.13079584775086506], + [0.45005767012687425,0.01476355247981545,0.12895040369088812], + [0.43852364475201844,0.011072664359861595,0.12710495963091117], + [0.4269896193771627,0.007381776239907739,0.12525951557093426], + [0.4154555940023068,0.0036908881199538557,0.12341407151095732], + [0.403921568627451,0.0,0.12156862745098039] ], + RdPu: [ + [1.0,0.9686274509803922,0.9529411764705882], + [0.9997539407920031,0.9657977700884275,0.950234525182622], + [0.9995078815840062,0.9629680891964629,0.9475278738946559], + [0.9992618223760092,0.9601384083044983,0.9448212226066897], + [0.9990157631680123,0.9573087274125336,0.9421145713187236], + [0.9987697039600154,0.954479046520569,0.9394079200307573], + [0.9985236447520185,0.9516493656286044,0.9367012687427912], + [0.9982775855440216,0.9488196847366398,0.933994617454825], + [0.9980315263360247,0.9459900038446751,0.9312879661668588], + [0.9977854671280277,0.9431603229527105,0.9285813148788927], + [0.9975394079200308,0.9403306420607459,0.9258746635909265], + [0.9972933487120338,0.9375009611687812,0.9231680123029604], + [0.9970472895040369,0.9346712802768166,0.9204613610149942], + [0.99680123029604,0.931841599384852,0.917754709727028], + [0.996555171088043,0.9290119184928873,0.9150480584390619], + [0.9963091118800461,0.9261822376009228,0.9123414071510957], + [0.9960630526720492,0.9233525567089581,0.9096347558631296], + [0.9958169934640523,0.9205228758169934,0.9069281045751634], + [0.9955709342560554,0.9176931949250289,0.9042214532871973], + [0.9953248750480584,0.9148635140330642,0.9015148019992311], + [0.9950788158400615,0.9120338331410995,0.8988081507112649], + [0.9948327566320646,0.909204152249135,0.8961014994232988], + [0.9945866974240677,0.9063744713571703,0.8933948481353325], + [0.9943406382160708,0.9035447904652056,0.8906881968473664], + [0.9940945790080739,0.9007151095732411,0.8879815455594002], + [0.9938485198000769,0.8978854286812764,0.8852748942714341], + [0.99360246059208,0.8950557477893117,0.8825682429834679], + [0.9933564013840831,0.8922260668973472,0.8798615916955017], + [0.9931103421760862,0.8893963860053825,0.8771549404075356], + [0.9928642829680893,0.886566705113418,0.8744482891195694], + [0.9926182237600923,0.8837370242214533,0.8717416378316033], + [0.9923721645520954,0.8809073433294886,0.8690349865436371], + [0.9921414840445982,0.8780161476355248,0.8662206843521723], + [0.9920184544405998,0.8746943483275663,0.8626528258362169], + [0.9918954248366013,0.8713725490196078,0.8590849673202615], + [0.9917723952326029,0.8680507497116493,0.8555171088043061], + [0.9916493656286044,0.8647289504036909,0.8519492502883507], + [0.9915263360246059,0.8614071510957324,0.8483813917723952], + [0.9914033064206075,0.8580853517877739,0.8448135332564398], + [0.991280276816609,0.8547635524798155,0.8412456747404844], + [0.9911572472126106,0.851441753171857,0.8376778162245291], + [0.9910342176086121,0.8481199538638985,0.8341099577085737], + [0.9909111880046136,0.84479815455594,0.8305420991926182], + [0.9907881584006152,0.8414763552479816,0.8269742406766628], + [0.9906651287966167,0.8381545559400231,0.8234063821607074], + [0.9905420991926183,0.8348327566320646,0.8198385236447521], + [0.9904190695886198,0.8315109573241061,0.8162706651287966], + [0.9902960399846213,0.8281891580161477,0.8127028066128412], + [0.9901730103806229,0.8248673587081892,0.8091349480968858], + [0.9900499807766244,0.8215455594002308,0.8055670895809305], + [0.989926951172626,0.8182237600922723,0.8019992310649751], + [0.9898039215686275,0.8149019607843138,0.7984313725490196], + [0.989680891964629,0.8115801614763553,0.7948635140330642], + [0.9895578623606306,0.8082583621683969,0.7912956555171088], + [0.9894348327566321,0.8049365628604384,0.7877277970011534], + [0.9893118031526337,0.8016147635524798,0.784159938485198], + [0.9891887735486352,0.7982929642445213,0.7805920799692426], + [0.9890657439446368,0.794971164936563,0.7770242214532872], + [0.9889427143406383,0.7916493656286044,0.7734563629373318], + [0.9888196847366398,0.7883275663206459,0.7698885044213764], + [0.9886966551326414,0.7850057670126874,0.766320645905421], + [0.9885736255286429,0.781683967704729,0.7627527873894656], + [0.9884505959246445,0.7783621683967705,0.7591849288735102], + [0.988327566320646,0.775040369088812,0.7556170703575548], + [0.9881737793156479,0.7713802383698578,0.7526028450595924], + [0.987927720107651,0.7667051134179163,0.7512495194156094], + [0.987681660899654,0.7620299884659747,0.7498961937716263], + [0.9874356016916571,0.7573548635140331,0.7485428681276433], + [0.9871895424836602,0.7526797385620916,0.7471895424836601], + [0.9869434832756633,0.7480046136101499,0.745836216839677], + [0.9866974240676664,0.7433294886582084,0.744482891195694], + [0.9864513648596693,0.7386543637062668,0.7431295655517108], + [0.9862053056516724,0.7339792387543252,0.7417762399077278], + [0.9859592464436755,0.7293041138023837,0.7404229142637447], + [0.9857131872356786,0.7246289888504422,0.7390695886197617], + [0.9854671280276817,0.7199538638985006,0.7377162629757785], + [0.9852210688196847,0.715278738946559,0.7363629373317955], + [0.9849750096116878,0.7106036139946175,0.7350096116878124], + [0.9847289504036909,0.7059284890426759,0.7336562860438293], + [0.984482891195694,0.7012533640907344,0.7323029603998462], + [0.9842368319876971,0.6965782391387928,0.7309496347558632], + [0.9839907727797002,0.6919031141868512,0.72959630911188], + [0.9837447135717032,0.6872279892349098,0.728242983467897], + [0.9834986543637062,0.6825528642829681,0.7268896578239139], + [0.9832525951557093,0.6778777393310266,0.7255363321799309], + [0.9830065359477124,0.673202614379085,0.7241830065359477], + [0.9827604767397154,0.6685274894271435,0.7228296808919646], + [0.9825144175317185,0.6638523644752019,0.7214763552479816], + [0.9822683583237216,0.6591772395232603,0.7201230296039984], + [0.9820222991157247,0.6545021145713188,0.7187697039600154], + [0.9817762399077278,0.6498269896193772,0.7174163783160323], + [0.9815301806997309,0.6451518646674357,0.7160630526720493], + [0.9812841214917339,0.640476739715494,0.7147097270280661], + [0.981038062283737,0.6358016147635525,0.7133564013840831], + [0.9807920030757401,0.6311264898116109,0.7120030757401], + [0.9805459438677432,0.6264513648596693,0.7106497500961169], + [0.9802537485582468,0.6209919261822376,0.708881199538639], + [0.9798846597462514,0.6142252979623222,0.7064206074586697], + [0.979515570934256,0.6074586697424069,0.7039600153787006], + [0.9791464821222606,0.6006920415224913,0.7014994232987313], + [0.9787773933102653,0.593925413302576,0.6990388312187621], + [0.9784083044982699,0.5871587850826605,0.6965782391387928], + [0.9780392156862745,0.5803921568627451,0.6941176470588235], + [0.9776701268742791,0.5736255286428297,0.6916570549788543], + [0.9773010380622837,0.5668589004229143,0.689196462898885], + [0.9769319492502884,0.5600922722029988,0.6867358708189159], + [0.976562860438293,0.5533256439830835,0.6842752787389466], + [0.9761937716262975,0.546559015763168,0.6818146866589774], + [0.9758246828143021,0.5397923875432526,0.6793540945790081], + [0.9754555940023067,0.5330257593233372,0.6768935024990388], + [0.9750865051903114,0.5262591311034217,0.6744329104190696], + [0.974717416378316,0.5194925028835063,0.6719723183391003], + [0.9743483275663206,0.512725874663591,0.6695117262591311], + [0.9739792387543252,0.5059592464436755,0.6670511341791618], + [0.9736101499423299,0.4991926182237602,0.6645905420991927], + [0.9732410611303345,0.4924259900038447,0.6621299500192234], + [0.9728719723183391,0.48565936178392927,0.6596693579392541], + [0.9725028835063437,0.47889273356401385,0.6572087658592849], + [0.9721337946943484,0.47212610534409843,0.6547481737793156], + [0.971764705882353,0.465359477124183,0.6522875816993464], + [0.9713956170703576,0.4585928489042676,0.6498269896193771], + [0.9710265282583621,0.4518262206843522,0.647366397539408], + [0.9706574394463667,0.4450595924644368,0.6449058054594388], + [0.9702883506343714,0.43829296424452135,0.6424452133794695], + [0.969919261822376,0.43152633602460594,0.6399846212995002], + [0.9695501730103806,0.4247597078046905,0.637524029219531], + [0.9691810841983852,0.4179930795847751,0.6350634371395617], + [0.9688119953863898,0.4112264513648597,0.6326028450595924], + [0.9670280661284122,0.40464436755094196,0.6307574009996155], + [0.9638292964244521,0.3982468281430219,0.6295271049596309], + [0.9606305267204921,0.3918492887351019,0.6282968089196462], + [0.9574317570165322,0.38545174932718185,0.6270665128796616], + [0.9542329873125722,0.379054209919262,0.625836216839677], + [0.9510342176086121,0.37265667051134177,0.6246059207996925], + [0.947835447904652,0.3662591311034218,0.6233756247597078], + [0.9446366782006921,0.35986159169550175,0.6221453287197232], + [0.941437908496732,0.3534640522875817,0.6209150326797386], + [0.938239138792772,0.34706651287966167,0.6196847366397539], + [0.935040369088812,0.34066897347174163,0.6184544405997693], + [0.931841599384852,0.3342714340638216,0.6172241445597847], + [0.928642829680892,0.32787389465590155,0.6159938485198001], + [0.925444059976932,0.32147635524798157,0.6147635524798154], + [0.922245290272972,0.31507881584006153,0.6135332564398308], + [0.9190465205690119,0.3086812764321415,0.6123029603998462], + [0.9158477508650519,0.30228373702422145,0.6110726643598616], + [0.9126489811610919,0.2958861976163014,0.6098423683198769], + [0.9094502114571319,0.2894886582083814,0.6086120722798923], + [0.9062514417531718,0.28309111880046134,0.6073817762399077], + [0.9030526720492119,0.27669357939254147,0.6061514801999232], + [0.8998539023452519,0.27029603998462126,0.6049211841599385], + [0.8966551326412918,0.2638985005767013,0.6036908881199539], + [0.8934563629373318,0.2575009611687812,0.6024605920799693], + [0.8902575932333718,0.2511034217608612,0.6012302960399846], + [0.8870588235294118,0.24470588235294116,0.6], + [0.8838600538254517,0.23830834294502112,0.5987697039600154], + [0.8806612841214918,0.2319108035371011,0.5975394079200308], + [0.8774625144175318,0.22551326412918107,0.5963091118800461], + [0.8742637447135717,0.21911572472126103,0.5950788158400615], + [0.8710649750096117,0.21271818531334102,0.5938485198000769], + [0.8678662053056517,0.20632064590542099,0.5926182237600923], + [0.8630526720492119,0.2,0.5902345251826221], + [0.8572702806612842,0.19372549019607843,0.5871587850826605], + [0.8514878892733564,0.18745098039215685,0.5840830449826989], + [0.8457054978854287,0.1811764705882353,0.5810073048827374], + [0.8399231064975011,0.17490196078431391,0.577931564782776], + [0.8341407151095732,0.16862745098039214,0.5748558246828143], + [0.8283583237216455,0.1623529411764706,0.5717800845828528], + [0.8225759323337178,0.156078431372549,0.5687043444828912], + [0.8167935409457902,0.14980392156862746,0.5656286043829296], + [0.8110111495578624,0.14352941176470588,0.5625528642829681], + [0.8052287581699347,0.13725490196078433,0.5594771241830065], + [0.799446366782007,0.13098039215686275,0.556401384083045], + [0.7936639753940793,0.12470588235294117,0.5533256439830835], + [0.7878815840061515,0.1184313725490196,0.5502499038831219], + [0.7820991926182238,0.11215686274509803,0.5471741637831603], + [0.7763168012302961,0.10588235294117647,0.5440984236831988], + [0.7705344098423683,0.09960784313725489,0.5410226835832372], + [0.7647520184544406,0.09333333333333332,0.5379469434832757], + [0.7589696270665129,0.08705882352941174,0.5348712033833141], + [0.7531872356785851,0.08078431372549018,0.5317954632833526], + [0.7474048442906576,0.07450980392156878,0.5287197231833911], + [0.7416224529027298,0.06823529411764703,0.5256439830834294], + [0.735840061514802,0.06196078431372548,0.5225682429834679], + [0.7300576701268743,0.0556862745098039,0.5194925028835063], + [0.7242752787389466,0.04941176470588232,0.5164167627835448], + [0.7184928873510188,0.04313725490196077,0.5133410226835833], + [0.7127104959630911,0.03686274509803919,0.5102652825836217], + [0.7069281045751634,0.03058823529411764,0.5071895424836601], + [0.7011457131872357,0.02431372549019606,0.5041138023836986], + [0.6953633217993079,0.01803921568627448,0.501038062283737], + [0.6895809304113802,0.011764705882352927,0.4979623221837755], + [0.6837985390234526,0.0054901960784313475,0.4948865820838139], + [0.6775547866205306,0.00392156862745098,0.49347174163783164], + [0.6711572472126106,0.00392156862745098,0.49261053440984237], + [0.6647597078046905,0.00392156862745098,0.49174932718185316], + [0.6583621683967705,0.00392156862745098,0.49088811995386394], + [0.6519646289888507,0.00392156862745098,0.49002691272587473], + [0.6455670895809305,0.00392156862745098,0.48916570549788546], + [0.6391695501730104,0.00392156862745098,0.4883044982698962], + [0.6327720107650904,0.00392156862745098,0.487443291041907], + [0.6263744713571703,0.00392156862745098,0.48658208381391777], + [0.6199769319492503,0.00392156862745098,0.4857208765859285], + [0.6135793925413303,0.00392156862745098,0.4848596693579393], + [0.6071818531334102,0.00392156862745098,0.48399846212995], + [0.6007843137254902,0.00392156862745098,0.4831372549019608], + [0.5943867743175701,0.00392156862745098,0.4822760476739716], + [0.5879892349096502,0.00392156862745098,0.4814148404459823], + [0.5815916955017302,0.00392156862745098,0.4805536332179931], + [0.5751941560938101,0.00392156862745098,0.47969242599000383], + [0.5687966166858901,0.00392156862745098,0.4788312187620146], + [0.56239907727797,0.00392156862745098,0.4779700115340254], + [0.55600153787005,0.00392156862745098,0.47710880430603614], + [0.5496039984621301,0.00392156862745098,0.4762475970780469], + [0.54320645905421,0.00392156862745098,0.47538638985005766], + [0.53680891964629,0.00392156862745098,0.47452518262206844], + [0.5304113802383699,0.00392156862745098,0.47366397539407923], + [0.5240138408304499,0.00392156862745098,0.47280276816608996], + [0.5176163014225298,0.00392156862745098,0.47194156093810075], + [0.5112187620146098,0.00392156862745098,0.4710803537101115], + [0.5048212226066897,0.00392156862745098,0.47021914648212226], + [0.49842368319876973,0.00392156862745098,0.46935793925413305], + [0.4920261437908497,0.00392156862745098,0.4684967320261438], + [0.48562860438292965,0.00392156862745098,0.46763552479815457], + [0.47923106497500967,0.00392156862745098,0.46677431757016535], + [0.47315647827758556,0.003813917723952326,0.4652672049211842], + [0.4671280276816609,0.003690888119953864,0.46366782006920415], + [0.4610995770857363,0.003567858515955402,0.4620684352172241], + [0.45507112648981163,0.0034448289119569397,0.46046905036524416], + [0.44904267589388713,0.003321799307958481,0.4588696655132642], + [0.4430142252979623,0.003198769703960015,0.4572702806612841], + [0.4369857747020377,0.0030757400999615533,0.45567089580930414], + [0.43095732410611304,0.002952710495963091,0.4540715109573241], + [0.4249288735101884,0.002829680891964629,0.4524721261053441], + [0.41890042291426377,0.0027066512879661666,0.4508727412533641], + [0.4128719723183391,0.002583621683967705,0.4492733564013841], + [0.40684352172241445,0.0024605920799692423,0.4476739715494041], + [0.40081507112648984,0.0023375624759707806,0.44607458669742406], + [0.3947866205305652,0.002214532871972318,0.4444752018454441], + [0.3887581699346405,0.0020915032679738564,0.44287581699346407], + [0.3827297193387159,0.001968473663975394,0.44127643214148404], + [0.37670126874279125,0.0018454440599769317,0.4396770472895041], + [0.3706728181468666,0.0017224144559784696,0.43807766243752405], + [0.36464436755094193,0.0015993848519800075,0.43647827758554403], + [0.35861591695501727,0.0014763552479815454,0.43487889273356406], + [0.3525874663590928,0.0013533256439830867,0.4332795078815841], + [0.346559015763168,0.0012302960399846212,0.431680123029604], + [0.34053056516724334,0.001107266435986159,0.430080738177624], + [0.33450211457131873,0.000984236831987697,0.428481353325644], + [0.32847366397539407,0.0008612072279892348,0.426881968473664], + [0.3224452133794694,0.0007381776239907727,0.425282583621684], + [0.3164167627835448,0.0006151480199923106,0.42368319876970395], + [0.31038831218762014,0.0004921184159938485,0.422083813917724], + [0.3043598615916955,0.00036908881199538635,0.42048442906574396], + [0.2983314109957709,0.00024605920799692423,0.41888504421376394], + [0.29230296039984616,0.00012302960399846212,0.41728565936178397], + [0.28627450980392155,0.0,0.41568627450980394] ], + RdPu_r: [ + [0.28627450980392155,0.0,0.41568627450980394], + [0.2923029603998462,0.00012302960399846212,0.41728565936178397], + [0.2983314109957708,0.00024605920799692423,0.41888504421376394], + [0.3043598615916955,0.0003690888119953864,0.42048442906574396], + [0.31038831218762014,0.0004921184159938485,0.422083813917724], + [0.3164167627835448,0.0006151480199923106,0.423683198769704], + [0.3224452133794694,0.0007381776239907728,0.425282583621684], + [0.32847366397539407,0.0008612072279892349,0.426881968473664], + [0.33450211457131873,0.000984236831987697,0.428481353325644], + [0.34053056516724334,0.001107266435986159,0.430080738177624], + [0.346559015763168,0.0012302960399846212,0.431680123029604], + [0.35258746635909266,0.0013533256439830835,0.43327950788158404], + [0.35861591695501727,0.0014763552479815456,0.434878892733564], + [0.36464436755094193,0.0015993848519800077,0.43647827758554403], + [0.3706728181468666,0.0017224144559784698,0.43807766243752405], + [0.37670126874279125,0.001845444059976932,0.4396770472895041], + [0.3827297193387159,0.001968473663975394,0.44127643214148404], + [0.3887581699346405,0.002091503267973856,0.44287581699346407], + [0.3947866205305652,0.002214532871972318,0.4444752018454441], + [0.40081507112648984,0.00233756247597078,0.44607458669742406], + [0.40684352172241445,0.0024605920799692423,0.4476739715494041], + [0.4128719723183391,0.0025836216839677044,0.4492733564013841], + [0.41890042291426377,0.002706651287966167,0.4508727412533641], + [0.4249288735101884,0.002829680891964629,0.4524721261053441], + [0.43095732410611304,0.0029527104959630912,0.4540715109573241], + [0.4369857747020377,0.0030757400999615533,0.45567089580930414], + [0.4430142252979623,0.0031987697039600155,0.4572702806612841], + [0.44904267589388697,0.0033217993079584776,0.45886966551326414], + [0.45507112648981163,0.0034448289119569397,0.46046905036524416], + [0.46109957708573623,0.003567858515955402,0.4620684352172242], + [0.46712802768166095,0.003690888119953864,0.46366782006920415], + [0.47315647827758556,0.003813917723952326,0.4652672049211842], + [0.4792310649750096,0.00392156862745098,0.46677431757016535], + [0.4856286043829296,0.00392156862745098,0.46763552479815457], + [0.4920261437908497,0.00392156862745098,0.4684967320261438], + [0.49842368319876973,0.00392156862745098,0.46935793925413305], + [0.5048212226066897,0.00392156862745098,0.47021914648212226], + [0.5112187620146097,0.00392156862745098,0.4710803537101115], + [0.5176163014225298,0.00392156862745098,0.47194156093810075], + [0.5240138408304499,0.00392156862745098,0.47280276816608996], + [0.5304113802383699,0.00392156862745098,0.47366397539407923], + [0.5368089196462899,0.00392156862745098,0.47452518262206844], + [0.54320645905421,0.00392156862745098,0.47538638985005766], + [0.5496039984621299,0.00392156862745098,0.4762475970780469], + [0.55600153787005,0.00392156862745098,0.47710880430603614], + [0.56239907727797,0.00392156862745098,0.4779700115340254], + [0.5687966166858901,0.00392156862745098,0.4788312187620146], + [0.5751941560938101,0.00392156862745098,0.47969242599000383], + [0.5815916955017302,0.00392156862745098,0.4805536332179931], + [0.58798923490965,0.00392156862745098,0.4814148404459823], + [0.5943867743175701,0.00392156862745098,0.4822760476739716], + [0.6007843137254902,0.00392156862745098,0.4831372549019608], + [0.6071818531334102,0.00392156862745098,0.48399846212995], + [0.6135793925413302,0.00392156862745098,0.4848596693579393], + [0.6199769319492503,0.00392156862745098,0.4857208765859285], + [0.6263744713571704,0.00392156862745098,0.48658208381391777], + [0.6327720107650904,0.00392156862745098,0.487443291041907], + [0.6391695501730104,0.00392156862745098,0.4883044982698962], + [0.6455670895809305,0.00392156862745098,0.48916570549788546], + [0.6519646289888504,0.00392156862745098,0.4900269127258747], + [0.6583621683967704,0.00392156862745098,0.49088811995386394], + [0.6647597078046905,0.00392156862745098,0.49174932718185316], + [0.6711572472126106,0.00392156862745098,0.49261053440984237], + [0.6775547866205306,0.00392156862745098,0.49347174163783164], + [0.6837985390234526,0.005490196078431373,0.4948865820838139], + [0.6895809304113802,0.011764705882352941,0.4979623221837755], + [0.6953633217993079,0.018039215686274424,0.501038062283737], + [0.7011457131872357,0.02431372549019608,0.5041138023836986], + [0.7069281045751634,0.03058823529411765,0.5071895424836601], + [0.7127104959630911,0.03686274509803922,0.5102652825836217], + [0.7184928873510189,0.043137254901960784,0.5133410226835833], + [0.7242752787389466,0.049411764705882356,0.5164167627835448], + [0.7300576701268743,0.05568627450980393,0.5194925028835063], + [0.735840061514802,0.061960784313725495,0.5225682429834679], + [0.7416224529027297,0.06823529411764698,0.5256439830834294], + [0.7474048442906575,0.07450980392156864,0.528719723183391], + [0.7531872356785851,0.0807843137254902,0.5317954632833526], + [0.7589696270665129,0.08705882352941177,0.5348712033833142], + [0.7647520184544406,0.09333333333333334,0.5379469434832757], + [0.7705344098423683,0.09960784313725492,0.5410226835832372], + [0.7763168012302961,0.10588235294117647,0.5440984236831988], + [0.7820991926182238,0.11215686274509803,0.5471741637831603], + [0.7878815840061514,0.11843137254901952,0.5502499038831219], + [0.7936639753940792,0.12470588235294118,0.5533256439830835], + [0.799446366782007,0.13098039215686275,0.556401384083045], + [0.8052287581699347,0.13725490196078433,0.5594771241830065], + [0.8110111495578624,0.1435294117647059,0.5625528642829681], + [0.81679354094579,0.14980392156862743,0.5656286043829296], + [0.8225759323337178,0.156078431372549,0.5687043444828912], + [0.8283583237216455,0.1623529411764706,0.5717800845828528], + [0.8341407151095732,0.16862745098039206,0.5748558246828143], + [0.839923106497501,0.17490196078431375,0.5779315647827759], + [0.8457054978854287,0.18117647058823527,0.5810073048827374], + [0.8514878892733564,0.18745098039215685,0.5840830449826989], + [0.8572702806612842,0.19372549019607843,0.5871587850826605], + [0.8630526720492119,0.2,0.5902345251826221], + [0.8678662053056517,0.20632064590542099,0.5926182237600923], + [0.8710649750096117,0.21271818531334102,0.5938485198000769], + [0.8742637447135717,0.21911572472126095,0.5950788158400615], + [0.8774625144175318,0.22551326412918107,0.5963091118800461], + [0.8806612841214918,0.2319108035371011,0.5975394079200308], + [0.8838600538254517,0.23830834294502115,0.5987697039600154], + [0.8870588235294118,0.24470588235294116,0.6], + [0.8902575932333718,0.2511034217608612,0.6012302960399846], + [0.8934563629373318,0.25750096116878124,0.6024605920799693], + [0.8966551326412918,0.2638985005767013,0.6036908881199539], + [0.8998539023452518,0.2702960399846212,0.6049211841599385], + [0.9030526720492119,0.27669357939254136,0.6061514801999232], + [0.9062514417531718,0.28309111880046134,0.6073817762399077], + [0.9094502114571319,0.2894886582083814,0.6086120722798923], + [0.9126489811610919,0.2958861976163014,0.6098423683198769], + [0.9158477508650519,0.30228373702422145,0.6110726643598616], + [0.9190465205690119,0.3086812764321415,0.6123029603998462], + [0.922245290272972,0.3150788158400615,0.6135332564398308], + [0.9254440599769319,0.32147635524798146,0.6147635524798154], + [0.928642829680892,0.32787389465590155,0.6159938485198001], + [0.931841599384852,0.3342714340638216,0.6172241445597847], + [0.935040369088812,0.34066897347174163,0.6184544405997693], + [0.938239138792772,0.3470665128796616,0.6196847366397539], + [0.941437908496732,0.3534640522875817,0.6209150326797386], + [0.9446366782006921,0.3598615916955017,0.6221453287197232], + [0.947835447904652,0.36625913110342173,0.6233756247597078], + [0.9510342176086121,0.37265667051134166,0.6246059207996923], + [0.9542329873125721,0.3790542099192618,0.625836216839677], + [0.957431757016532,0.38545174932718185,0.6270665128796616], + [0.9606305267204921,0.39184928873510183,0.6282968089196462], + [0.9638292964244521,0.3982468281430219,0.6295271049596309], + [0.9670280661284122,0.4046443675509419,0.6307574009996155], + [0.9688119953863898,0.4112264513648597,0.6326028450595924], + [0.9691810841983852,0.4179930795847751,0.6350634371395617], + [0.9695501730103806,0.4247597078046905,0.6375240292195309], + [0.969919261822376,0.43152633602460594,0.6399846212995002], + [0.9702883506343714,0.43829296424452113,0.6424452133794694], + [0.9706574394463667,0.44505959246443677,0.6449058054594387], + [0.9710265282583621,0.4518262206843522,0.647366397539408], + [0.9713956170703576,0.4585928489042676,0.6498269896193771], + [0.971764705882353,0.465359477124183,0.6522875816993464], + [0.9721337946943484,0.47212610534409843,0.6547481737793156], + [0.9725028835063437,0.47889273356401385,0.6572087658592849], + [0.9728719723183391,0.48565936178392927,0.6596693579392541], + [0.9732410611303345,0.4924259900038447,0.6621299500192234], + [0.9736101499423299,0.4991926182237601,0.6645905420991927], + [0.9739792387543252,0.5059592464436755,0.6670511341791618], + [0.9743483275663206,0.512725874663591,0.6695117262591311], + [0.974717416378316,0.5194925028835063,0.6719723183391003], + [0.9750865051903114,0.5262591311034218,0.6744329104190696], + [0.9754555940023067,0.5330257593233372,0.6768935024990388], + [0.9758246828143021,0.5397923875432526,0.6793540945790081], + [0.9761937716262975,0.5465590157631679,0.6818146866589773], + [0.976562860438293,0.5533256439830835,0.6842752787389466], + [0.9769319492502884,0.5600922722029988,0.6867358708189159], + [0.9773010380622837,0.5668589004229143,0.689196462898885], + [0.9776701268742791,0.5736255286428297,0.6916570549788543], + [0.9780392156862745,0.5803921568627451,0.6941176470588235], + [0.9784083044982699,0.5871587850826605,0.6965782391387928], + [0.9787773933102653,0.593925413302576,0.6990388312187621], + [0.9791464821222606,0.6006920415224913,0.7014994232987313], + [0.979515570934256,0.6074586697424068,0.7039600153787006], + [0.9798846597462514,0.6142252979623222,0.7064206074586697], + [0.9802537485582468,0.6209919261822376,0.708881199538639], + [0.9805459438677432,0.6264513648596693,0.7106497500961169], + [0.9807920030757401,0.6311264898116109,0.7120030757401], + [0.981038062283737,0.6358016147635525,0.7133564013840831], + [0.9812841214917339,0.640476739715494,0.7147097270280661], + [0.9815301806997309,0.6451518646674355,0.7160630526720492], + [0.9817762399077278,0.6498269896193771,0.7174163783160323], + [0.9820222991157247,0.6545021145713187,0.7187697039600154], + [0.9822683583237216,0.6591772395232602,0.7201230296039984], + [0.9825144175317185,0.6638523644752019,0.7214763552479816], + [0.9827604767397154,0.6685274894271435,0.7228296808919646], + [0.9830065359477124,0.673202614379085,0.7241830065359477], + [0.9832525951557093,0.6778777393310266,0.7255363321799309], + [0.9834986543637062,0.6825528642829681,0.7268896578239139], + [0.9837447135717032,0.6872279892349097,0.728242983467897], + [0.9839907727797002,0.6919031141868512,0.72959630911188], + [0.9842368319876971,0.6965782391387928,0.7309496347558632], + [0.984482891195694,0.7012533640907344,0.7323029603998462], + [0.9847289504036909,0.7059284890426759,0.7336562860438293], + [0.9849750096116878,0.7106036139946175,0.7350096116878124], + [0.9852210688196847,0.715278738946559,0.7363629373317955], + [0.9854671280276817,0.7199538638985005,0.7377162629757785], + [0.9857131872356786,0.7246289888504421,0.7390695886197617], + [0.9859592464436755,0.7293041138023837,0.7404229142637447], + [0.9862053056516724,0.7339792387543252,0.7417762399077278], + [0.9864513648596693,0.7386543637062668,0.7431295655517108], + [0.9866974240676664,0.7433294886582085,0.744482891195694], + [0.9869434832756633,0.7480046136101499,0.745836216839677], + [0.9871895424836602,0.7526797385620916,0.7471895424836601], + [0.9874356016916571,0.757354863514033,0.7485428681276433], + [0.987681660899654,0.7620299884659747,0.7498961937716263], + [0.987927720107651,0.7667051134179163,0.7512495194156094], + [0.9881737793156479,0.7713802383698578,0.7526028450595924], + [0.988327566320646,0.775040369088812,0.7556170703575548], + [0.9884505959246445,0.7783621683967705,0.7591849288735102], + [0.9885736255286429,0.7816839677047289,0.7627527873894656], + [0.9886966551326414,0.7850057670126874,0.766320645905421], + [0.9888196847366398,0.7883275663206458,0.7698885044213762], + [0.9889427143406383,0.7916493656286044,0.7734563629373318], + [0.9890657439446368,0.7949711649365628,0.7770242214532872], + [0.9891887735486352,0.7982929642445213,0.7805920799692426], + [0.9893118031526337,0.8016147635524798,0.784159938485198], + [0.9894348327566321,0.8049365628604384,0.7877277970011534], + [0.9895578623606306,0.8082583621683967,0.7912956555171088], + [0.989680891964629,0.8115801614763553,0.7948635140330642], + [0.9898039215686275,0.8149019607843138,0.7984313725490196], + [0.989926951172626,0.8182237600922723,0.8019992310649751], + [0.9900499807766244,0.8215455594002307,0.8055670895809304], + [0.9901730103806229,0.8248673587081892,0.8091349480968858], + [0.9902960399846213,0.8281891580161477,0.8127028066128412], + [0.9904190695886198,0.8315109573241061,0.8162706651287966], + [0.9905420991926183,0.8348327566320646,0.8198385236447521], + [0.9906651287966167,0.8381545559400231,0.8234063821607074], + [0.9907881584006152,0.8414763552479815,0.8269742406766627], + [0.9909111880046136,0.84479815455594,0.8305420991926182], + [0.9910342176086121,0.8481199538638985,0.8341099577085737], + [0.9911572472126106,0.851441753171857,0.8376778162245291], + [0.991280276816609,0.8547635524798155,0.8412456747404844], + [0.9914033064206075,0.8580853517877739,0.8448135332564398], + [0.9915263360246059,0.8614071510957324,0.8483813917723952], + [0.9916493656286044,0.8647289504036909,0.8519492502883507], + [0.9917723952326029,0.8680507497116494,0.8555171088043061], + [0.9918954248366013,0.8713725490196078,0.8590849673202614], + [0.9920184544405998,0.8746943483275663,0.8626528258362168], + [0.9921414840445982,0.8780161476355248,0.8662206843521723], + [0.9923721645520954,0.8809073433294886,0.8690349865436371], + [0.9926182237600923,0.8837370242214533,0.8717416378316033], + [0.9928642829680893,0.886566705113418,0.8744482891195694], + [0.9931103421760862,0.8893963860053825,0.8771549404075356], + [0.9933564013840831,0.8922260668973471,0.8798615916955017], + [0.99360246059208,0.8950557477893117,0.8825682429834679], + [0.9938485198000769,0.8978854286812764,0.8852748942714341], + [0.9940945790080739,0.9007151095732411,0.8879815455594002], + [0.9943406382160708,0.9035447904652056,0.8906881968473664], + [0.9945866974240677,0.9063744713571703,0.8933948481353325], + [0.9948327566320646,0.909204152249135,0.8961014994232988], + [0.9950788158400615,0.9120338331410995,0.8988081507112649], + [0.9953248750480584,0.9148635140330642,0.9015148019992311], + [0.9955709342560554,0.9176931949250289,0.9042214532871973], + [0.9958169934640523,0.9205228758169934,0.9069281045751634], + [0.9960630526720492,0.9233525567089581,0.9096347558631296], + [0.9963091118800461,0.9261822376009228,0.9123414071510957], + [0.996555171088043,0.9290119184928873,0.9150480584390619], + [0.99680123029604,0.931841599384852,0.917754709727028], + [0.9970472895040369,0.9346712802768166,0.9204613610149942], + [0.9972933487120338,0.9375009611687811,0.9231680123029603], + [0.9975394079200308,0.9403306420607459,0.9258746635909265], + [0.9977854671280277,0.9431603229527105,0.9285813148788927], + [0.9980315263360247,0.9459900038446751,0.9312879661668588], + [0.9982775855440216,0.9488196847366397,0.933994617454825], + [0.9985236447520185,0.9516493656286044,0.9367012687427911], + [0.9987697039600154,0.954479046520569,0.9394079200307573], + [0.9990157631680123,0.9573087274125336,0.9421145713187236], + [0.9992618223760092,0.9601384083044983,0.9448212226066897], + [0.9995078815840062,0.9629680891964629,0.9475278738946559], + [0.9997539407920031,0.9657977700884275,0.950234525182622], + [1.0,0.9686274509803922,0.9529411764705882] ], + RdYlBu: [ + [0.6470588235294118,0.0,0.14901960784313725], + [0.6547481737793157,0.007381776239907728,0.14917339484813533], + [0.6624375240292195,0.014763552479815456,0.1493271818531334], + [0.6701268742791234,0.022145328719723183,0.14948096885813147], + [0.6778162245290273,0.02952710495963091,0.14963475586312958], + [0.6855055747789311,0.03690888119953864,0.14978854286812765], + [0.6931949250288351,0.044290657439446365,0.14994232987312572], + [0.700884275278739,0.0516724336793541,0.1500961168781238], + [0.7085736255286429,0.05905420991926182,0.15024990388312187], + [0.7162629757785467,0.06643598615916955,0.15040369088811995], + [0.7239523260284506,0.07381776239907728,0.15055747789311805], + [0.7316416762783545,0.081199538638985,0.15071126489811612], + [0.7393310265282584,0.08858131487889273,0.1508650519031142], + [0.7470203767781622,0.09596309111880046,0.15101883890811227], + [0.7547097270280662,0.1033448673587082,0.15117262591311034], + [0.7623990772779701,0.11072664359861592,0.15132641291810842], + [0.7700884275278739,0.11810841983852365,0.15148019992310652], + [0.7777777777777778,0.12549019607843137,0.1516339869281046], + [0.7854671280276817,0.1328719723183391,0.15178777393310267], + [0.7931564782775855,0.14025374855824682,0.15194156093810074], + [0.8008458285274894,0.14763552479815456,0.1520953479430988], + [0.8085351787773933,0.15501730103806227,0.1522491349480969], + [0.8162245290272971,0.16239907727797,0.15240292195309496], + [0.8239138792772011,0.16978085351787775,0.15255670895809306], + [0.831603229527105,0.17716262975778546,0.15271049596309114], + [0.8392925797770088,0.18454440599769317,0.1528642829680892], + [0.8453671664744329,0.19292579777008842,0.15509419454056134], + [0.8498269896193772,0.20230680507497117,0.15940023068050752], + [0.8542868127643214,0.2116878123798539,0.1637062668204537], + [0.8587466359092657,0.22106881968473663,0.16801230296039987], + [0.8632064590542099,0.23044982698961938,0.17231833910034602], + [0.8676662821991542,0.2398308342945021,0.1766243752402922], + [0.8721261053440984,0.24921184159938484,0.18093041138023838], + [0.8765859284890427,0.25859284890426754,0.18523644752018453], + [0.8810457516339869,0.2679738562091503,0.1895424836601307], + [0.8855055747789312,0.27735486351403305,0.1938485198000769], + [0.8899653979238754,0.2867358708189158,0.19815455594002307], + [0.8944252210688197,0.29611687812379844,0.20246059207996922], + [0.8988850442137639,0.3054978854286813,0.20676662821991543], + [0.9033448673587082,0.314878892733564,0.2110726643598616], + [0.9078046905036524,0.32425990003844674,0.21537870049980778], + [0.9122645136485967,0.3336409073433294,0.2196847366397539], + [0.9167243367935409,0.3430219146482122,0.22399077277970014], + [0.9211841599384852,0.35240292195309497,0.22829680891964632], + [0.9256439830834294,0.36178392925797764,0.23260284505959247], + [0.9301038062283737,0.37116493656286037,0.23690888119953862], + [0.9345636293733179,0.38054594386774315,0.24121491733948483], + [0.9390234525182622,0.3899269511726259,0.24552095347943098], + [0.9434832756632066,0.39930795847750866,0.24982698961937716], + [0.9479430988081508,0.40868896578239133,0.2541330257593233], + [0.952402921953095,0.4180699730872741,0.2584390618992695], + [0.9568627450980393,0.42745098039215684,0.2627450980392157], + [0.958246828143022,0.43744713571703187,0.267358708189158], + [0.9596309111880047,0.44744329104190683,0.2719723183391003], + [0.9610149942329873,0.45743944636678197,0.2765859284890427], + [0.96239907727797,0.46743560169165704,0.281199538638985], + [0.9637831603229527,0.47743175701653207,0.28581314878892733], + [0.9651672433679355,0.48742791234140703,0.2904267589388696], + [0.9665513264129182,0.49742406766628217,0.295040369088812], + [0.9679354094579008,0.5074202229911572,0.2996539792387543], + [0.9693194925028835,0.5174163783160323,0.30426758938869664], + [0.9707035755478662,0.5274125336409072,0.3088811995386389], + [0.972087658592849,0.5374086889657823,0.3134948096885813], + [0.9734717416378317,0.5474048442906574,0.3181084198385236], + [0.9748558246828143,0.5574009996155325,0.32272202998846594], + [0.976239907727797,0.5673971549404074,0.32733564013840827], + [0.9776239907727797,0.5773933102652824,0.33194925028835054], + [0.9790080738177624,0.5873894655901576,0.3365628604382929], + [0.9803921568627452,0.5973856209150326,0.34117647058823525], + [0.9817762399077278,0.6073817762399076,0.3457900807381776], + [0.9831603229527105,0.6173779315647827,0.3504036908881199], + [0.9845444059976932,0.6273740868896577,0.3550173010380622], + [0.9859284890426759,0.6373702422145328,0.35963091118800455], + [0.9873125720876587,0.6473663975394078,0.3642445213379469], + [0.9886966551326413,0.6573625528642827,0.36885813148788915], + [0.990080738177624,0.6673587081891579,0.37347174163783153], + [0.9914648212226067,0.677354863514033,0.37808535178777386], + [0.9922337562475971,0.6861976163014224,0.3840061514801998], + [0.9923875432525952,0.6938869665513263,0.3912341407151095], + [0.9925413302575933,0.7015763168012302,0.3984621299500191], + [0.9926951172625913,0.7092656670511341,0.40569011918492875], + [0.9928489042675894,0.716955017301038,0.41291810841983845], + [0.9930026912725874,0.7246443675509417,0.420146097654748], + [0.9931564782775856,0.7323337178008458,0.4273740868896577], + [0.9933102652825836,0.7400230680507497,0.43460207612456736], + [0.9934640522875817,0.7477124183006535,0.44183006535947705], + [0.9936178392925799,0.7554017685505574,0.4490580545943867], + [0.9937716262975779,0.7630911188004613,0.45628604382929633], + [0.993925413302576,0.7707804690503652,0.463514033064206], + [0.994079200307574,0.778469819300269,0.47074202229911566], + [0.9942329873125721,0.7861591695501728,0.4779700115340252], + [0.9943867743175702,0.7938485198000769,0.48519800076893493], + [0.9945405613225683,0.8015378700499807,0.4924259900038446], + [0.9946943483275663,0.8092272202998846,0.49965397923875426], + [0.9948481353325644,0.8169165705497885,0.506881968473664], + [0.9950019223375625,0.8246059207996924,0.5141099577085736], + [0.9951557093425606,0.8322952710495963,0.5213379469434832], + [0.9953094963475586,0.8399846212995001,0.5285659361783929], + [0.9954632833525567,0.8476739715494039,0.5357939254133024], + [0.9956170703575548,0.855363321799308,0.5430219146482123], + [0.9957708573625529,0.8630526720492118,0.5502499038831219], + [0.9959246443675509,0.8707420222991157,0.5574778931180315], + [0.996078431372549,0.8784313725490196,0.5647058823529412], + [0.9962322183775472,0.88319876970396,0.5719338715878508], + [0.9963860053825452,0.8879661668589004,0.5791618608227604], + [0.9965397923875433,0.8927335640138409,0.5863898500576701], + [0.9966935793925413,0.8975009611687812,0.5936178392925797], + [0.9968473663975395,0.9022683583237217,0.6008458285274895], + [0.9970011534025375,0.907035755478662,0.6080738177623991], + [0.9971549404075356,0.9118031526336025,0.6153018069973087], + [0.9973087274125336,0.9165705497885429,0.6225297962322184], + [0.9974625144175318,0.9213379469434833,0.629757785467128], + [0.9976163014225298,0.9261053440984237,0.6369857747020377], + [0.9977700884275279,0.930872741253364,0.6442137639369473], + [0.9979238754325259,0.9356401384083044,0.6514417531718568], + [0.998077662437524,0.9404075355632449,0.6586697424067667], + [0.9982314494425221,0.9451749327181853,0.6658977316416763], + [0.9983852364475202,0.9499423298731258,0.673125720876586], + [0.9985390234525182,0.9547097270280661,0.6803537101114956], + [0.9986928104575163,0.9594771241830066,0.6875816993464052], + [0.9988465974625145,0.9642445213379469,0.6948096885813149], + [0.9990003844675125,0.9690119184928874,0.7020376778162245], + [0.9991541714725106,0.9737793156478277,0.7092656670511341], + [0.9993079584775086,0.9785467128027682,0.7164936562860438], + [0.9994617454825068,0.9833141099577085,0.7237216455209535], + [0.9996155324875048,0.988081507112649,0.7309496347558632], + [0.9997693194925029,0.9928489042675894,0.7381776239907728], + [0.9999231064975009,0.9976163014225298,0.7454056132256824], + [0.9976163014225298,0.9990772779700116,0.7534025374855825], + [0.9928489042675894,0.9972318339100346,0.7621683967704729], + [0.988081507112649,0.9953863898500577,0.7709342560553633], + [0.9833141099577086,0.9935409457900808,0.7797001153402537], + [0.9785467128027683,0.9916955017301039,0.7884659746251439], + [0.9737793156478278,0.9898500576701269,0.7972318339100346], + [0.9690119184928874,0.9880046136101499,0.805997693194925], + [0.964244521337947,0.986159169550173,0.8147635524798154], + [0.9594771241830066,0.984313725490196,0.8235294117647058], + [0.9547097270280662,0.9824682814302191,0.8322952710495962], + [0.9499423298731258,0.9806228373702423,0.8410611303344866], + [0.9451749327181853,0.9787773933102653,0.8498269896193771], + [0.940407535563245,0.9769319492502884,0.8585928489042675], + [0.9356401384083045,0.9750865051903114,0.8673587081891578], + [0.9308727412533642,0.9732410611303345,0.8761245674740483], + [0.9261053440984237,0.9713956170703576,0.8848904267589387], + [0.9213379469434834,0.9695501730103806,0.8936562860438291], + [0.9165705497885429,0.9677047289504037,0.9024221453287196], + [0.9118031526336026,0.9658592848904267,0.9111880046136099], + [0.9070357554786621,0.9640138408304498,0.9199538638985003], + [0.9022683583237219,0.962168396770473,0.9287197231833906], + [0.8975009611687813,0.960322952710496,0.9374855824682813], + [0.892733564013841,0.9584775086505191,0.9462514417531716], + [0.8879661668589005,0.9566320645905421,0.955017301038062], + [0.8831987697039602,0.9547866205305652,0.9637831603229524], + [0.8784313725490197,0.9529411764705882,0.9725490196078429], + [0.8702806612841217,0.9489427143406383,0.9702422145328721], + [0.8621299500192235,0.9449442522106882,0.9679354094579009], + [0.8539792387543255,0.9409457900807382,0.9656286043829297], + [0.8458285274894274,0.9369473279507883,0.9633217993079586], + [0.8376778162245292,0.9329488658208382,0.9610149942329873], + [0.8295271049596311,0.9289504036908882,0.9587081891580161], + [0.821376393694733,0.9249519415609382,0.956401384083045], + [0.8132256824298348,0.9209534794309882,0.9540945790080738], + [0.8050749711649368,0.9169550173010381,0.9517877739331027], + [0.7969242599000387,0.9129565551710881,0.9494809688581315], + [0.7887735486351408,0.9089580930411382,0.9471741637831604], + [0.7806228373702424,0.904959630911188,0.9448673587081892], + [0.7724721261053443,0.9009611687812381,0.942560553633218], + [0.7643214148404461,0.8969627066512881,0.9402537485582468], + [0.756170703575548,0.892964244521338,0.9379469434832757], + [0.74801999231065,0.888965782391388,0.9356401384083045], + [0.7398692810457519,0.884967320261438,0.9333333333333333], + [0.7317185697808537,0.880968858131488,0.9310265282583622], + [0.7235678585159556,0.8769703960015379,0.928719723183391], + [0.7154171472510575,0.8729719338715879,0.9264129181084199], + [0.7072664359861593,0.868973471741638,0.9241061130334487], + [0.6991157247212613,0.8649750096116879,0.9217993079584775], + [0.6909650134563632,0.8609765474817379,0.9194925028835064], + [0.682814302191465,0.8569780853517879,0.9171856978085352], + [0.6746635909265669,0.8529796232218378,0.914878892733564], + [0.6663590926566707,0.8475970780469052,0.9118800461361016], + [0.6579008073817767,0.84083044982699,0.9081891580161479], + [0.6494425221068821,0.8340638216070744,0.9044982698961939], + [0.6409842368319879,0.8272971933871589,0.90080738177624], + [0.6325259515570936,0.8205305651672435,0.8971164936562861], + [0.6240676662821993,0.8137639369473281,0.8934256055363322], + [0.615609381007305,0.8069973087274127,0.8897347174163783], + [0.6071510957324108,0.8002306805074972,0.8860438292964244], + [0.5986928104575164,0.7934640522875818,0.8823529411764707], + [0.5902345251826222,0.7866974240676664,0.8786620530565168], + [0.5817762399077279,0.7799307958477509,0.8749711649365629], + [0.5733179546328336,0.7731641676278356,0.871280276816609], + [0.5648596693579393,0.7663975394079201,0.8675893886966551], + [0.5564013840830451,0.7596309111880047,0.8638985005767013], + [0.5479430988081508,0.7528642829680893,0.8602076124567474], + [0.5394848135332565,0.7460976547481739,0.8565167243367936], + [0.5310265282583623,0.7393310265282584,0.8528258362168397], + [0.5225682429834682,0.7325643983083432,0.8491349480968859], + [0.5141099577085737,0.7257977700884276,0.845444059976932], + [0.5056516724336794,0.7190311418685121,0.8417531718569781], + [0.49719338715878514,0.7122645136485968,0.8380622837370242], + [0.48873510188389085,0.7054978854286813,0.8343713956170704], + [0.48027681660899657,0.6987312572087659,0.8306805074971165], + [0.47181853133410223,0.6919646289888505,0.8269896193771626], + [0.463360246059208,0.6851980007689351,0.8232987312572088], + [0.4549019607843137,0.6784313725490196,0.8196078431372549], + [0.4476739715494041,0.6698193002691273,0.8151480199923107], + [0.44044598231449444,0.6612072279892349,0.8106881968473664], + [0.43321799307958475,0.6525951557093426,0.8062283737024222], + [0.4259900038446751,0.6439830834294502,0.8017685505574779], + [0.4187620146097655,0.6353710111495579,0.7973087274125337], + [0.41153402537485584,0.6267589388696655,0.7928489042675894], + [0.40430603613994615,0.6181468665897731,0.7883890811226452], + [0.39707804690503673,0.6095347943098811,0.783929257977701], + [0.38985005767012687,0.6009227220299884,0.7794694348327567], + [0.38262206843521723,0.5923106497500962,0.7750096116878123], + [0.37539407920030754,0.5836985774702038,0.7705497885428682], + [0.3681660899653979,0.5750865051903115,0.7660899653979238], + [0.36093810073048826,0.5664744329104191,0.7616301422529796], + [0.3537101114955786,0.5578623606305267,0.7571703191080353], + [0.346482122260669,0.5492502883506344,0.7527104959630911], + [0.3392541330257593,0.540638216070742,0.7482506728181468], + [0.33202614379084966,0.5320261437908497,0.7437908496732026], + [0.32479815455593997,0.5234140715109573,0.7393310265282584], + [0.31757016532103033,0.514801999231065,0.7348712033833141], + [0.3103421760861207,0.5061899269511726,0.7304113802383699], + [0.30311418685121105,0.49757785467128024,0.7259515570934256], + [0.2958861976163014,0.4889657823913879,0.7214917339484814], + [0.2886582083813918,0.4803537101114955,0.7170319108035371], + [0.2814302191464823,0.4717416378316035,0.712572087658593], + [0.2742022299115725,0.46312956555171086,0.7081122645136486], + [0.26905036524413684,0.4539792387543252,0.7034986543637063], + [0.2659746251441753,0.44429065743944635,0.6987312572087659], + [0.26289888504421377,0.43460207612456747,0.6939638600538255], + [0.2598231449442522,0.42491349480968854,0.6891964628988851], + [0.25674740484429065,0.41522491349480967,0.6844290657439447], + [0.2536716647443291,0.4055363321799308,0.6796616685890042], + [0.25059592464436753,0.39584775086505186,0.6748942714340639], + [0.247520184544406,0.386159169550173,0.6701268742791234], + [0.24444444444444444,0.3764705882352941,0.6653594771241831], + [0.24136870434448288,0.3667820069204152,0.6605920799692426], + [0.23829296424452134,0.3570934256055363,0.6558246828143023], + [0.23521722414455978,0.34740484429065743,0.6510572856593618], + [0.23214148404459822,0.33771626297577856,0.6462898885044214], + [0.2290657439446367,0.32802768166089963,0.641522491349481], + [0.2259900038446752,0.31833910034602103,0.6367550941945408], + [0.22291426374471357,0.3086505190311419,0.6319876970396002], + [0.219838523644752,0.29896193771626295,0.6272202998846598], + [0.21676278354479048,0.2892733564013841,0.6224529027297194], + [0.21368704344482892,0.2795847750865052,0.617685505574779], + [0.21061130334486738,0.2698961937716263,0.6129181084198385], + [0.2075355632449058,0.2602076124567474,0.6081507112648982], + [0.20445982314494426,0.25051903114186846,0.6033833141099577], + [0.2013840830449827,0.24083044982698962,0.5986159169550174], + [0.19830834294502114,0.23114186851211074,0.5938485198000769], + [0.1952326028450596,0.2214532871972318,0.5890811226451365], + [0.19215686274509805,0.21176470588235294,0.5843137254901961] ], + RdYlBu_r: [ + [0.19215686274509805,0.21176470588235294,0.5843137254901961], + [0.1952326028450596,0.22145328719723184,0.5890811226451366], + [0.19830834294502114,0.23114186851211072,0.5938485198000769], + [0.2013840830449827,0.24083044982698962,0.5986159169550174], + [0.20445982314494426,0.2505190311418685,0.6033833141099577], + [0.2075355632449058,0.2602076124567474,0.6081507112648982], + [0.21061130334486736,0.26989619377162627,0.6129181084198385], + [0.21368704344482892,0.2795847750865052,0.617685505574779], + [0.21676278354479048,0.2892733564013841,0.6224529027297194], + [0.219838523644752,0.298961937716263,0.6272202998846598], + [0.22291426374471357,0.3086505190311418,0.6319876970396002], + [0.22599000384467513,0.31833910034602075,0.6367550941945406], + [0.2290657439446367,0.32802768166089963,0.641522491349481], + [0.23214148404459822,0.3377162629757785,0.6462898885044214], + [0.23521722414455978,0.34740484429065743,0.6510572856593618], + [0.23829296424452134,0.35709342560553636,0.6558246828143022], + [0.24136870434448288,0.3667820069204152,0.6605920799692426], + [0.24444444444444444,0.3764705882352941,0.6653594771241831], + [0.247520184544406,0.38615916955017304,0.6701268742791234], + [0.25059592464436753,0.39584775086505186,0.6748942714340639], + [0.2536716647443291,0.4055363321799308,0.6796616685890042], + [0.25674740484429065,0.41522491349480967,0.6844290657439447], + [0.2598231449442522,0.42491349480968854,0.6891964628988851], + [0.26289888504421377,0.43460207612456747,0.6939638600538255], + [0.2659746251441753,0.44429065743944635,0.6987312572087659], + [0.26905036524413684,0.4539792387543252,0.7034986543637063], + [0.27420222991157245,0.46312956555171086,0.7081122645136486], + [0.2814302191464821,0.4717416378316032,0.7125720876585929], + [0.2886582083813918,0.4803537101114956,0.7170319108035371], + [0.2958861976163014,0.48896578239138794,0.7214917339484814], + [0.30311418685121105,0.49757785467128024,0.7259515570934256], + [0.3103421760861207,0.5061899269511726,0.7304113802383699], + [0.31757016532103033,0.514801999231065,0.7348712033833141], + [0.32479815455593997,0.5234140715109572,0.7393310265282583], + [0.33202614379084966,0.5320261437908497,0.7437908496732026], + [0.3392541330257593,0.540638216070742,0.7482506728181468], + [0.346482122260669,0.5492502883506344,0.7527104959630911], + [0.35371011149557857,0.5578623606305266,0.7571703191080353], + [0.36093810073048826,0.5664744329104191,0.7616301422529796], + [0.3681660899653979,0.5750865051903115,0.7660899653979238], + [0.37539407920030754,0.5836985774702038,0.7705497885428682], + [0.3826220684352172,0.5923106497500961,0.7750096116878123], + [0.38985005767012687,0.6009227220299884,0.7794694348327567], + [0.3970780469050365,0.6095347943098808,0.7839292579777009], + [0.4043060361399462,0.6181468665897731,0.7883890811226452], + [0.4115340253748557,0.6267589388696655,0.7928489042675894], + [0.4187620146097655,0.6353710111495579,0.7973087274125337], + [0.4259900038446751,0.6439830834294502,0.8017685505574779], + [0.43321799307958475,0.6525951557093426,0.8062283737024221], + [0.4404459823144944,0.6612072279892349,0.8106881968473664], + [0.4476739715494041,0.6698193002691273,0.8151480199923107], + [0.4549019607843137,0.6784313725490196,0.8196078431372549], + [0.463360246059208,0.685198000768935,0.8232987312572088], + [0.4718185313341022,0.6919646289888504,0.8269896193771625], + [0.4802768166089965,0.6987312572087658,0.8306805074971164], + [0.4887351018838908,0.7054978854286813,0.8343713956170703], + [0.497193387158785,0.7122645136485967,0.8380622837370242], + [0.5056516724336793,0.719031141868512,0.8417531718569781], + [0.5141099577085736,0.7257977700884275,0.845444059976932], + [0.5225682429834678,0.732564398308343,0.8491349480968857], + [0.5310265282583622,0.7393310265282583,0.8528258362168396], + [0.5394848135332563,0.7460976547481737,0.8565167243367935], + [0.5479430988081506,0.7528642829680892,0.8602076124567474], + [0.5564013840830448,0.7596309111880046,0.8638985005767013], + [0.5648596693579392,0.76639753940792,0.867589388696655], + [0.5733179546328334,0.7731641676278354,0.8712802768166089], + [0.5817762399077275,0.7799307958477507,0.8749711649365628], + [0.590234525182622,0.7866974240676662,0.8786620530565167], + [0.5986928104575162,0.7934640522875817,0.8823529411764706], + [0.6071510957324104,0.800230680507497,0.8860438292964243], + [0.6156093810073048,0.8069973087274125,0.8897347174163782], + [0.624067666282199,0.8137639369473278,0.8934256055363321], + [0.6325259515570933,0.8205305651672432,0.897116493656286], + [0.6409842368319876,0.8272971933871587,0.9008073817762399], + [0.6494425221068817,0.8340638216070739,0.9044982698961936], + [0.657900807381776,0.8408304498269895,0.9081891580161475], + [0.6663590926566704,0.8475970780469049,0.9118800461361014], + [0.6746635909265666,0.8529796232218376,0.9148788927335639], + [0.6828143021914647,0.8569780853517877,0.9171856978085351], + [0.6909650134563627,0.8609765474817377,0.9194925028835063], + [0.6991157247212609,0.8649750096116877,0.9217993079584774], + [0.707266435986159,0.8689734717416377,0.9241061130334486], + [0.7154171472510571,0.8729719338715877,0.9264129181084197], + [0.7235678585159553,0.8769703960015378,0.9287197231833909], + [0.7317185697808534,0.8809688581314878,0.9310265282583621], + [0.7398692810457516,0.8849673202614379,0.9333333333333332], + [0.7480199923106496,0.8889657823913879,0.9356401384083044], + [0.7561707035755477,0.8929642445213378,0.9379469434832757], + [0.7643214148404459,0.8969627066512879,0.9402537485582468], + [0.772472126105344,0.9009611687812379,0.942560553633218], + [0.780622837370242,0.9049596309111879,0.944867358708189], + [0.7887735486351403,0.908958093041138,0.9471741637831603], + [0.7969242599000383,0.912956555171088,0.9494809688581315], + [0.8050749711649365,0.916955017301038,0.9517877739331027], + [0.8132256824298346,0.920953479430988,0.9540945790080738], + [0.8213763936947327,0.9249519415609381,0.956401384083045], + [0.8295271049596309,0.928950403690888,0.9587081891580161], + [0.837677816224529,0.932948865820838,0.9610149942329873], + [0.845828527489427,0.9369473279507881,0.9633217993079585], + [0.8539792387543252,0.9409457900807381,0.9656286043829296], + [0.8621299500192233,0.9449442522106881,0.9679354094579008], + [0.8702806612841215,0.9489427143406381,0.970242214532872], + [0.8784313725490196,0.9529411764705882,0.9725490196078431], + [0.88319876970396,0.9547866205305651,0.9637831603229527], + [0.8879661668589004,0.9566320645905421,0.9550173010380623], + [0.8927335640138409,0.958477508650519,0.9462514417531719], + [0.8975009611687812,0.9603229527104958,0.9374855824682815], + [0.9022683583237217,0.9621683967704728,0.928719723183391], + [0.907035755478662,0.9640138408304498,0.9199538638985005], + [0.9118031526336025,0.9658592848904267,0.9111880046136102], + [0.9165705497885429,0.9677047289504036,0.9024221453287197], + [0.9213379469434833,0.9695501730103806,0.8936562860438293], + [0.9261053440984237,0.9713956170703575,0.8848904267589388], + [0.930872741253364,0.9732410611303345,0.8761245674740484], + [0.9356401384083044,0.9750865051903114,0.8673587081891582], + [0.9404075355632449,0.9769319492502884,0.8585928489042676], + [0.9451749327181853,0.9787773933102653,0.8498269896193772], + [0.9499423298731258,0.9806228373702421,0.8410611303344867], + [0.9547097270280661,0.9824682814302191,0.8322952710495963], + [0.9594771241830066,0.984313725490196,0.8235294117647058], + [0.9642445213379469,0.986159169550173,0.8147635524798155], + [0.9690119184928874,0.9880046136101499,0.8059976931949251], + [0.9737793156478277,0.9898500576701268,0.7972318339100347], + [0.9785467128027682,0.9916955017301038,0.7884659746251441], + [0.9833141099577085,0.9935409457900808,0.7797001153402537], + [0.988081507112649,0.9953863898500577,0.7709342560553634], + [0.9928489042675894,0.9972318339100346,0.7621683967704729], + [0.9976163014225298,0.9990772779700116,0.7534025374855825], + [0.9999231064975009,0.9976163014225298,0.7454056132256824], + [0.9997693194925029,0.9928489042675894,0.7381776239907728], + [0.9996155324875048,0.988081507112649,0.7309496347558632], + [0.9994617454825068,0.9833141099577086,0.7237216455209535], + [0.9993079584775086,0.9785467128027683,0.7164936562860441], + [0.9991541714725106,0.9737793156478278,0.7092656670511343], + [0.9990003844675125,0.9690119184928874,0.7020376778162246], + [0.9988465974625145,0.964244521337947,0.694809688581315], + [0.9986928104575163,0.9594771241830066,0.6875816993464053], + [0.9985390234525182,0.9547097270280662,0.6803537101114957], + [0.9983852364475202,0.9499423298731258,0.673125720876586], + [0.9982314494425221,0.9451749327181853,0.6658977316416763], + [0.998077662437524,0.940407535563245,0.6586697424067667], + [0.9979238754325259,0.9356401384083045,0.651441753171857], + [0.9977700884275279,0.9308727412533642,0.6442137639369474], + [0.9976163014225298,0.9261053440984237,0.6369857747020378], + [0.9974625144175318,0.9213379469434834,0.6297577854671281], + [0.9973087274125336,0.9165705497885429,0.6225297962322185], + [0.9971549404075356,0.9118031526336026,0.6153018069973089], + [0.9970011534025375,0.9070357554786621,0.6080738177623992], + [0.9968473663975395,0.9022683583237219,0.6008458285274898], + [0.9966935793925413,0.8975009611687813,0.5936178392925799], + [0.9965397923875433,0.892733564013841,0.5863898500576703], + [0.9963860053825452,0.8879661668589005,0.5791618608227607], + [0.9962322183775472,0.8831987697039602,0.571933871587851], + [0.996078431372549,0.8784313725490197,0.5647058823529414], + [0.995924644367551,0.8707420222991159,0.5574778931180318], + [0.9957708573625529,0.8630526720492121,0.5502499038831221], + [0.9956170703575548,0.8553633217993082,0.5430219146482125], + [0.9954632833525567,0.8476739715494043,0.5357939254133027], + [0.9953094963475586,0.8399846212995004,0.5285659361783931], + [0.9951557093425606,0.8322952710495966,0.5213379469434835], + [0.9950019223375625,0.8246059207996926,0.5141099577085738], + [0.9948481353325644,0.8169165705497887,0.5068819684736642], + [0.9946943483275663,0.8092272202998849,0.49965397923875454], + [0.9945405613225683,0.801537870049981,0.49242599000384485], + [0.9943867743175702,0.7938485198000773,0.48519800076893543], + [0.9942329873125721,0.7861591695501733,0.4779700115340256], + [0.994079200307574,0.7784698193002694,0.47074202229911594], + [0.993925413302576,0.7707804690503655,0.46351403306420624], + [0.9937716262975779,0.7630911188004615,0.4562860438292966], + [0.9936178392925799,0.7554017685505577,0.44905805459438697], + [0.9934640522875817,0.7477124183006538,0.44183006535947733], + [0.9933102652825837,0.7400230680507499,0.4346020761245677], + [0.9931564782775856,0.732333717800846,0.427374086889658], + [0.9930026912725874,0.7246443675509422,0.42014609765474836], + [0.9928489042675894,0.7169550173010383,0.4129181084198387], + [0.9926951172625913,0.7092656670511344,0.40569011918492903], + [0.9925413302575933,0.7015763168012306,0.3984621299500194], + [0.9923875432525952,0.6938869665513266,0.39123414071510976], + [0.9922337562475971,0.6861976163014227,0.3840061514802001], + [0.9914648212226067,0.6773548635140334,0.378085351787774], + [0.9900807381776241,0.6673587081891585,0.37347174163783187], + [0.9886966551326414,0.6573625528642832,0.3688581314878894], + [0.9873125720876587,0.6473663975394082,0.36424452133794705], + [0.9859284890426759,0.6373702422145331,0.3596309111880047], + [0.9845444059976932,0.627374086889658,0.3550173010380624], + [0.9831603229527106,0.617377931564783,0.35040369088812007], + [0.9817762399077279,0.607381776239908,0.3457900807381777], + [0.9803921568627452,0.5973856209150329,0.34117647058823536], + [0.9790080738177624,0.5873894655901578,0.33656286043829303], + [0.9776239907727797,0.5773933102652827,0.3319492502883507], + [0.976239907727797,0.5673971549404077,0.3273356401384084], + [0.9748558246828144,0.5574009996155327,0.32272202998846605], + [0.9734717416378317,0.5474048442906576,0.3181084198385237], + [0.972087658592849,0.5374086889657825,0.31349480968858134], + [0.9707035755478662,0.5274125336409075,0.308881199538639], + [0.9693194925028835,0.5174163783160324,0.3042675893886967], + [0.9679354094579009,0.5074202229911576,0.2996539792387545], + [0.9665513264129182,0.4974240676662823,0.29504036908881204], + [0.9651672433679355,0.4874279123414072,0.2904267589388697], + [0.9637831603229527,0.4774317570165322,0.2858131487889274], + [0.96239907727797,0.4674356016916571,0.28119953863898506], + [0.9610149942329873,0.457439446366782,0.27658592848904273], + [0.9596309111880047,0.44744329104190694,0.27197231833910035], + [0.958246828143022,0.4374471357170319,0.267358708189158], + [0.9568627450980393,0.42745098039215684,0.2627450980392157], + [0.952402921953095,0.4180699730872741,0.2584390618992695], + [0.9479430988081508,0.4086889657823914,0.25413302575932334], + [0.9434832756632064,0.39930795847750866,0.24982698961937716], + [0.9390234525182622,0.3899269511726259,0.245520953479431], + [0.9345636293733179,0.38054594386774315,0.24121491733948483], + [0.9301038062283737,0.3711649365628604,0.23690888119953865], + [0.9256439830834294,0.3617839292579777,0.23260284505959247], + [0.9211841599384853,0.3524029219530952,0.22829680891964643], + [0.9167243367935409,0.3430219146482122,0.22399077277970011], + [0.9122645136485967,0.33364090734332946,0.21968473663975396], + [0.9078046905036524,0.32425990003844674,0.21537870049980778], + [0.9033448673587082,0.314878892733564,0.2110726643598616], + [0.8988850442137639,0.3054978854286813,0.20676662821991543], + [0.8944252210688197,0.2961168781237985,0.20246059207996925], + [0.8899653979238754,0.28673587081891583,0.19815455594002307], + [0.8855055747789312,0.27735486351403305,0.1938485198000769], + [0.8810457516339869,0.2679738562091503,0.18954248366013074], + [0.8765859284890427,0.2585928489042676,0.18523644752018453], + [0.8721261053440984,0.24921184159938484,0.18093041138023838], + [0.8676662821991542,0.2398308342945021,0.1766243752402922], + [0.8632064590542099,0.23044982698961938,0.17231833910034605], + [0.8587466359092657,0.22106881968473663,0.16801230296039987], + [0.8542868127643214,0.2116878123798539,0.1637062668204537], + [0.8498269896193773,0.20230680507497142,0.15940023068050763], + [0.8453671664744329,0.19292579777008845,0.15509419454056134], + [0.8392925797770089,0.1845444059976932,0.1528642829680892], + [0.831603229527105,0.17716262975778546,0.15271049596309114], + [0.8239138792772011,0.16978085351787775,0.15255670895809306], + [0.8162245290272971,0.16239907727797,0.15240292195309496], + [0.8085351787773933,0.15501730103806227,0.1522491349480969], + [0.8008458285274894,0.14763552479815456,0.1520953479430988], + [0.7931564782775855,0.14025374855824682,0.15194156093810074], + [0.7854671280276817,0.13287197231833908,0.15178777393310267], + [0.7777777777777778,0.12549019607843137,0.1516339869281046], + [0.7700884275278739,0.11810841983852365,0.15148019992310652], + [0.7623990772779701,0.11072664359861592,0.15132641291810842], + [0.7547097270280662,0.10334486735870818,0.15117262591311034], + [0.7470203767781622,0.09596309111880047,0.15101883890811227], + [0.7393310265282584,0.08858131487889273,0.1508650519031142], + [0.7316416762783547,0.08119953863898521,0.15071126489811612], + [0.7239523260284506,0.07381776239907728,0.15055747789311805], + [0.7162629757785467,0.06643598615916954,0.15040369088811995], + [0.7085736255286429,0.05905420991926183,0.15024990388312187], + [0.700884275278739,0.05167243367935409,0.1500961168781238], + [0.6931949250288351,0.04429065743944638,0.14994232987312572], + [0.6855055747789311,0.03690888119953864,0.14978854286812765], + [0.6778162245290273,0.0295271049596309,0.14963475586312958], + [0.6701268742791234,0.02214532871972319,0.14948096885813147], + [0.6624375240292195,0.014763552479815478,0.1493271818531334], + [0.6547481737793157,0.007381776239907711,0.14917339484813533], + [0.6470588235294118,0.0,0.14901960784313725] ], + RdYlGn: [ + [0.6470588235294118,0.0,0.14901960784313725], + [0.6547481737793157,0.007381776239907728,0.14917339484813533], + [0.6624375240292195,0.014763552479815456,0.1493271818531334], + [0.6701268742791234,0.022145328719723183,0.14948096885813147], + [0.6778162245290273,0.02952710495963091,0.14963475586312958], + [0.6855055747789311,0.03690888119953864,0.14978854286812765], + [0.6931949250288351,0.044290657439446365,0.14994232987312572], + [0.700884275278739,0.0516724336793541,0.1500961168781238], + [0.7085736255286429,0.05905420991926182,0.15024990388312187], + [0.7162629757785467,0.06643598615916955,0.15040369088811995], + [0.7239523260284506,0.07381776239907728,0.15055747789311805], + [0.7316416762783545,0.081199538638985,0.15071126489811612], + [0.7393310265282584,0.08858131487889273,0.1508650519031142], + [0.7470203767781622,0.09596309111880046,0.15101883890811227], + [0.7547097270280662,0.1033448673587082,0.15117262591311034], + [0.7623990772779701,0.11072664359861592,0.15132641291810842], + [0.7700884275278739,0.11810841983852365,0.15148019992310652], + [0.7777777777777778,0.12549019607843137,0.1516339869281046], + [0.7854671280276817,0.1328719723183391,0.15178777393310267], + [0.7931564782775855,0.14025374855824682,0.15194156093810074], + [0.8008458285274894,0.14763552479815456,0.1520953479430988], + [0.8085351787773933,0.15501730103806227,0.1522491349480969], + [0.8162245290272971,0.16239907727797,0.15240292195309496], + [0.8239138792772011,0.16978085351787775,0.15255670895809306], + [0.831603229527105,0.17716262975778546,0.15271049596309114], + [0.8392925797770088,0.18454440599769317,0.1528642829680892], + [0.8453671664744329,0.19292579777008842,0.15509419454056134], + [0.8498269896193772,0.20230680507497117,0.15940023068050752], + [0.8542868127643214,0.2116878123798539,0.1637062668204537], + [0.8587466359092657,0.22106881968473663,0.16801230296039987], + [0.8632064590542099,0.23044982698961938,0.17231833910034602], + [0.8676662821991542,0.2398308342945021,0.1766243752402922], + [0.8721261053440984,0.24921184159938484,0.18093041138023838], + [0.8765859284890427,0.25859284890426754,0.18523644752018453], + [0.8810457516339869,0.2679738562091503,0.1895424836601307], + [0.8855055747789312,0.27735486351403305,0.1938485198000769], + [0.8899653979238754,0.2867358708189158,0.19815455594002307], + [0.8944252210688197,0.29611687812379844,0.20246059207996922], + [0.8988850442137639,0.3054978854286813,0.20676662821991543], + [0.9033448673587082,0.314878892733564,0.2110726643598616], + [0.9078046905036524,0.32425990003844674,0.21537870049980778], + [0.9122645136485967,0.3336409073433294,0.2196847366397539], + [0.9167243367935409,0.3430219146482122,0.22399077277970014], + [0.9211841599384852,0.35240292195309497,0.22829680891964632], + [0.9256439830834294,0.36178392925797764,0.23260284505959247], + [0.9301038062283737,0.37116493656286037,0.23690888119953862], + [0.9345636293733179,0.38054594386774315,0.24121491733948483], + [0.9390234525182622,0.3899269511726259,0.24552095347943098], + [0.9434832756632066,0.39930795847750866,0.24982698961937716], + [0.9479430988081508,0.40868896578239133,0.2541330257593233], + [0.952402921953095,0.4180699730872741,0.2584390618992695], + [0.9568627450980393,0.42745098039215684,0.2627450980392157], + [0.958246828143022,0.43744713571703187,0.267358708189158], + [0.9596309111880047,0.44744329104190683,0.2719723183391003], + [0.9610149942329873,0.45743944636678197,0.2765859284890427], + [0.96239907727797,0.46743560169165704,0.281199538638985], + [0.9637831603229527,0.47743175701653207,0.28581314878892733], + [0.9651672433679355,0.48742791234140703,0.2904267589388696], + [0.9665513264129182,0.49742406766628217,0.295040369088812], + [0.9679354094579008,0.5074202229911572,0.2996539792387543], + [0.9693194925028835,0.5174163783160323,0.30426758938869664], + [0.9707035755478662,0.5274125336409072,0.3088811995386389], + [0.972087658592849,0.5374086889657823,0.3134948096885813], + [0.9734717416378317,0.5474048442906574,0.3181084198385236], + [0.9748558246828143,0.5574009996155325,0.32272202998846594], + [0.976239907727797,0.5673971549404074,0.32733564013840827], + [0.9776239907727797,0.5773933102652824,0.33194925028835054], + [0.9790080738177624,0.5873894655901576,0.3365628604382929], + [0.9803921568627452,0.5973856209150326,0.34117647058823525], + [0.9817762399077278,0.6073817762399076,0.3457900807381776], + [0.9831603229527105,0.6173779315647827,0.3504036908881199], + [0.9845444059976932,0.6273740868896577,0.3550173010380622], + [0.9859284890426759,0.6373702422145328,0.35963091118800455], + [0.9873125720876587,0.6473663975394078,0.3642445213379469], + [0.9886966551326413,0.6573625528642827,0.36885813148788915], + [0.990080738177624,0.6673587081891579,0.37347174163783153], + [0.9914648212226067,0.677354863514033,0.37808535178777386], + [0.9922337562475971,0.6861976163014224,0.38362168396770463], + [0.9923875432525952,0.6938869665513263,0.3900807381776239], + [0.9925413302575933,0.7015763168012302,0.39653979238754317], + [0.9926951172625913,0.7092656670511341,0.40299884659746243], + [0.9928489042675894,0.716955017301038,0.40945790080738165], + [0.9930026912725874,0.7246443675509417,0.41591695501730086], + [0.9931564782775856,0.7323337178008458,0.4223760092272202], + [0.9933102652825836,0.7400230680507497,0.42883506343713945], + [0.9934640522875817,0.7477124183006535,0.4352941176470587], + [0.9936178392925799,0.7554017685505574,0.441753171856978], + [0.9937716262975779,0.7630911188004613,0.44821222606689726], + [0.993925413302576,0.7707804690503652,0.4546712802768165], + [0.994079200307574,0.778469819300269,0.4611303344867358], + [0.9942329873125721,0.7861591695501728,0.46758938869665495], + [0.9943867743175702,0.7938485198000769,0.47404844290657433], + [0.9945405613225683,0.8015378700499807,0.48050749711649354], + [0.9946943483275663,0.8092272202998846,0.48696655132641287], + [0.9948481353325644,0.8169165705497885,0.4934256055363321], + [0.9950019223375625,0.8246059207996924,0.4998846597462514], + [0.9951557093425606,0.8322952710495963,0.5063437139561706], + [0.9953094963475586,0.8399846212995001,0.5128027681660899], + [0.9954632833525567,0.8476739715494039,0.519261822376009], + [0.9956170703575548,0.855363321799308,0.5257208765859285], + [0.9957708573625529,0.8630526720492118,0.5321799307958477], + [0.9959246443675509,0.8707420222991157,0.5386389850057669], + [0.996078431372549,0.8784313725490196,0.5450980392156862], + [0.9962322183775472,0.88319876970396,0.5530949634755863], + [0.9963860053825452,0.8879661668589004,0.5610918877354863], + [0.9965397923875433,0.8927335640138409,0.5690888119953863], + [0.9966935793925413,0.8975009611687812,0.5770857362552863], + [0.9968473663975395,0.9022683583237217,0.5850826605151864], + [0.9970011534025375,0.907035755478662,0.5930795847750865], + [0.9971549404075356,0.9118031526336025,0.6010765090349866], + [0.9973087274125336,0.9165705497885429,0.6090734332948865], + [0.9974625144175318,0.9213379469434833,0.6170703575547866], + [0.9976163014225298,0.9261053440984237,0.6250672818146866], + [0.9977700884275279,0.930872741253364,0.6330642060745867], + [0.9979238754325259,0.9356401384083044,0.6410611303344866], + [0.998077662437524,0.9404075355632449,0.6490580545943867], + [0.9982314494425221,0.9451749327181853,0.6570549788542868], + [0.9983852364475202,0.9499423298731258,0.6650519031141868], + [0.9985390234525182,0.9547097270280661,0.6730488273740869], + [0.9986928104575163,0.9594771241830066,0.681045751633987], + [0.9988465974625145,0.9642445213379469,0.689042675893887], + [0.9990003844675125,0.9690119184928874,0.697039600153787], + [0.9991541714725106,0.9737793156478277,0.7050365244136869], + [0.9993079584775086,0.9785467128027682,0.7130334486735871], + [0.9994617454825068,0.9833141099577085,0.7210303729334872], + [0.9996155324875048,0.988081507112649,0.7290272971933871], + [0.9997693194925029,0.9928489042675894,0.7370242214532872], + [0.9999231064975009,0.9976163014225298,0.7450211457131872], + [0.9970780469050365,0.9987697039600154,0.7450211457131872], + [0.9912341407151096,0.9963091118800461,0.7370242214532872], + [0.9853902345251826,0.9938485198000769,0.7290272971933872], + [0.9795463283352557,0.9913879277201076,0.7210303729334872], + [0.9737024221453289,0.9889273356401385,0.7130334486735873], + [0.9678585159554018,0.9864667435601692,0.7050365244136871], + [0.9620146097654748,0.9840061514802,0.6970396001537871], + [0.9561707035755479,0.9815455594002307,0.689042675893887], + [0.950326797385621,0.9790849673202615,0.681045751633987], + [0.9444828911956941,0.9766243752402922,0.673048827374087], + [0.938638985005767,0.9741637831603229,0.6650519031141869], + [0.9327950788158401,0.9717031910803537,0.6570549788542869], + [0.9269511726259132,0.9692425990003845,0.6490580545943868], + [0.9211072664359863,0.9667820069204153,0.6410611303344869], + [0.9152633602460593,0.964321414840446,0.6330642060745868], + [0.9094194540561323,0.9618608227604768,0.6250672818146867], + [0.9035755478662054,0.9594002306805075,0.6170703575547867], + [0.8977316416762784,0.9569396386005383,0.6090734332948867], + [0.8918877354863515,0.954479046520569,0.6010765090349867], + [0.8860438292964246,0.9520184544405998,0.5930795847750866], + [0.8801999231064978,0.9495578623606307,0.5850826605151869], + [0.8743560169165707,0.9470972702806614,0.5770857362552866], + [0.8685121107266437,0.9446366782006921,0.5690888119953865], + [0.8626682045367168,0.9421760861207229,0.5610918877354865], + [0.8568242983467899,0.9397154940407536,0.5530949634755865], + [0.8509803921568628,0.9372549019607844,0.5450980392156864], + [0.843137254901961,0.9338715878508267,0.5400230680507498], + [0.8352941176470591,0.930488273740869,0.5349480968858132], + [0.827450980392157,0.9271049596309113,0.5298731257208766], + [0.8196078431372551,0.9237216455209536,0.5247981545559401], + [0.8117647058823532,0.9203383314109959,0.5197231833910035], + [0.8039215686274512,0.9169550173010381,0.514648212226067], + [0.7960784313725492,0.9135717031910805,0.5095732410611304], + [0.7882352941176473,0.9101883890811228,0.5044982698961938], + [0.7803921568627453,0.906805074971165,0.49942329873125735], + [0.7725490196078434,0.9034217608612073,0.49434832756632074], + [0.7647058823529416,0.9000384467512497,0.48927335640138436], + [0.7568627450980394,0.8966551326412919,0.48419838523644765], + [0.7490196078431375,0.8932718185313342,0.4791234140715111], + [0.7411764705882355,0.8898885044213765,0.47404844290657455], + [0.7333333333333335,0.8865051903114187,0.46897347174163795], + [0.7254901960784316,0.8831218762014611,0.4638985005767014], + [0.7176470588235296,0.8797385620915034,0.45882352941176485], + [0.7098039215686277,0.8763552479815456,0.45374855824682825], + [0.7019607843137257,0.8729719338715879,0.44867358708189176], + [0.6941176470588237,0.8695886197616303,0.44359861591695515], + [0.6862745098039218,0.8662053056516725,0.4385236447520186], + [0.6784313725490199,0.8628219915417148,0.43344867358708206], + [0.6705882352941179,0.8594386774317571,0.42837370242214545], + [0.662745098039216,0.8560553633217993,0.42329873125720896], + [0.654901960784314,0.8526720492118417,0.41822376009227236], + [0.6460592079969245,0.8488273740868898,0.4151480199923107], + [0.6362168396770479,0.8445213379469437,0.4140715109573242], + [0.6263744713571706,0.8402153018069974,0.4129950019223376], + [0.6165321030372937,0.8359092656670513,0.41191849288735105], + [0.6066897347174166,0.8316032295271051,0.41084198385236453], + [0.5968473663975397,0.8272971933871589,0.40976547481737796], + [0.5870049980776627,0.8229911572472127,0.40868896578239144], + [0.5771626297577857,0.8186851211072665,0.40761245674740487], + [0.5673202614379087,0.8143790849673204,0.40653594771241836], + [0.5574778931180318,0.8100730488273742,0.4054594386774318], + [0.5476355247981547,0.805767012687428,0.40438292964244527], + [0.5377931564782777,0.8014609765474818,0.4033064206074587], + [0.5279507881584008,0.7971549404075357,0.4022299115724722], + [0.5181084198385237,0.7928489042675895,0.4011534025374856], + [0.5082660515186468,0.7885428681276433,0.4000768935024991], + [0.49842368319876984,0.7842368319876971,0.3990003844675125], + [0.4885813148788929,0.7799307958477509,0.397923875432526], + [0.47873894655901617,0.7756247597078049,0.3968473663975395], + [0.4688965782391389,0.7713187235678586,0.3957708573625529], + [0.45905420991926194,0.7670126874279124,0.39469434832756634], + [0.44921184159938493,0.7627066512879662,0.3936178392925798], + [0.4393694732795079,0.75840061514802,0.39254133025759325], + [0.429527104959631,0.7540945790080739,0.39146482122260673], + [0.419684736639754,0.7497885428681277,0.39038831218762016], + [0.409842368319877,0.7454825067281815,0.3893118031526336], + [0.4,0.7411764705882353,0.38823529411764707], + [0.38831218762014613,0.7354863514033064,0.3853133410226836], + [0.37662437524029224,0.7297962322183775,0.3823913879277201], + [0.3649365628604383,0.7241061130334487,0.37946943483275664], + [0.3532487504805844,0.7184159938485198,0.3765474817377932], + [0.3415609381007305,0.7127258746635909,0.37362552864282966], + [0.32987312572087657,0.707035755478662,0.3707035755478662], + [0.3181853133410227,0.7013456362937331,0.36778162245290275], + [0.3064975009611691,0.6956555171088045,0.36485966935793934], + [0.29480968858131484,0.6899653979238755,0.3619377162629758], + [0.283121876201461,0.6842752787389466,0.3590157631680123], + [0.27143406382160706,0.6785851595540177,0.35609381007304886], + [0.2597462514417532,0.6728950403690889,0.35317185697808534], + [0.24805843906189928,0.66720492118416,0.3502499038831219], + [0.23637062668204534,0.6615148019992311,0.34732795078815837], + [0.22468281430219145,0.6558246828143022,0.3444059976931949], + [0.21299500192233756,0.6501345636293734,0.34148404459823145], + [0.20130718954248367,0.6444444444444445,0.338562091503268], + [0.18961937716262972,0.6387543252595156,0.3356401384083045], + [0.17793156478277583,0.6330642060745867,0.332718185313341], + [0.16624375240292194,0.6273740868896578,0.32979623221837756], + [0.15455594002306805,0.621683967704729,0.32687427912341405], + [0.1428681276432141,0.6159938485198001,0.3239523260284506], + [0.13118031526336021,0.6103037293348712,0.32103037293348713], + [0.11949250288350666,0.6046136101499425,0.3181084198385237], + [0.10780469050365243,0.5989234909650134,0.31518646674356016], + [0.09996155324875047,0.5923875432525951,0.3118031526336025], + [0.09596309111880046,0.5850057670126875,0.3079584775086505], + [0.09196462898885044,0.5776239907727797,0.30411380238369856], + [0.08796616685890042,0.5702422145328719,0.30026912725874666], + [0.0839677047289504,0.5628604382929643,0.2964244521337947], + [0.07996924259900039,0.5554786620530565,0.29257977700884275], + [0.07597078046905037,0.5480968858131487,0.2887351018838908], + [0.07197231833910034,0.5407151095732411,0.2848904267589389], + [0.06797385620915034,0.5333333333333333,0.28104575163398693], + [0.0639753940792003,0.5259515570934256,0.27720107650903497], + [0.05997693194925029,0.5185697808535179,0.27335640138408307], + [0.05597846981930027,0.5111880046136101,0.2695117262591311], + [0.05198000768935025,0.5038062283737024,0.26566705113417916], + [0.04798154555940023,0.4964244521337947,0.2618223760092272], + [0.04398308342945033,0.48904267589388717,0.2579777008842754], + [0.03998462129950019,0.48166089965397924,0.25413302575932334], + [0.03598615916955017,0.4742791234140715,0.2502883506343714], + [0.03198769703960015,0.46689734717416376,0.24644367550941948], + [0.027989234909650135,0.45951557093425605,0.24259900038446752], + [0.023990772779700117,0.45213379469434833,0.23875432525951557], + [0.019992310649750086,0.44475201845444057,0.23490965013456364], + [0.015993848519800083,0.43737024221453286,0.2310649750096117], + [0.011995386389850066,0.42998846597462514,0.22722029988465975], + [0.007996924259900048,0.42260668973471743,0.22337562475970782], + [0.003998462129950017,0.41522491349480967,0.2195309496347559], + [0.0,0.40784313725490196,0.21568627450980393] ], + RdYlGn_r: [ + [0.0,0.40784313725490196,0.21568627450980393], + [0.003998462129950019,0.41522491349480967,0.21953094963475586], + [0.007996924259900038,0.42260668973471743,0.22337562475970782], + [0.011995386389850057,0.42998846597462514,0.22722029988465975], + [0.015993848519800076,0.43737024221453286,0.2310649750096117], + [0.019992310649750097,0.44475201845444057,0.23490965013456364], + [0.023990772779700114,0.45213379469434833,0.23875432525951557], + [0.027989234909650138,0.45951557093425605,0.24259900038446752], + [0.03198769703960015,0.46689734717416376,0.24644367550941945], + [0.035986159169550176,0.4742791234140715,0.2502883506343714], + [0.03998462129950019,0.48166089965397924,0.25413302575932334], + [0.04398308342945021,0.48904267589388695,0.2579777008842753], + [0.04798154555940023,0.4964244521337947,0.2618223760092272], + [0.051980007689350245,0.5038062283737024,0.26566705113417916], + [0.055978469819300276,0.5111880046136101,0.2695117262591311], + [0.05997693194925029,0.5185697808535179,0.27335640138408307], + [0.0639753940792003,0.5259515570934256,0.27720107650903497], + [0.06797385620915032,0.5333333333333333,0.28104575163398693], + [0.07197231833910035,0.5407151095732411,0.2848904267589389], + [0.07597078046905037,0.5480968858131487,0.28873510188389084], + [0.07996924259900039,0.5554786620530565,0.29257977700884275], + [0.0839677047289504,0.5628604382929643,0.2964244521337947], + [0.08796616685890042,0.5702422145328719,0.30026912725874666], + [0.09196462898885044,0.5776239907727797,0.30411380238369856], + [0.09596309111880046,0.5850057670126874,0.3079584775086505], + [0.09996155324875047,0.5923875432525951,0.3118031526336025], + [0.10780469050365243,0.5989234909650134,0.31518646674356016], + [0.11949250288350635,0.6046136101499423,0.3181084198385236], + [0.13118031526336024,0.6103037293348712,0.32103037293348713], + [0.14286812764321416,0.6159938485198001,0.3239523260284506], + [0.15455594002306805,0.621683967704729,0.32687427912341405], + [0.16624375240292197,0.6273740868896578,0.32979623221837756], + [0.17793156478277586,0.6330642060745867,0.332718185313341], + [0.1896193771626297,0.6387543252595156,0.3356401384083045], + [0.20130718954248367,0.6444444444444445,0.338562091503268], + [0.21299500192233758,0.6501345636293733,0.34148404459823145], + [0.22468281430219147,0.6558246828143022,0.3444059976931949], + [0.2363706266820453,0.6615148019992311,0.34732795078815837], + [0.24805843906189928,0.66720492118416,0.3502499038831219], + [0.25974625144175323,0.6728950403690889,0.35317185697808534], + [0.27143406382160706,0.6785851595540177,0.35609381007304886], + [0.2831218762014609,0.6842752787389466,0.3590157631680123], + [0.29480968858131495,0.6899653979238755,0.3619377162629758], + [0.3064975009611688,0.6956555171088044,0.36485966935793923], + [0.31818531334102274,0.7013456362937331,0.36778162245290275], + [0.32987312572087657,0.707035755478662,0.3707035755478662], + [0.3415609381007305,0.7127258746635909,0.3736255286428297], + [0.35324875048058446,0.7184159938485198,0.3765474817377932], + [0.3649365628604383,0.7241061130334487,0.37946943483275664], + [0.37662437524029213,0.7297962322183775,0.3823913879277201], + [0.3883121876201462,0.7354863514033064,0.3853133410226836], + [0.4,0.7411764705882353,0.38823529411764707], + [0.40984236831987697,0.7454825067281815,0.3893118031526336], + [0.41968473663975386,0.7497885428681277,0.39038831218762016], + [0.4295271049596309,0.7540945790080739,0.3914648212226067], + [0.43936947327950787,0.75840061514802,0.39254133025759325], + [0.4492118415993849,0.7627066512879662,0.39361783929257976], + [0.4590542099192617,0.7670126874279123,0.39469434832756634], + [0.4688965782391388,0.7713187235678585,0.39577085736255285], + [0.4787389465590157,0.7756247597078046,0.3968473663975394], + [0.4885813148788927,0.7799307958477508,0.39792387543252594], + [0.4984236831987696,0.784236831987697,0.3990003844675125], + [0.5082660515186467,0.7885428681276432,0.40007689350249903], + [0.5181084198385236,0.7928489042675894,0.4011534025374856], + [0.5279507881584006,0.7971549404075355,0.4022299115724721], + [0.5377931564782775,0.8014609765474817,0.4033064206074587], + [0.5476355247981544,0.8057670126874278,0.4043829296424452], + [0.5574778931180314,0.8100730488273741,0.4054594386774318], + [0.5673202614379085,0.8143790849673203,0.4065359477124183], + [0.5771626297577854,0.8186851211072663,0.40761245674740487], + [0.5870049980776624,0.8229911572472126,0.4086889657823914], + [0.5968473663975393,0.8272971933871587,0.40976547481737796], + [0.6066897347174163,0.8316032295271049,0.4108419838523645], + [0.6165321030372932,0.835909265667051,0.41191849288735105], + [0.6263744713571701,0.8402153018069972,0.41299500192233757], + [0.6362168396770471,0.8445213379469434,0.4140715109573241], + [0.6460592079969241,0.8488273740868896,0.41514801999231066], + [0.6549019607843136,0.8526720492118415,0.41822376009227213], + [0.6627450980392156,0.8560553633217992,0.42329873125720874], + [0.6705882352941176,0.859438677431757,0.4283737024221453], + [0.6784313725490195,0.8628219915417147,0.43344867358708183], + [0.6862745098039215,0.8662053056516724,0.4385236447520184], + [0.6941176470588233,0.86958861976163,0.4435986159169549], + [0.7019607843137254,0.8729719338715878,0.44867358708189153], + [0.7098039215686274,0.8763552479815455,0.4537485582468281], + [0.7176470588235293,0.8797385620915033,0.45882352941176463], + [0.7254901960784313,0.883121876201461,0.46389850057670123], + [0.7333333333333333,0.8865051903114186,0.4689734717416378], + [0.7411764705882352,0.8898885044213763,0.47404844290657433], + [0.7490196078431371,0.8932718185313341,0.47912341407151093], + [0.7568627450980391,0.8966551326412917,0.4841983852364474], + [0.7647058823529411,0.9000384467512494,0.48927335640138403], + [0.7725490196078431,0.9034217608612072,0.4943483275663206], + [0.780392156862745,0.9068050749711649,0.4994232987312571], + [0.788235294117647,0.9101883890811227,0.5044982698961937], + [0.796078431372549,0.9135717031910804,0.5095732410611303], + [0.8039215686274509,0.916955017301038,0.5146482122260668], + [0.8117647058823529,0.9203383314109957,0.5197231833910034], + [0.8196078431372548,0.9237216455209534,0.5247981545559399], + [0.8274509803921568,0.9271049596309112,0.5298731257208765], + [0.8352941176470587,0.9304882737408688,0.5349480968858131], + [0.8431372549019608,0.9338715878508266,0.5400230680507496], + [0.8509803921568627,0.9372549019607843,0.5450980392156862], + [0.8568242983467896,0.9397154940407536,0.5530949634755863], + [0.8626682045367167,0.9421760861207228,0.5610918877354863], + [0.8685121107266436,0.9446366782006921,0.5690888119953863], + [0.8743560169165705,0.9470972702806613,0.5770857362552863], + [0.8801999231064975,0.9495578623606306,0.5850826605151864], + [0.8860438292964244,0.9520184544405997,0.5930795847750865], + [0.8918877354863514,0.954479046520569,0.6010765090349866], + [0.8977316416762784,0.9569396386005382,0.6090734332948865], + [0.9035755478662053,0.9594002306805075,0.6170703575547866], + [0.9094194540561322,0.9618608227604768,0.6250672818146866], + [0.9152633602460591,0.964321414840446,0.6330642060745867], + [0.9211072664359861,0.9667820069204152,0.6410611303344866], + [0.9269511726259131,0.9692425990003845,0.6490580545943867], + [0.9327950788158401,0.9717031910803537,0.6570549788542868], + [0.938638985005767,0.9741637831603229,0.6650519031141868], + [0.944482891195694,0.9766243752402922,0.6730488273740869], + [0.9503267973856209,0.9790849673202614,0.681045751633987], + [0.9561707035755479,0.9815455594002307,0.689042675893887], + [0.9620146097654748,0.9840061514801999,0.697039600153787], + [0.9678585159554016,0.9864667435601692,0.7050365244136869], + [0.9737024221453288,0.9889273356401385,0.7130334486735871], + [0.9795463283352557,0.9913879277201076,0.7210303729334872], + [0.9853902345251826,0.9938485198000769,0.7290272971933871], + [0.9912341407151095,0.9963091118800461,0.7370242214532872], + [0.9970780469050365,0.9987697039600154,0.7450211457131872], + [0.9999231064975009,0.9976163014225298,0.7450211457131872], + [0.9997693194925029,0.9928489042675894,0.7370242214532872], + [0.9996155324875048,0.988081507112649,0.7290272971933872], + [0.9994617454825068,0.9833141099577086,0.7210303729334872], + [0.9993079584775086,0.9785467128027683,0.7130334486735873], + [0.9991541714725106,0.9737793156478278,0.7050365244136871], + [0.9990003844675125,0.9690119184928874,0.6970396001537871], + [0.9988465974625145,0.964244521337947,0.689042675893887], + [0.9986928104575163,0.9594771241830066,0.681045751633987], + [0.9985390234525182,0.9547097270280662,0.673048827374087], + [0.9983852364475202,0.9499423298731258,0.6650519031141869], + [0.9982314494425221,0.9451749327181853,0.6570549788542869], + [0.998077662437524,0.940407535563245,0.6490580545943868], + [0.9979238754325259,0.9356401384083045,0.6410611303344869], + [0.9977700884275279,0.9308727412533642,0.6330642060745868], + [0.9976163014225298,0.9261053440984237,0.6250672818146867], + [0.9974625144175318,0.9213379469434834,0.6170703575547867], + [0.9973087274125336,0.9165705497885429,0.6090734332948867], + [0.9971549404075356,0.9118031526336026,0.6010765090349867], + [0.9970011534025375,0.9070357554786621,0.5930795847750866], + [0.9968473663975395,0.9022683583237219,0.5850826605151869], + [0.9966935793925413,0.8975009611687813,0.5770857362552866], + [0.9965397923875433,0.892733564013841,0.5690888119953865], + [0.9963860053825452,0.8879661668589005,0.5610918877354865], + [0.9962322183775472,0.8831987697039602,0.5530949634755865], + [0.996078431372549,0.8784313725490197,0.5450980392156864], + [0.995924644367551,0.8707420222991159,0.5386389850057671], + [0.9957708573625529,0.8630526720492121,0.5321799307958479], + [0.9956170703575548,0.8553633217993082,0.5257208765859286], + [0.9954632833525567,0.8476739715494043,0.5192618223760094], + [0.9953094963475586,0.8399846212995004,0.51280276816609], + [0.9951557093425606,0.8322952710495966,0.5063437139561708], + [0.9950019223375625,0.8246059207996926,0.49988465974625157], + [0.9948481353325644,0.8169165705497887,0.4934256055363323], + [0.9946943483275663,0.8092272202998849,0.4869665513264131], + [0.9945405613225683,0.801537870049981,0.4805074971164938], + [0.9943867743175702,0.7938485198000773,0.4740484429065747], + [0.9942329873125721,0.7861591695501733,0.4675893886966553], + [0.994079200307574,0.7784698193002694,0.461130334486736], + [0.993925413302576,0.7707804690503655,0.45467128027681675], + [0.9937716262975779,0.7630911188004615,0.4482122260668975], + [0.9936178392925799,0.7554017685505577,0.44175317185697827], + [0.9934640522875817,0.7477124183006538,0.435294117647059], + [0.9933102652825837,0.7400230680507499,0.42883506343713973], + [0.9931564782775856,0.732333717800846,0.42237600922722046], + [0.9930026912725874,0.7246443675509422,0.4159169550173012], + [0.9928489042675894,0.7169550173010383,0.409457900807382], + [0.9926951172625913,0.7092656670511344,0.40299884659746266], + [0.9925413302575933,0.7015763168012306,0.39653979238754344], + [0.9923875432525952,0.6938869665513266,0.3900807381776241], + [0.9922337562475971,0.6861976163014227,0.3836216839677049], + [0.9914648212226067,0.6773548635140334,0.378085351787774], + [0.9900807381776241,0.6673587081891585,0.37347174163783187], + [0.9886966551326414,0.6573625528642832,0.3688581314878894], + [0.9873125720876587,0.6473663975394082,0.36424452133794705], + [0.9859284890426759,0.6373702422145331,0.3596309111880047], + [0.9845444059976932,0.627374086889658,0.3550173010380624], + [0.9831603229527106,0.617377931564783,0.35040369088812007], + [0.9817762399077279,0.607381776239908,0.3457900807381777], + [0.9803921568627452,0.5973856209150329,0.34117647058823536], + [0.9790080738177624,0.5873894655901578,0.33656286043829303], + [0.9776239907727797,0.5773933102652827,0.3319492502883507], + [0.976239907727797,0.5673971549404077,0.3273356401384084], + [0.9748558246828144,0.5574009996155327,0.32272202998846605], + [0.9734717416378317,0.5474048442906576,0.3181084198385237], + [0.972087658592849,0.5374086889657825,0.31349480968858134], + [0.9707035755478662,0.5274125336409075,0.308881199538639], + [0.9693194925028835,0.5174163783160324,0.3042675893886967], + [0.9679354094579009,0.5074202229911576,0.2996539792387545], + [0.9665513264129182,0.4974240676662823,0.29504036908881204], + [0.9651672433679355,0.4874279123414072,0.2904267589388697], + [0.9637831603229527,0.4774317570165322,0.2858131487889274], + [0.96239907727797,0.4674356016916571,0.28119953863898506], + [0.9610149942329873,0.457439446366782,0.27658592848904273], + [0.9596309111880047,0.44744329104190694,0.27197231833910035], + [0.958246828143022,0.4374471357170319,0.267358708189158], + [0.9568627450980393,0.42745098039215684,0.2627450980392157], + [0.952402921953095,0.4180699730872741,0.2584390618992695], + [0.9479430988081508,0.4086889657823914,0.25413302575932334], + [0.9434832756632064,0.39930795847750866,0.24982698961937716], + [0.9390234525182622,0.3899269511726259,0.245520953479431], + [0.9345636293733179,0.38054594386774315,0.24121491733948483], + [0.9301038062283737,0.3711649365628604,0.23690888119953865], + [0.9256439830834294,0.3617839292579777,0.23260284505959247], + [0.9211841599384853,0.3524029219530952,0.22829680891964643], + [0.9167243367935409,0.3430219146482122,0.22399077277970011], + [0.9122645136485967,0.33364090734332946,0.21968473663975396], + [0.9078046905036524,0.32425990003844674,0.21537870049980778], + [0.9033448673587082,0.314878892733564,0.2110726643598616], + [0.8988850442137639,0.3054978854286813,0.20676662821991543], + [0.8944252210688197,0.2961168781237985,0.20246059207996925], + [0.8899653979238754,0.28673587081891583,0.19815455594002307], + [0.8855055747789312,0.27735486351403305,0.1938485198000769], + [0.8810457516339869,0.2679738562091503,0.18954248366013074], + [0.8765859284890427,0.2585928489042676,0.18523644752018453], + [0.8721261053440984,0.24921184159938484,0.18093041138023838], + [0.8676662821991542,0.2398308342945021,0.1766243752402922], + [0.8632064590542099,0.23044982698961938,0.17231833910034605], + [0.8587466359092657,0.22106881968473663,0.16801230296039987], + [0.8542868127643214,0.2116878123798539,0.1637062668204537], + [0.8498269896193773,0.20230680507497142,0.15940023068050763], + [0.8453671664744329,0.19292579777008845,0.15509419454056134], + [0.8392925797770089,0.1845444059976932,0.1528642829680892], + [0.831603229527105,0.17716262975778546,0.15271049596309114], + [0.8239138792772011,0.16978085351787775,0.15255670895809306], + [0.8162245290272971,0.16239907727797,0.15240292195309496], + [0.8085351787773933,0.15501730103806227,0.1522491349480969], + [0.8008458285274894,0.14763552479815456,0.1520953479430988], + [0.7931564782775855,0.14025374855824682,0.15194156093810074], + [0.7854671280276817,0.13287197231833908,0.15178777393310267], + [0.7777777777777778,0.12549019607843137,0.1516339869281046], + [0.7700884275278739,0.11810841983852365,0.15148019992310652], + [0.7623990772779701,0.11072664359861592,0.15132641291810842], + [0.7547097270280662,0.10334486735870818,0.15117262591311034], + [0.7470203767781622,0.09596309111880047,0.15101883890811227], + [0.7393310265282584,0.08858131487889273,0.1508650519031142], + [0.7316416762783547,0.08119953863898521,0.15071126489811612], + [0.7239523260284506,0.07381776239907728,0.15055747789311805], + [0.7162629757785467,0.06643598615916954,0.15040369088811995], + [0.7085736255286429,0.05905420991926183,0.15024990388312187], + [0.700884275278739,0.05167243367935409,0.1500961168781238], + [0.6931949250288351,0.04429065743944638,0.14994232987312572], + [0.6855055747789311,0.03690888119953864,0.14978854286812765], + [0.6778162245290273,0.0295271049596309,0.14963475586312958], + [0.6701268742791234,0.02214532871972319,0.14948096885813147], + [0.6624375240292195,0.014763552479815478,0.1493271818531334], + [0.6547481737793157,0.007381776239907711,0.14917339484813533], + [0.6470588235294118,0.0,0.14901960784313725] ], + Reds: [ + [1.0,0.9607843137254902,0.9411764705882353], + [0.9998769703960015,0.9582006920415225,0.9374855824682814], + [0.9997539407920031,0.9556170703575548,0.9337946943483275], + [0.9996309111880046,0.9530334486735871,0.9301038062283737], + [0.9995078815840062,0.9504498269896194,0.9264129181084199], + [0.9993848519800077,0.9478662053056517,0.922722029988466], + [0.9992618223760092,0.9452825836216839,0.9190311418685121], + [0.9991387927720108,0.9426989619377163,0.9153402537485582], + [0.9990157631680123,0.9401153402537485,0.9116493656286043], + [0.9988927335640139,0.9375317185697809,0.9079584775086504], + [0.9987697039600154,0.9349480968858132,0.9042675893886967], + [0.998646674356017,0.9323644752018455,0.9005767012687428], + [0.9985236447520185,0.9297808535178778,0.8968858131487889], + [0.99840061514802,0.92719723183391,0.893194925028835], + [0.9982775855440216,0.9246136101499424,0.8895040369088811], + [0.9981545559400231,0.9220299884659746,0.8858131487889274], + [0.9980315263360247,0.919446366782007,0.8821222606689735], + [0.9979084967320262,0.9168627450980392,0.8784313725490196], + [0.9977854671280277,0.9142791234140715,0.8747404844290657], + [0.9976624375240293,0.9116955017301038,0.8710495963091118], + [0.9975394079200308,0.9091118800461361,0.867358708189158], + [0.9974163783160324,0.9065282583621684,0.8636678200692041], + [0.9972933487120338,0.9039446366782007,0.8599769319492503], + [0.9971703191080353,0.901361014994233,0.8562860438292964], + [0.9970472895040369,0.8987773933102653,0.8525951557093425], + [0.9969242599000384,0.8961937716262975,0.8489042675893886], + [0.99680123029604,0.8936101499423299,0.8452133794694348], + [0.9966782006920415,0.8910265282583621,0.841522491349481], + [0.996555171088043,0.8884429065743944,0.8378316032295271], + [0.9964321414840446,0.8858592848904268,0.8341407151095732], + [0.9963091118800461,0.883275663206459,0.8304498269896193], + [0.9961860822760477,0.8806920415224914,0.8267589388696654], + [0.9960476739715494,0.8778623606305267,0.8227758554402153], + [0.9958016147635524,0.8733102652825836,0.8167474048442906], + [0.9955555555555555,0.8687581699346405,0.8107189542483659], + [0.9953094963475586,0.8642060745866974,0.8046905036524413], + [0.9950634371395617,0.8596539792387543,0.7986620530565167], + [0.9948173779315648,0.8551018838908112,0.7926336024605921], + [0.9945713187235679,0.8505497885428681,0.7866051518646674], + [0.9943252595155709,0.845997693194925,0.7805767012687428], + [0.994079200307574,0.8414455978469819,0.7745482506728181], + [0.9938331410995771,0.8368935024990388,0.7685198000768935], + [0.9935870818915802,0.8323414071510957,0.7624913494809689], + [0.9933410226835833,0.8277893118031526,0.7564628988850441], + [0.9930949634755863,0.8232372164552095,0.7504344482891195], + [0.9928489042675894,0.8186851211072664,0.7444059976931949], + [0.9926028450595925,0.8141330257593233,0.7383775470972702], + [0.9923567858515956,0.8095809304113802,0.7323490965013456], + [0.9921107266435987,0.8050288350634371,0.726320645905421], + [0.9918646674356018,0.800476739715494,0.7202921953094964], + [0.9916186082276048,0.795924644367551,0.7142637447135717], + [0.9913725490196079,0.7913725490196079,0.7082352941176471], + [0.991126489811611,0.7868204536716648,0.7022068435217224], + [0.9908804306036141,0.7822683583237217,0.6961783929257978], + [0.990634371395617,0.7777162629757786,0.6901499423298731], + [0.9903883121876201,0.7731641676278354,0.6841214917339484], + [0.9901422529796232,0.7686120722798924,0.6780930411380238], + [0.9898961937716263,0.7640599769319493,0.6720645905420992], + [0.9896501345636294,0.7595078815840062,0.6660361399461745], + [0.9894040753556325,0.754955786236063,0.6600076893502499], + [0.9891580161476355,0.75040369088812,0.6539792387543253], + [0.9889119569396386,0.7458515955401769,0.6479507881584006], + [0.9886658977316417,0.7412995001922337,0.641922337562476], + [0.9884198385236448,0.7367474048442906,0.6358938869665514], + [0.9882352941176471,0.732072279892349,0.6299269511726259], + [0.9882352941176471,0.7270280661284121,0.6241445597846982], + [0.9882352941176471,0.7219838523644753,0.6183621683967705], + [0.9882352941176471,0.7169396386005382,0.6125797770088427], + [0.9882352941176471,0.7118954248366013,0.606797385620915], + [0.9882352941176471,0.7068512110726644,0.6010149942329873], + [0.9882352941176471,0.7018069973087273,0.5952326028450596], + [0.9882352941176471,0.6967627835447904,0.5894502114571318], + [0.9882352941176471,0.6917185697808534,0.5836678200692041], + [0.9882352941176471,0.6866743560169165,0.5778854286812765], + [0.9882352941176471,0.6816301422529797,0.5721030372933488], + [0.9882352941176471,0.6765859284890426,0.566320645905421], + [0.9882352941176471,0.6715417147251057,0.5605382545174933], + [0.9882352941176471,0.6664975009611688,0.5547558631295655], + [0.9882352941176471,0.6614532871972318,0.5489734717416378], + [0.9882352941176471,0.6564090734332948,0.5431910803537101], + [0.9882352941176471,0.6513648596693579,0.5374086889657824], + [0.9882352941176471,0.6463206459054209,0.5316262975778547], + [0.9882352941176471,0.6412764321414841,0.525843906189927], + [0.9882352941176471,0.6362322183775471,0.5200615148019992], + [0.9882352941176471,0.6311880046136101,0.5142791234140716], + [0.9882352941176471,0.6261437908496732,0.5084967320261438], + [0.9882352941176471,0.6210995770857363,0.5027143406382161], + [0.9882352941176471,0.6160553633217993,0.4969319492502884], + [0.9882352941176471,0.6110111495578623,0.49114955786236064], + [0.9882352941176471,0.6059669357939254,0.4853671664744329], + [0.9882352941176471,0.6009227220299885,0.4795847750865053], + [0.9882352941176471,0.5958785082660515,0.4738023836985775], + [0.9882352941176471,0.5908342945021146,0.4680199923106498], + [0.9882352941176471,0.5857900807381776,0.46223760092272204], + [0.9882352941176471,0.5807458669742407,0.45645520953479435], + [0.9882352941176471,0.5757016532103036,0.4506728181468666], + [0.9881891580161477,0.5707035755478662,0.44521337946943484], + [0.9880661284121492,0.5657823913879277,0.44029219530949637], + [0.9879430988081508,0.5608612072279893,0.43537101114955795], + [0.9878200692041523,0.5559400230680507,0.4304498269896194], + [0.9876970396001539,0.5510188389081122,0.4255286428296809], + [0.9875740099961553,0.5460976547481737,0.4206074586697424], + [0.9874509803921568,0.5411764705882353,0.41568627450980394], + [0.9873279507881584,0.5362552864282968,0.41076509034986547], + [0.9872049211841599,0.5313341022683583,0.405843906189927], + [0.9870818915801615,0.5264129181084198,0.40092272202998847], + [0.986958861976163,0.5214917339484814,0.3960015378700501], + [0.9868358323721645,0.5165705497885429,0.3910803537101115], + [0.9867128027681661,0.5116493656286044,0.38615916955017304], + [0.9865897731641676,0.5067281814686659,0.38123798539023457], + [0.9864667435601692,0.5018069973087274,0.3763168012302961], + [0.9863437139561707,0.49688581314878894,0.37139561707035756], + [0.9862206843521722,0.49196462898885046,0.3664744329104191], + [0.9860976547481738,0.48704344482891193,0.3615532487504806], + [0.9859746251441753,0.48212226066897357,0.3566320645905422], + [0.9858515955401769,0.477201076509035,0.3517108804306036], + [0.9857285659361784,0.4722798923490965,0.34678969627066514], + [0.98560553633218,0.46735870818915803,0.34186851211072666], + [0.9854825067281815,0.46243752402921956,0.3369473279507882], + [0.9853594771241829,0.4575163398692811,0.3320261437908497], + [0.9852364475201845,0.4525951557093426,0.32710495963091124], + [0.985113417916186,0.4476739715494041,0.32218377547097277], + [0.9849903883121875,0.44275278738946566,0.3172625913110343], + [0.9848673587081891,0.43783160322952713,0.31234140715109576], + [0.9847443291041906,0.4329104190695886,0.3074202229911573], + [0.9846212995001922,0.42798923490965013,0.30249903883121876], + [0.9844982698961937,0.42306805074971165,0.2975778546712803], + [0.9843752402921953,0.4181468665897732,0.2926566705113418], + [0.9835755478662053,0.4127950788158401,0.28835063437139563], + [0.9820991926182238,0.40701268742791236,0.28465974625144175], + [0.9806228373702421,0.40123029603998467,0.2809688581314879], + [0.9791464821222606,0.3954479046520569,0.27727797001153404], + [0.9776701268742791,0.38966551326412935,0.27358708189158026], + [0.9761937716262975,0.3838831218762015,0.2698961937716263], + [0.974717416378316,0.37810073048827375,0.26620530565167244], + [0.9732410611303345,0.37231833910034606,0.2625144175317186], + [0.9717647058823529,0.3665359477124183,0.25882352941176473], + [0.9702883506343714,0.3607535563244906,0.25513264129181085], + [0.9688119953863898,0.3549711649365629,0.251441753171857], + [0.9673356401384082,0.34918877354863515,0.24775086505190314], + [0.9658592848904267,0.34340638216070746,0.24405997693194925], + [0.9643829296424452,0.3376239907727797,0.2403690888119954], + [0.9629065743944636,0.331841599384852,0.23667820069204154], + [0.9614302191464821,0.3260592079969243,0.23298731257208766], + [0.9599538638985006,0.32027681660899654,0.2292964244521338], + [0.9584775086505191,0.31449442522106885,0.22560553633217995], + [0.9570011534025374,0.3087120338331411,0.22191464821222606], + [0.9555247981545559,0.30292964244521337,0.2182237600922722], + [0.9540484429065744,0.29714725105728584,0.21453287197231846], + [0.9525720876585928,0.29136485966935793,0.21084198385236447], + [0.9510957324106113,0.2855824682814302,0.2071510957324106], + [0.9496193771626298,0.2798000768935025,0.20346020761245676], + [0.9481430219146482,0.2740176855055748,0.19976931949250287], + [0.9466666666666667,0.26823529411764707,0.19607843137254902], + [0.9451903114186851,0.26245290272971933,0.19238754325259516], + [0.9437139561707035,0.25667051134179164,0.18869665513264128], + [0.942237600922722,0.2508881199538639,0.18500576701268742], + [0.9407612456747405,0.24510572856593618,0.18131487889273357], + [0.9392848904267589,0.23932333717800847,0.17762399077277968], + [0.9378085351787774,0.23354094579008075,0.17393310265282583], + [0.9344867358708189,0.2286812764321415,0.17139561707035755], + [0.9300576701268742,0.22437524029219533,0.1695501730103806], + [0.9256286043829296,0.22006920415224915,0.1677047289504037], + [0.921199538638985,0.21576316801230297,0.16585928489042676], + [0.9167704728950405,0.21145713187235693,0.16401384083044987], + [0.9123414071510957,0.2071510957324106,0.1621683967704729], + [0.907912341407151,0.20284505959246443,0.16032295271049596], + [0.9034832756632064,0.19853902345251828,0.15847750865051902], + [0.8990542099192618,0.1942329873125721,0.1566320645905421], + [0.8946251441753171,0.18992695117262592,0.15478662053056516], + [0.8901960784313725,0.18562091503267975,0.15294117647058825], + [0.8857670126874279,0.18131487889273357,0.1510957324106113], + [0.8813379469434832,0.1770088427527874,0.14925028835063436], + [0.8769088811995386,0.1727028066128412,0.14740484429065745], + [0.8724798154555939,0.16839677047289503,0.1455594002306805], + [0.8680507497116493,0.16409073433294888,0.14371395617070357], + [0.8636216839677047,0.15978469819300267,0.14186851211072665], + [0.85919261822376,0.15547866205305652,0.1400230680507497], + [0.8547635524798154,0.15117262591311034,0.13817762399077277], + [0.8503344867358708,0.14686658977316416,0.13633217993079583], + [0.8459054209919262,0.14256055363321812,0.13448673587081897], + [0.8414763552479815,0.13825451749327183,0.13264129181084197], + [0.8370472895040368,0.13394848135332565,0.13079584775086506], + [0.8326182237600922,0.12964244521337948,0.12895040369088812], + [0.8281891580161476,0.1253364090734333,0.12710495963091117], + [0.8237600922722029,0.12103037293348712,0.12525951557093426], + [0.8193310265282583,0.11672433679354094,0.12341407151095732], + [0.8149019607843137,0.11241830065359477,0.12156862745098039], + [0.810472895040369,0.1081122645136486,0.11972318339100346], + [0.8060438292964244,0.10380622837370243,0.11787773933102652], + [0.8016147635524797,0.09950019223375625,0.1160322952710496], + [0.7971856978085351,0.09519415609381007,0.11418685121107267], + [0.7925720876585928,0.09328719723183392,0.11298731257208766], + [0.7878969627066512,0.09217993079584776,0.11200307574009996], + [0.7832218377547097,0.0910726643598616,0.11101883890811226], + [0.7785467128027681,0.08996539792387544,0.11003460207612456], + [0.7738715878508267,0.0888581314878893,0.10905036524413689], + [0.769196462898885,0.08775086505190312,0.10806612841214917], + [0.7645213379469434,0.08664359861591696,0.10708189158016147], + [0.7598462129950019,0.0855363321799308,0.10609765474817377], + [0.7551710880430603,0.08442906574394464,0.10511341791618607], + [0.7504959630911188,0.08332179930795848,0.10412918108419839], + [0.7458208381391772,0.08221453287197232,0.10314494425221069], + [0.7411457131872357,0.08110726643598616,0.10216070742022298], + [0.7364705882352941,0.08,0.10117647058823528], + [0.7317954632833525,0.07889273356401384,0.10019223375624758], + [0.727120338331411,0.07778546712802768,0.0992079969242599], + [0.7224452133794694,0.07667820069204152,0.0982237600922722], + [0.7177700884275279,0.07557093425605536,0.0972395232602845], + [0.7130949634755863,0.0744636678200692,0.0962552864282968], + [0.7084198385236448,0.07335640138408304,0.09527104959630911], + [0.7037447135717032,0.07224913494809689,0.09428681276432141], + [0.6990695886197618,0.07114186851211075,0.09330257593233374], + [0.6943944636678201,0.07003460207612457,0.09231833910034601], + [0.6897193387158785,0.0689273356401384,0.09133410226835831], + [0.685044213763937,0.06782006920415225,0.09034986543637061], + [0.6803690888119954,0.06671280276816609,0.08936562860438292], + [0.6756939638600539,0.06560553633217993,0.08838139177239522], + [0.6710188389081123,0.06449826989619377,0.08739715494040752], + [0.6663437139561708,0.06339100346020761,0.08641291810841982], + [0.6616685890042292,0.06228373702422145,0.08542868127643213], + [0.6569934640522876,0.06117647058823529,0.08444444444444443], + [0.6523183391003461,0.06006920415224913,0.08346020761245673], + [0.6476432141484045,0.05896193771626297,0.08247597078046903], + [0.6403844675124952,0.05720876585928489,0.08149173394848133], + [0.6327566320645905,0.05536332179930796,0.08050749711649365], + [0.625128796616686,0.053517877739331025,0.07952326028450594], + [0.6175009611687813,0.05167243367935409,0.07853902345251824], + [0.6098731257208768,0.04982698961937722,0.07755478662053059], + [0.6022452902729719,0.04798154555940023,0.07657054978854286], + [0.5946174548250673,0.04613610149942329,0.07558631295655516], + [0.5869896193771627,0.044290657439446365,0.07460207612456746], + [0.579361783929258,0.04244521337946944,0.07361783929257976], + [0.5717339484813534,0.0405997693194925,0.07263360246059207], + [0.5641061130334487,0.03875432525951557,0.07164936562860437], + [0.556478277585544,0.03690888119953864,0.07066512879661667], + [0.5488504421376394,0.035063437139561705,0.06968089196462898], + [0.5412226066897348,0.03321799307958477,0.06869665513264128], + [0.5335947712418301,0.03137254901960784,0.06771241830065358], + [0.5259669357939254,0.02952710495963091,0.06672818146866588], + [0.5183391003460208,0.02768166089965398,0.06574394463667818], + [0.5107112648981161,0.025836216839677045,0.0647597078046905], + [0.5030834294502115,0.023990772779700117,0.0637754709727028], + [0.4954555940023068,0.022145328719723183,0.06279123414071511], + [0.4878277585544024,0.020299884659746303,0.061806997308727435], + [0.4801999231064975,0.01845444059976932,0.06082276047673971], + [0.4725720876585929,0.016608996539792385,0.059838523644752006], + [0.46494425221068825,0.014763552479815457,0.05885428681276431], + [0.45731641676278356,0.012918108419838523,0.05787004998077662], + [0.4496885813148789,0.011072664359861595,0.05688581314878892], + [0.44206074586697425,0.00922722029988466,0.05590157631680122], + [0.4344329104190696,0.007381776239907725,0.054917339484813525], + [0.42680507497116493,0.005536332179930797,0.05393310265282583], + [0.4191772395232603,0.0036908881199538626,0.05294886582083813], + [0.4115494040753557,0.0018454440599769348,0.05196462898885043], + [0.403921568627451,0.0,0.05098039215686274] ], + Reds_r: [ + [0.403921568627451,0.0,0.05098039215686274], + [0.4115494040753556,0.001845444059976932,0.05196462898885043], + [0.4191772395232603,0.003690888119953864,0.05294886582083813], + [0.42680507497116493,0.005536332179930796,0.053933102652825825], + [0.4344329104190696,0.007381776239907728,0.054917339484813525], + [0.44206074586697425,0.00922722029988466,0.05590157631680122], + [0.4496885813148789,0.011072664359861591,0.05688581314878892], + [0.45731641676278356,0.012918108419838523,0.05787004998077661], + [0.4649442522106882,0.014763552479815456,0.05885428681276431], + [0.4725720876585929,0.01660899653979239,0.059838523644752006], + [0.4801999231064975,0.01845444059976932,0.06082276047673971], + [0.4878277585544022,0.02029988465974625,0.0618069973087274], + [0.4954555940023068,0.022145328719723183,0.0627912341407151], + [0.5030834294502115,0.023990772779700114,0.0637754709727028], + [0.5107112648981161,0.025836216839677045,0.0647597078046905], + [0.5183391003460208,0.02768166089965398,0.0657439446366782], + [0.5259669357939254,0.02952710495963091,0.06672818146866588], + [0.5335947712418301,0.03137254901960784,0.06771241830065358], + [0.5412226066897348,0.03321799307958478,0.06869665513264128], + [0.5488504421376394,0.035063437139561705,0.06968089196462898], + [0.556478277585544,0.03690888119953864,0.07066512879661667], + [0.5641061130334487,0.03875432525951557,0.07164936562860437], + [0.5717339484813533,0.0405997693194925,0.07263360246059207], + [0.579361783929258,0.04244521337946943,0.07361783929257976], + [0.5869896193771627,0.044290657439446365,0.07460207612456746], + [0.5946174548250673,0.0461361014994233,0.07558631295655516], + [0.602245290272972,0.04798154555940023,0.07657054978854286], + [0.6098731257208766,0.04982698961937716,0.07755478662053056], + [0.6175009611687813,0.05167243367935409,0.07853902345251824], + [0.6251287966166859,0.053517877739331025,0.07952326028450594], + [0.6327566320645905,0.05536332179930796,0.08050749711649365], + [0.6403844675124952,0.05720876585928489,0.08149173394848133], + [0.6476432141484045,0.05896193771626297,0.08247597078046903], + [0.652318339100346,0.060069204152249124,0.08346020761245673], + [0.6569934640522876,0.06117647058823529,0.08444444444444443], + [0.6616685890042292,0.06228373702422145,0.08542868127643213], + [0.6663437139561708,0.06339100346020761,0.08641291810841982], + [0.6710188389081122,0.06449826989619377,0.08739715494040752], + [0.6756939638600539,0.06560553633217993,0.08838139177239522], + [0.6803690888119954,0.06671280276816609,0.08936562860438292], + [0.685044213763937,0.06782006920415225,0.09034986543637061], + [0.6897193387158784,0.06892733564013839,0.09133410226835831], + [0.6943944636678201,0.07003460207612457,0.09231833910034601], + [0.6990695886197617,0.07114186851211073,0.09330257593233371], + [0.7037447135717032,0.07224913494809689,0.09428681276432141], + [0.7084198385236448,0.07335640138408303,0.0952710495963091], + [0.7130949634755863,0.0744636678200692,0.0962552864282968], + [0.7177700884275279,0.07557093425605536,0.0972395232602845], + [0.7224452133794694,0.07667820069204152,0.0982237600922722], + [0.727120338331411,0.07778546712802767,0.09920799692425988], + [0.7317954632833525,0.07889273356401384,0.10019223375624758], + [0.7364705882352941,0.08,0.10117647058823528], + [0.7411457131872357,0.08110726643598616,0.10216070742022298], + [0.7458208381391772,0.0822145328719723,0.10314494425221067], + [0.7504959630911188,0.08332179930795848,0.10412918108419839], + [0.7551710880430603,0.08442906574394464,0.10511341791618607], + [0.7598462129950019,0.08553633217993079,0.10609765474817377], + [0.7645213379469434,0.08664359861591694,0.10708189158016146], + [0.769196462898885,0.0877508650519031,0.10806612841214917], + [0.7738715878508265,0.08885813148788926,0.10905036524413686], + [0.7785467128027681,0.08996539792387542,0.11003460207612456], + [0.7832218377547097,0.09107266435986158,0.11101883890811226], + [0.7878969627066512,0.09217993079584774,0.11200307574009996], + [0.7925720876585928,0.0932871972318339,0.11298731257208766], + [0.7971856978085351,0.09519415609381007,0.11418685121107267], + [0.8016147635524797,0.09950019223375625,0.1160322952710496], + [0.8060438292964244,0.10380622837370236,0.1178777393310265], + [0.810472895040369,0.1081122645136486,0.11972318339100346], + [0.8149019607843137,0.11241830065359477,0.12156862745098039], + [0.8193310265282583,0.11672433679354094,0.12341407151095732], + [0.8237600922722029,0.12103037293348712,0.12525951557093426], + [0.8281891580161476,0.1253364090734333,0.12710495963091117], + [0.8326182237600922,0.12964244521337948,0.12895040369088812], + [0.8370472895040368,0.13394848135332565,0.13079584775086506], + [0.8414763552479815,0.13825451749327178,0.13264129181084194], + [0.8459054209919261,0.142560553633218,0.1344867358708189], + [0.8503344867358708,0.1468665897731642,0.13633217993079585], + [0.8547635524798154,0.15117262591311034,0.13817762399077277], + [0.85919261822376,0.15547866205305652,0.1400230680507497], + [0.8636216839677047,0.1597846981930027,0.14186851211072665], + [0.8680507497116493,0.16409073433294885,0.14371395617070357], + [0.8724798154555939,0.16839677047289503,0.1455594002306805], + [0.8769088811995386,0.17270280661284115,0.14740484429065742], + [0.8813379469434832,0.1770088427527874,0.14925028835063436], + [0.8857670126874279,0.18131487889273357,0.1510957324106113], + [0.8901960784313725,0.18562091503267975,0.15294117647058825], + [0.8946251441753171,0.18992695117262592,0.15478662053056516], + [0.8990542099192618,0.1942329873125721,0.1566320645905421], + [0.9034832756632064,0.19853902345251828,0.15847750865051902], + [0.907912341407151,0.20284505959246443,0.16032295271049596], + [0.9123414071510957,0.20715109573241056,0.16216839677047287], + [0.9167704728950403,0.2114571318723568,0.16401384083044981], + [0.921199538638985,0.21576316801230297,0.16585928489042676], + [0.9256286043829296,0.22006920415224915,0.16770472895040367], + [0.9300576701268742,0.22437524029219533,0.1695501730103806], + [0.9344867358708189,0.22868127643214148,0.17139561707035755], + [0.9378085351787774,0.23354094579008075,0.17393310265282583], + [0.9392848904267589,0.23932333717800847,0.1776239907727797], + [0.9407612456747405,0.2451057285659361,0.1813148788927335], + [0.942237600922722,0.2508881199538639,0.18500576701268742], + [0.9437139561707035,0.25667051134179164,0.1886966551326413], + [0.9451903114186851,0.26245290272971933,0.19238754325259516], + [0.9466666666666667,0.26823529411764707,0.19607843137254902], + [0.9481430219146482,0.2740176855055748,0.1997693194925029], + [0.9496193771626298,0.2798000768935025,0.20346020761245676], + [0.9510957324106113,0.28558246828143025,0.2071510957324106], + [0.9525720876585928,0.2913648596693579,0.21084198385236444], + [0.9540484429065744,0.2971472510572857,0.21453287197231835], + [0.9555247981545559,0.30292964244521337,0.2182237600922722], + [0.9570011534025374,0.3087120338331411,0.22191464821222606], + [0.9584775086505191,0.31449442522106885,0.22560553633217995], + [0.9599538638985006,0.32027681660899654,0.2292964244521338], + [0.9614302191464821,0.3260592079969243,0.23298731257208766], + [0.9629065743944636,0.33184159938485197,0.23667820069204154], + [0.9643829296424452,0.3376239907727796,0.24036908881199534], + [0.9658592848904267,0.3434063821607074,0.24405997693194925], + [0.9673356401384082,0.34918877354863515,0.24775086505190314], + [0.9688119953863898,0.3549711649365629,0.251441753171857], + [0.9702883506343714,0.3607535563244906,0.25513264129181085], + [0.9717647058823529,0.3665359477124183,0.25882352941176473], + [0.9732410611303345,0.37231833910034606,0.26251441753171856], + [0.974717416378316,0.37810073048827375,0.26620530565167244], + [0.9761937716262975,0.3838831218762014,0.26989619377162627], + [0.9776701268742791,0.3896655132641292,0.2735870818915802], + [0.9791464821222606,0.3954479046520569,0.27727797001153404], + [0.9806228373702421,0.4012302960399846,0.2809688581314879], + [0.9820991926182236,0.40701268742791236,0.28465974625144175], + [0.9835755478662053,0.4127950788158401,0.28835063437139563], + [0.9843752402921953,0.4181468665897732,0.2926566705113418], + [0.9844982698961937,0.42306805074971165,0.2975778546712803], + [0.9846212995001922,0.42798923490965013,0.30249903883121876], + [0.9847443291041906,0.43291041906958866,0.3074202229911573], + [0.9848673587081891,0.43783160322952697,0.3123414071510956], + [0.9849903883121875,0.4427527873894656,0.31726259131103424], + [0.985113417916186,0.4476739715494041,0.3221837754709727], + [0.9852364475201845,0.45259515570934256,0.32710495963091124], + [0.9853594771241829,0.45751633986928103,0.3320261437908497], + [0.9854825067281815,0.46243752402921956,0.3369473279507882], + [0.98560553633218,0.46735870818915803,0.34186851211072666], + [0.9857285659361784,0.4722798923490965,0.34678969627066514], + [0.9858515955401769,0.477201076509035,0.3517108804306036], + [0.9859746251441753,0.48212226066897346,0.35663206459054214], + [0.9860976547481738,0.48704344482891193,0.3615532487504806], + [0.9862206843521722,0.4919646289888504,0.3664744329104191], + [0.9863437139561707,0.49688581314878894,0.37139561707035756], + [0.9864667435601692,0.5018069973087274,0.3763168012302961], + [0.9865897731641676,0.5067281814686659,0.38123798539023457], + [0.9867128027681661,0.5116493656286044,0.38615916955017304], + [0.9868358323721645,0.5165705497885427,0.3910803537101114], + [0.986958861976163,0.5214917339484814,0.39600153787005], + [0.9870818915801615,0.5264129181084198,0.40092272202998847], + [0.9872049211841599,0.5313341022683583,0.405843906189927], + [0.9873279507881584,0.5362552864282968,0.41076509034986547], + [0.9874509803921568,0.5411764705882353,0.41568627450980394], + [0.9875740099961553,0.5460976547481737,0.4206074586697425], + [0.9876970396001539,0.5510188389081122,0.42552864282968095], + [0.9878200692041523,0.5559400230680507,0.4304498269896194], + [0.9879430988081508,0.5608612072279893,0.4353710111495579], + [0.9880661284121492,0.5657823913879276,0.44029219530949637], + [0.9881891580161477,0.5707035755478662,0.44521337946943484], + [0.9882352941176471,0.5757016532103036,0.4506728181468666], + [0.9882352941176471,0.5807458669742407,0.45645520953479435], + [0.9882352941176471,0.5857900807381776,0.46223760092272204], + [0.9882352941176471,0.5908342945021146,0.4680199923106498], + [0.9882352941176471,0.5958785082660514,0.4738023836985773], + [0.9882352941176471,0.6009227220299884,0.4795847750865052], + [0.9882352941176471,0.6059669357939254,0.4853671664744329], + [0.9882352941176471,0.6110111495578623,0.49114955786236064], + [0.9882352941176471,0.6160553633217992,0.4969319492502884], + [0.9882352941176471,0.6210995770857362,0.5027143406382161], + [0.9882352941176471,0.6261437908496732,0.5084967320261438], + [0.9882352941176471,0.6311880046136101,0.5142791234140716], + [0.9882352941176471,0.6362322183775471,0.5200615148019992], + [0.9882352941176471,0.641276432141484,0.5258439061899269], + [0.9882352941176471,0.6463206459054209,0.5316262975778546], + [0.9882352941176471,0.6513648596693579,0.5374086889657824], + [0.9882352941176471,0.6564090734332948,0.5431910803537101], + [0.9882352941176471,0.6614532871972318,0.5489734717416378], + [0.9882352941176471,0.6664975009611688,0.5547558631295656], + [0.9882352941176471,0.6715417147251057,0.5605382545174933], + [0.9882352941176471,0.6765859284890425,0.5663206459054209], + [0.9882352941176471,0.6816301422529796,0.5721030372933487], + [0.9882352941176471,0.6866743560169165,0.5778854286812765], + [0.9882352941176471,0.6917185697808534,0.5836678200692041], + [0.9882352941176471,0.6967627835447904,0.5894502114571318], + [0.9882352941176471,0.7018069973087273,0.5952326028450596], + [0.9882352941176471,0.7068512110726644,0.6010149942329873], + [0.9882352941176471,0.7118954248366013,0.606797385620915], + [0.9882352941176471,0.7169396386005382,0.6125797770088428], + [0.9882352941176471,0.7219838523644752,0.6183621683967705], + [0.9882352941176471,0.7270280661284121,0.6241445597846982], + [0.9882352941176471,0.732072279892349,0.6299269511726259], + [0.9884198385236448,0.7367474048442906,0.6358938869665514], + [0.9886658977316417,0.7412995001922337,0.641922337562476], + [0.9889119569396386,0.7458515955401768,0.6479507881584006], + [0.9891580161476355,0.7504036908881199,0.6539792387543253], + [0.9894040753556325,0.7549557862360629,0.6600076893502497], + [0.9896501345636294,0.7595078815840061,0.6660361399461745], + [0.9898961937716263,0.7640599769319492,0.6720645905420992], + [0.9901422529796232,0.7686120722798923,0.6780930411380238], + [0.9903883121876201,0.7731641676278354,0.6841214917339484], + [0.990634371395617,0.7777162629757786,0.6901499423298731], + [0.9908804306036141,0.7822683583237217,0.6961783929257978], + [0.991126489811611,0.7868204536716648,0.7022068435217224], + [0.9913725490196079,0.7913725490196079,0.7082352941176471], + [0.9916186082276048,0.795924644367551,0.7142637447135717], + [0.9918646674356018,0.800476739715494,0.7202921953094963], + [0.9921107266435987,0.8050288350634371,0.726320645905421], + [0.9923567858515956,0.8095809304113802,0.7323490965013456], + [0.9926028450595925,0.8141330257593233,0.7383775470972702], + [0.9928489042675894,0.8186851211072664,0.7444059976931949], + [0.9930949634755863,0.8232372164552095,0.7504344482891195], + [0.9933410226835833,0.8277893118031525,0.756462898885044], + [0.9935870818915802,0.8323414071510957,0.7624913494809689], + [0.9938331410995771,0.8368935024990388,0.7685198000768935], + [0.994079200307574,0.8414455978469819,0.7745482506728181], + [0.9943252595155709,0.845997693194925,0.7805767012687428], + [0.9945713187235679,0.8505497885428681,0.7866051518646674], + [0.9948173779315648,0.8551018838908112,0.792633602460592], + [0.9950634371395617,0.8596539792387543,0.7986620530565167], + [0.9953094963475586,0.8642060745866974,0.8046905036524413], + [0.9955555555555555,0.8687581699346405,0.8107189542483659], + [0.9958016147635524,0.8733102652825836,0.8167474048442906], + [0.9960476739715494,0.8778623606305267,0.8227758554402153], + [0.9961860822760477,0.8806920415224914,0.8267589388696654], + [0.9963091118800461,0.883275663206459,0.8304498269896193], + [0.9964321414840446,0.8858592848904268,0.8341407151095732], + [0.996555171088043,0.8884429065743945,0.8378316032295271], + [0.9966782006920415,0.891026528258362,0.8415224913494809], + [0.99680123029604,0.8936101499423299,0.8452133794694348], + [0.9969242599000384,0.8961937716262975,0.8489042675893886], + [0.9970472895040369,0.8987773933102653,0.8525951557093425], + [0.9971703191080353,0.9013610149942329,0.8562860438292964], + [0.9972933487120338,0.9039446366782007,0.8599769319492503], + [0.9974163783160324,0.9065282583621684,0.8636678200692042], + [0.9975394079200308,0.9091118800461361,0.867358708189158], + [0.9976624375240293,0.9116955017301038,0.8710495963091118], + [0.9977854671280277,0.9142791234140715,0.8747404844290657], + [0.9979084967320262,0.9168627450980392,0.8784313725490196], + [0.9980315263360247,0.919446366782007,0.8821222606689735], + [0.9981545559400231,0.9220299884659746,0.8858131487889274], + [0.9982775855440216,0.9246136101499424,0.8895040369088811], + [0.99840061514802,0.92719723183391,0.893194925028835], + [0.9985236447520185,0.9297808535178778,0.8968858131487889], + [0.998646674356017,0.9323644752018454,0.9005767012687427], + [0.9987697039600154,0.9349480968858132,0.9042675893886967], + [0.9988927335640139,0.9375317185697809,0.9079584775086504], + [0.9990157631680123,0.9401153402537485,0.9116493656286043], + [0.9991387927720108,0.9426989619377163,0.9153402537485582], + [0.9992618223760092,0.945282583621684,0.9190311418685121], + [0.9993848519800077,0.9478662053056517,0.922722029988466], + [0.9995078815840062,0.9504498269896194,0.9264129181084199], + [0.9996309111880046,0.9530334486735871,0.9301038062283737], + [0.9997539407920031,0.9556170703575548,0.9337946943483275], + [0.9998769703960015,0.9582006920415225,0.9374855824682814], + [1.0,0.9607843137254902,0.9411764705882353] ], + Set1: [ + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6] ], + Set1_r: [ + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.6,0.6,0.6], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.9686274509803922,0.5058823529411764,0.7490196078431373], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [0.6509803921568628,0.33725490196078434,0.1568627450980392], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,1.0,0.2], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.4980392156862745,0.0], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.596078431372549,0.3058823529411765,0.6392156862745098], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.30196078431372547,0.6862745098039216,0.2901960784313726], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.21568627450980393,0.49411764705882355,0.7215686274509804], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745], + [0.8941176470588236,0.10196078431372549,0.10980392156862745] ], + Set2: [ + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254] ], + Set2_r: [ + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [0.8980392156862745,0.7686274509803922,0.5803921568627451], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [1.0,0.8509803921568627,0.1843137254901961], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.6509803921568628,0.8470588235294118,0.32941176470588235], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.9058823529411765,0.5411764705882353,0.7647058823529411], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.5529411764705883,0.6274509803921569,0.796078431372549], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.9882352941176471,0.5529411764705883,0.3843137254901961], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4,0.7607843137254902,0.6470588235294118] ], + Set3: [ + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883] ], + Set3_r: [ + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [1.0,0.9294117647058824,0.43529411764705883], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.8,0.9215686274509803,0.7725490196078432], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.7372549019607844,0.5019607843137255,0.7411764705882353], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.9882352941176471,0.803921568627451,0.8980392156862745], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.7019607843137254,0.8705882352941177,0.4117647058823529], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.9921568627450981,0.7058823529411765,0.3843137254901961], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.5019607843137255,0.6941176470588235,0.8274509803921568], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.984313725490196,0.5019607843137255,0.4470588235294118], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [0.7450980392156863,0.7294117647058823,0.8549019607843137], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7019607843137254], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451], + [0.5529411764705883,0.8274509803921568,0.7803921568627451] ], + Spectral: [ + [0.6196078431372549,0.00392156862745098,0.25882352941176473], + [0.6280661284121491,0.013302575932333718,0.26082276047673975], + [0.6365244136870435,0.022683583237216455,0.26282199154171476], + [0.6449826989619377,0.03206459054209919,0.2648212226066898], + [0.6534409842368321,0.04144559784698193,0.2668204536716648], + [0.6618992695117263,0.050826605151864664,0.26881968473663975], + [0.6703575547866205,0.0602076124567474,0.27081891580161477], + [0.6788158400615149,0.06958861976163014,0.2728181468665898], + [0.6872741253364091,0.07896962706651288,0.2748173779315648], + [0.6957324106113034,0.08835063437139562,0.2768166089965398], + [0.7041906958861976,0.09773164167627835,0.27881584006151483], + [0.7126489811610919,0.10711264898116109,0.28081507112648985], + [0.7211072664359862,0.11649365628604381,0.28281430219146486], + [0.7295655517108804,0.12587466359092656,0.2848135332564398], + [0.7380238369857748,0.1352556708958093,0.28681276432141484], + [0.746482122260669,0.14463667820069204,0.28881199538638985], + [0.7549404075355632,0.15401768550557476,0.29081122645136487], + [0.7633986928104575,0.1633986928104575,0.2928104575163399], + [0.7718569780853518,0.17277970011534027,0.2948096885813149], + [0.7803152633602461,0.182160707420223,0.2968089196462899], + [0.7887735486351404,0.19154171472510573,0.29880815071126493], + [0.7972318339100346,0.20092272202998845,0.3008073817762399], + [0.8056901191849289,0.21030372933487118,0.3028066128412149], + [0.8141484044598232,0.2196847366397539,0.3048058439061899], + [0.8226066897347175,0.22906574394463664,0.30680507497116494], + [0.8310649750096117,0.23844675124951936,0.30880430603613995], + [0.8376778162245291,0.2467512495194156,0.308881199538639], + [0.8424452133794694,0.25397923875432526,0.3070357554786621], + [0.8472126105344099,0.2612072279892349,0.30519031141868513], + [0.8519800076893502,0.26843521722414454,0.3033448673587082], + [0.8567474048442907,0.2756632064590542,0.30149942329873125], + [0.8615148019992311,0.28289119569396387,0.2996539792387543], + [0.8662821991541715,0.2901191849288735,0.2978085351787774], + [0.8710495963091118,0.2973471741637831,0.2959630911188005], + [0.8758169934640523,0.3045751633986928,0.29411764705882354], + [0.8805843906189927,0.3118031526336025,0.2922722029988466], + [0.8853517877739331,0.3190311418685121,0.29042675893886966], + [0.8901191849288735,0.3262591311034217,0.28858131487889277], + [0.894886582083814,0.3334871203383314,0.28673587081891583], + [0.8996539792387543,0.340715109573241,0.2848904267589389], + [0.9044213763936948,0.34794309880815066,0.28304498269896194], + [0.9091887735486351,0.3551710880430603,0.281199538638985], + [0.9139561707035756,0.36239907727797,0.27935409457900806], + [0.9187235678585159,0.3696270665128797,0.2775086505190312], + [0.9234909650134564,0.3768550557477893,0.27566320645905423], + [0.9282583621683967,0.3840830449826989,0.2738177623990773], + [0.9330257593233372,0.3913110342176086,0.27197231833910035], + [0.9377931564782777,0.39853902345251824,0.2701268742791234], + [0.942560553633218,0.4057670126874279,0.2682814302191465], + [0.9473279507881585,0.4129950019223375,0.2664359861591696], + [0.9520953479430989,0.4202229911572472,0.26459054209919264], + [0.9568627450980393,0.42745098039215684,0.2627450980392157], + [0.958246828143022,0.43744713571703187,0.267358708189158], + [0.9596309111880047,0.44744329104190683,0.2719723183391003], + [0.9610149942329873,0.45743944636678197,0.2765859284890427], + [0.96239907727797,0.46743560169165704,0.281199538638985], + [0.9637831603229527,0.47743175701653207,0.28581314878892733], + [0.9651672433679355,0.48742791234140703,0.2904267589388696], + [0.9665513264129182,0.49742406766628217,0.295040369088812], + [0.9679354094579008,0.5074202229911572,0.2996539792387543], + [0.9693194925028835,0.5174163783160323,0.30426758938869664], + [0.9707035755478662,0.5274125336409072,0.3088811995386389], + [0.972087658592849,0.5374086889657823,0.3134948096885813], + [0.9734717416378317,0.5474048442906574,0.3181084198385236], + [0.9748558246828143,0.5574009996155325,0.32272202998846594], + [0.976239907727797,0.5673971549404074,0.32733564013840827], + [0.9776239907727797,0.5773933102652824,0.33194925028835054], + [0.9790080738177624,0.5873894655901576,0.3365628604382929], + [0.9803921568627452,0.5973856209150326,0.34117647058823525], + [0.9817762399077278,0.6073817762399076,0.3457900807381776], + [0.9831603229527105,0.6173779315647827,0.3504036908881199], + [0.9845444059976932,0.6273740868896577,0.3550173010380622], + [0.9859284890426759,0.6373702422145328,0.35963091118800455], + [0.9873125720876587,0.6473663975394078,0.3642445213379469], + [0.9886966551326413,0.6573625528642827,0.36885813148788915], + [0.990080738177624,0.6673587081891579,0.37347174163783153], + [0.9914648212226067,0.677354863514033,0.37808535178777386], + [0.9922337562475971,0.6861976163014224,0.38362168396770463], + [0.9923875432525952,0.6938869665513263,0.3900807381776239], + [0.9925413302575933,0.7015763168012302,0.39653979238754317], + [0.9926951172625913,0.7092656670511341,0.40299884659746243], + [0.9928489042675894,0.716955017301038,0.40945790080738165], + [0.9930026912725874,0.7246443675509417,0.41591695501730086], + [0.9931564782775856,0.7323337178008458,0.4223760092272202], + [0.9933102652825836,0.7400230680507497,0.42883506343713945], + [0.9934640522875817,0.7477124183006535,0.4352941176470587], + [0.9936178392925799,0.7554017685505574,0.441753171856978], + [0.9937716262975779,0.7630911188004613,0.44821222606689726], + [0.993925413302576,0.7707804690503652,0.4546712802768165], + [0.994079200307574,0.778469819300269,0.4611303344867358], + [0.9942329873125721,0.7861591695501728,0.46758938869665495], + [0.9943867743175702,0.7938485198000769,0.47404844290657433], + [0.9945405613225683,0.8015378700499807,0.48050749711649354], + [0.9946943483275663,0.8092272202998846,0.48696655132641287], + [0.9948481353325644,0.8169165705497885,0.4934256055363321], + [0.9950019223375625,0.8246059207996924,0.4998846597462514], + [0.9951557093425606,0.8322952710495963,0.5063437139561706], + [0.9953094963475586,0.8399846212995001,0.5128027681660899], + [0.9954632833525567,0.8476739715494039,0.519261822376009], + [0.9956170703575548,0.855363321799308,0.5257208765859285], + [0.9957708573625529,0.8630526720492118,0.5321799307958477], + [0.9959246443675509,0.8707420222991157,0.5386389850057669], + [0.996078431372549,0.8784313725490196,0.5450980392156862], + [0.9962322183775472,0.88319876970396,0.5530949634755863], + [0.9963860053825452,0.8879661668589004,0.5610918877354863], + [0.9965397923875433,0.8927335640138409,0.5690888119953863], + [0.9966935793925413,0.8975009611687812,0.5770857362552863], + [0.9968473663975395,0.9022683583237217,0.5850826605151864], + [0.9970011534025375,0.907035755478662,0.5930795847750865], + [0.9971549404075356,0.9118031526336025,0.6010765090349866], + [0.9973087274125336,0.9165705497885429,0.6090734332948865], + [0.9974625144175318,0.9213379469434833,0.6170703575547866], + [0.9976163014225298,0.9261053440984237,0.6250672818146866], + [0.9977700884275279,0.930872741253364,0.6330642060745867], + [0.9979238754325259,0.9356401384083044,0.6410611303344866], + [0.998077662437524,0.9404075355632449,0.6490580545943867], + [0.9982314494425221,0.9451749327181853,0.6570549788542868], + [0.9983852364475202,0.9499423298731258,0.6650519031141868], + [0.9985390234525182,0.9547097270280661,0.6730488273740869], + [0.9986928104575163,0.9594771241830066,0.681045751633987], + [0.9988465974625145,0.9642445213379469,0.689042675893887], + [0.9990003844675125,0.9690119184928874,0.697039600153787], + [0.9991541714725106,0.9737793156478277,0.7050365244136869], + [0.9993079584775086,0.9785467128027682,0.7130334486735871], + [0.9994617454825068,0.9833141099577085,0.7210303729334872], + [0.9996155324875048,0.988081507112649,0.7290272971933871], + [0.9997693194925029,0.9928489042675894,0.7370242214532872], + [0.9999231064975009,0.9976163014225298,0.7450211457131872], + [0.998077662437524,0.9992310649750096,0.7460207612456747], + [0.9942329873125721,0.9976931949250288,0.7400230680507497], + [0.9903883121876201,0.9961553248750481,0.7340253748558248], + [0.9865436370626682,0.9946174548250672,0.7280276816608997], + [0.9826989619377164,0.9930795847750865,0.7220299884659749], + [0.9788542868127643,0.9915417147251058,0.7160322952710496], + [0.9750096116878124,0.9900038446751249,0.7100346020761246], + [0.9711649365628605,0.9884659746251442,0.7040369088811996], + [0.9673202614379085,0.9869281045751634,0.6980392156862746], + [0.9634755863129566,0.9853902345251826,0.6920415224913495], + [0.9596309111880047,0.9838523644752019,0.6860438292964245], + [0.9557862360630527,0.9823144944252211,0.6800461361014996], + [0.9519415609381008,0.9807766243752404,0.6740484429065745], + [0.9480968858131489,0.9792387543252595,0.6680507497116495], + [0.944252210688197,0.9777008842752788,0.6620530565167244], + [0.940407535563245,0.976163014225298,0.6560553633217994], + [0.9365628604382931,0.9746251441753172,0.6500576701268744], + [0.932718185313341,0.9730872741253365,0.6440599769319494], + [0.9288735101883892,0.9715494040753557,0.6380622837370243], + [0.9250288350634372,0.9700115340253749,0.6320645905420993], + [0.9211841599384853,0.9684736639753941,0.6260668973471745], + [0.9173394848135333,0.9669357939254134,0.6200692041522493], + [0.9134948096885814,0.9653979238754326,0.6140715109573243], + [0.9096501345636295,0.9638600538254518,0.6080738177623992], + [0.9058054594386775,0.9623221837754711,0.6020761245674742], + [0.9019607843137256,0.9607843137254902,0.5960784313725491], + [0.8928873510188392,0.9570934256055365,0.5979238754325259], + [0.8838139177239526,0.9534025374855826,0.5997693194925028], + [0.874740484429066,0.9497116493656287,0.6016147635524798], + [0.8656670511341794,0.9460207612456749,0.6034602076124567], + [0.8565936178392929,0.942329873125721,0.6053056516724337], + [0.8475201845444063,0.9386389850057671,0.6071510957324106], + [0.8384467512495197,0.9349480968858133,0.6089965397923875], + [0.8293733179546331,0.9312572087658594,0.6108419838523644], + [0.8202998846597465,0.9275663206459055,0.6126874279123413], + [0.8112264513648599,0.9238754325259517,0.6145328719723183], + [0.8021530180699736,0.920184544405998,0.6163783160322952], + [0.7930795847750868,0.916493656286044,0.6182237600922722], + [0.7840061514802001,0.9128027681660901,0.6200692041522491], + [0.7749327181853136,0.9091118800461362,0.6219146482122261], + [0.765859284890427,0.9054209919261824,0.623760092272203], + [0.7567858515955403,0.9017301038062285,0.6256055363321799], + [0.7477124183006538,0.8980392156862746,0.6274509803921569], + [0.7386389850057672,0.8943483275663208,0.6292964244521337], + [0.7295655517108807,0.8906574394463669,0.6311418685121107], + [0.720492118415994,0.8869665513264131,0.6329873125720876], + [0.7114186851211075,0.8832756632064592,0.6348327566320646], + [0.7023452518262209,0.8795847750865053,0.6366782006920415], + [0.6932718185313343,0.8758938869665515,0.6385236447520184], + [0.6841983852364477,0.8722029988465976,0.6403690888119954], + [0.6751249519415612,0.8685121107266437,0.6422145328719723], + [0.6652825836216842,0.8645905420991927,0.6432141484044599], + [0.6546712802768171,0.8604382929642448,0.6433679354094579], + [0.6440599769319495,0.8562860438292965,0.643521722414456], + [0.6334486735870821,0.8521337946943485,0.6436755094194541], + [0.6228373702422147,0.8479815455594003,0.6438292964244522], + [0.6122260668973474,0.8438292964244523,0.6439830834294502], + [0.60161476355248,0.8396770472895041,0.6441368704344483], + [0.5910034602076126,0.835524798154556,0.6442906574394464], + [0.5803921568627453,0.8313725490196079,0.6444444444444445], + [0.5697808535178779,0.8272202998846598,0.6445982314494426], + [0.5591695501730105,0.8230680507497117,0.6447520184544406], + [0.5485582468281431,0.8189158016147636,0.6449058054594388], + [0.5379469434832758,0.8147635524798155,0.6450595924644368], + [0.5273356401384084,0.8106113033448674,0.6452133794694349], + [0.516724336793541,0.8064590542099193,0.6453671664744329], + [0.5061130334486736,0.8023068050749712,0.6455209534794311], + [0.4955017301038063,0.7981545559400232,0.6456747404844291], + [0.48489042675893923,0.7940023068050751,0.6458285274894272], + [0.47427912341407163,0.7898500576701268,0.6459823144944252], + [0.46366782006920426,0.7856978085351788,0.6461361014994234], + [0.4530565167243369,0.7815455594002307,0.6462898885044214], + [0.4424452133794695,0.7773933102652826,0.6464436755094195], + [0.43183391003460214,0.7732410611303344,0.6465974625144175], + [0.42122260668973477,0.7690888119953864,0.6467512495194156], + [0.4106113033448674,0.7649365628604383,0.6469050365244137], + [0.4,0.7607843137254902,0.6470588235294118], + [0.39200307574009996,0.7518646674356017,0.6507497116493657], + [0.38400615148019995,0.7429450211457131,0.6544405997693196], + [0.3760092272202999,0.7340253748558246,0.6581314878892733], + [0.3680123029603999,0.7251057285659361,0.6618223760092272], + [0.3600153787004998,0.7161860822760476,0.6655132641291811], + [0.35201845444059976,0.7072664359861591,0.669204152249135], + [0.34402153018069975,0.6983467896962706,0.6728950403690889], + [0.33602460592079997,0.6894271434063823,0.6765859284890426], + [0.3280276816608997,0.6805074971164936,0.6802768166089965], + [0.3200307574009996,0.6715878508266051,0.6839677047289504], + [0.31203383314109956,0.6626682045367166,0.6876585928489043], + [0.30403690888119955,0.6537485582468281,0.6913494809688582], + [0.29603998462129955,0.6448289119569396,0.6950403690888121], + [0.2880430603613995,0.6359092656670511,0.6987312572087659], + [0.2800461361014994,0.6269896193771626,0.7024221453287197], + [0.27204921184159936,0.6180699730872741,0.7061130334486736], + [0.26405228758169935,0.6091503267973857,0.7098039215686275], + [0.2560553633217993,0.6002306805074971,0.7134948096885814], + [0.24805843906189928,0.5913110342176086,0.7171856978085352], + [0.24006151480199925,0.58239138792772,0.7208765859284891], + [0.23206459054209921,0.5734717416378317,0.7245674740484429], + [0.22406766628219915,0.564552095347943,0.7282583621683968], + [0.21607074202229912,0.5556324490580546,0.7319492502883507], + [0.2080738177623993,0.5467128027681664,0.7356401384083044], + [0.20007689350249905,0.5377931564782776,0.7393310265282584], + [0.19946174548250672,0.5289504036908881,0.7391003460207612], + [0.20622837370242214,0.5201845444059977,0.7349480968858132], + [0.21299500192233756,0.5114186851211072,0.730795847750865], + [0.21976163014225297,0.5026528258362168,0.726643598615917], + [0.2265282583621684,0.4938869665513264,0.7224913494809688], + [0.2332948865820838,0.485121107266436,0.7183391003460208], + [0.24006151480199922,0.47635524798154555,0.7141868512110727], + [0.24682814302191466,0.4675893886966551,0.7100346020761246], + [0.25359477124183005,0.45882352941176474,0.7058823529411765], + [0.2603613994617455,0.45005767012687425,0.7017301038062284], + [0.2671280276816609,0.4412918108419839,0.6975778546712803], + [0.27389465590157636,0.4325259515570934,0.6934256055363321], + [0.2806612841214917,0.423760092272203,0.6892733564013841], + [0.2874279123414072,0.4149942329873126,0.6851211072664359], + [0.2941945405613224,0.4062283737024224,0.680968858131488], + [0.300961168781238,0.3974625144175317,0.6768166089965397], + [0.30772779700115344,0.3886966551326413,0.6726643598615917], + [0.31449442522106885,0.37993079584775086,0.6685121107266436], + [0.3212610534409842,0.3711649365628604,0.6643598615916955], + [0.3280276816608997,0.36239907727797005,0.6602076124567474], + [0.3347943098808151,0.35363321799307956,0.6560553633217993], + [0.3415609381007305,0.3448673587081892,0.6519031141868512], + [0.34832756632064593,0.33610149942329876,0.647750865051903], + [0.35509419454056135,0.3273356401384083,0.643598615916955], + [0.36186082276047676,0.3185697808535179,0.6394463667820068], + [0.3686274509803922,0.30980392156862746,0.6352941176470588] ], + Spectral_r: [ + [0.3686274509803922,0.30980392156862746,0.6352941176470588], + [0.36186082276047676,0.3185697808535179,0.6394463667820068], + [0.35509419454056135,0.3273356401384083,0.643598615916955], + [0.34832756632064593,0.33610149942329876,0.647750865051903], + [0.3415609381007305,0.3448673587081892,0.6519031141868512], + [0.3347943098808151,0.35363321799307956,0.6560553633217993], + [0.3280276816608997,0.36239907727797,0.6602076124567474], + [0.32126105344098427,0.3711649365628604,0.6643598615916955], + [0.31449442522106885,0.37993079584775086,0.6685121107266436], + [0.30772779700115344,0.3886966551326413,0.6726643598615917], + [0.300961168781238,0.3974625144175317,0.6768166089965397], + [0.29419454056132255,0.40622837370242215,0.6809688581314879], + [0.2874279123414072,0.4149942329873126,0.6851211072664359], + [0.2806612841214917,0.423760092272203,0.6892733564013841], + [0.2738946559015763,0.43252595155709345,0.6934256055363321], + [0.2671280276816609,0.4412918108419839,0.6975778546712803], + [0.2603613994617455,0.45005767012687425,0.7017301038062284], + [0.25359477124183005,0.4588235294117647,0.7058823529411765], + [0.24682814302191464,0.4675893886966551,0.7100346020761246], + [0.24006151480199922,0.47635524798154555,0.7141868512110727], + [0.2332948865820838,0.485121107266436,0.7183391003460208], + [0.22652825836216842,0.4938869665513264,0.7224913494809688], + [0.21976163014225297,0.5026528258362168,0.726643598615917], + [0.21299500192233756,0.5114186851211073,0.730795847750865], + [0.20622837370242214,0.5201845444059977,0.7349480968858132], + [0.19946174548250672,0.5289504036908881,0.7391003460207612], + [0.20007689350249905,0.5377931564782775,0.7393310265282584], + [0.20807381776239908,0.546712802768166,0.7356401384083046], + [0.21607074202229912,0.5556324490580545,0.7319492502883507], + [0.22406766628219915,0.564552095347943,0.7282583621683968], + [0.23206459054209921,0.5734717416378315,0.7245674740484429], + [0.24006151480199922,0.58239138792772,0.720876585928489], + [0.24805843906189928,0.5913110342176086,0.7171856978085352], + [0.25605536332179923,0.6002306805074971,0.7134948096885814], + [0.26405228758169935,0.6091503267973856,0.7098039215686275], + [0.27204921184159936,0.6180699730872741,0.7061130334486736], + [0.2800461361014994,0.6269896193771626,0.7024221453287197], + [0.28804306036139943,0.6359092656670511,0.6987312572087659], + [0.2960399846212995,0.6448289119569396,0.6950403690888121], + [0.30403690888119955,0.6537485582468281,0.6913494809688582], + [0.31203383314109956,0.6626682045367166,0.6876585928489043], + [0.32003075740099957,0.6715878508266051,0.6839677047289504], + [0.3280276816608997,0.6805074971164936,0.6802768166089965], + [0.33602460592079975,0.6894271434063821,0.6765859284890428], + [0.34402153018069975,0.6983467896962706,0.6728950403690889], + [0.35201845444059976,0.7072664359861591,0.669204152249135], + [0.3600153787004998,0.7161860822760476,0.6655132641291811], + [0.3680123029603999,0.7251057285659361,0.6618223760092272], + [0.3760092272202999,0.7340253748558246,0.6581314878892734], + [0.3840061514801999,0.7429450211457131,0.6544405997693196], + [0.39200307574009996,0.7518646674356017,0.6507497116493657], + [0.4,0.7607843137254902,0.6470588235294118], + [0.4106113033448674,0.7649365628604382,0.6469050365244137], + [0.42122260668973466,0.7690888119953864,0.6467512495194156], + [0.4318339100346021,0.7732410611303344,0.6465974625144175], + [0.4424452133794694,0.7773933102652826,0.6464436755094195], + [0.4530565167243368,0.7815455594002306,0.6462898885044214], + [0.46366782006920404,0.7856978085351787,0.6461361014994234], + [0.47427912341407147,0.7898500576701268,0.6459823144944252], + [0.48489042675893884,0.7940023068050749,0.6458285274894272], + [0.49550173010380616,0.798154555940023,0.6456747404844291], + [0.5061130334486734,0.8023068050749711,0.6455209534794311], + [0.5167243367935409,0.8064590542099193,0.6453671664744329], + [0.5273356401384082,0.8106113033448673,0.6452133794694349], + [0.5379469434832755,0.8147635524798155,0.6450595924644368], + [0.5485582468281429,0.8189158016147635,0.6449058054594388], + [0.5591695501730101,0.8230680507497116,0.6447520184544406], + [0.5697808535178777,0.8272202998846597,0.6445982314494426], + [0.580392156862745,0.8313725490196078,0.6444444444444445], + [0.5910034602076123,0.8355247981545559,0.6442906574394464], + [0.6016147635524797,0.839677047289504,0.6441368704344483], + [0.612226066897347,0.8438292964244521,0.6439830834294502], + [0.6228373702422143,0.8479815455594002,0.6438292964244522], + [0.6334486735870817,0.8521337946943482,0.6436755094194541], + [0.6440599769319489,0.8562860438292963,0.643521722414456], + [0.6546712802768164,0.8604382929642445,0.6433679354094579], + [0.6652825836216838,0.8645905420991926,0.6432141484044599], + [0.6751249519415607,0.8685121107266436,0.6422145328719724], + [0.6841983852364474,0.8722029988465975,0.6403690888119955], + [0.6932718185313339,0.8758938869665513,0.6385236447520185], + [0.7023452518262205,0.8795847750865051,0.6366782006920416], + [0.7114186851211071,0.883275663206459,0.6348327566320646], + [0.7204921184159936,0.8869665513264129,0.6329873125720877], + [0.7295655517108803,0.8906574394463668,0.6311418685121107], + [0.7386389850057669,0.8943483275663207,0.6292964244521339], + [0.7477124183006535,0.8980392156862745,0.6274509803921569], + [0.7567858515955401,0.9017301038062284,0.62560553633218], + [0.7658592848904267,0.9054209919261822,0.6237600922722031], + [0.7749327181853133,0.9091118800461361,0.6219146482122261], + [0.7840061514801998,0.91280276816609,0.6200692041522492], + [0.7930795847750863,0.9164936562860437,0.6182237600922722], + [0.802153018069973,0.9201845444059977,0.6163783160322953], + [0.8112264513648596,0.9238754325259516,0.6145328719723183], + [0.8202998846597462,0.9275663206459054,0.6126874279123414], + [0.8293733179546328,0.9312572087658593,0.6108419838523645], + [0.8384467512495194,0.9349480968858132,0.6089965397923875], + [0.8475201845444059,0.938638985005767,0.6071510957324107], + [0.8565936178392926,0.9423298731257209,0.6053056516724337], + [0.8656670511341791,0.9460207612456747,0.6034602076124568], + [0.8747404844290657,0.9497116493656286,0.6016147635524798], + [0.8838139177239523,0.9534025374855825,0.5997693194925029], + [0.8928873510188389,0.9570934256055363,0.5979238754325259], + [0.9019607843137255,0.9607843137254902,0.596078431372549], + [0.9058054594386774,0.962322183775471,0.6020761245674741], + [0.9096501345636294,0.9638600538254518,0.6080738177623991], + [0.9134948096885813,0.9653979238754326,0.6140715109573242], + [0.9173394848135332,0.9669357939254133,0.6200692041522491], + [0.9211841599384852,0.9684736639753941,0.6260668973471741], + [0.9250288350634371,0.9700115340253749,0.6320645905420992], + [0.9288735101883892,0.9715494040753556,0.6380622837370242], + [0.932718185313341,0.9730872741253365,0.6440599769319493], + [0.936562860438293,0.9746251441753172,0.6500576701268743], + [0.9404075355632449,0.9761630142252979,0.6560553633217993], + [0.9442522106881969,0.9777008842752788,0.6620530565167243], + [0.9480968858131488,0.9792387543252595,0.6680507497116492], + [0.9519415609381008,0.9807766243752403,0.6740484429065744], + [0.9557862360630527,0.9823144944252211,0.6800461361014994], + [0.9596309111880046,0.9838523644752019,0.6860438292964245], + [0.9634755863129566,0.9853902345251826,0.6920415224913494], + [0.9673202614379085,0.9869281045751634,0.6980392156862745], + [0.9711649365628604,0.9884659746251442,0.7040369088811995], + [0.9750096116878124,0.9900038446751249,0.7100346020761246], + [0.9788542868127643,0.9915417147251057,0.7160322952710495], + [0.9826989619377162,0.9930795847750865,0.7220299884659747], + [0.9865436370626682,0.9946174548250672,0.7280276816608997], + [0.9903883121876201,0.9961553248750481,0.7340253748558248], + [0.9942329873125721,0.9976931949250288,0.7400230680507497], + [0.998077662437524,0.9992310649750096,0.7460207612456747], + [0.9999231064975009,0.9976163014225298,0.7450211457131872], + [0.9997693194925029,0.9928489042675894,0.7370242214532872], + [0.9996155324875048,0.988081507112649,0.7290272971933872], + [0.9994617454825068,0.9833141099577086,0.7210303729334872], + [0.9993079584775086,0.9785467128027683,0.7130334486735873], + [0.9991541714725106,0.9737793156478278,0.7050365244136871], + [0.9990003844675125,0.9690119184928874,0.6970396001537871], + [0.9988465974625145,0.964244521337947,0.689042675893887], + [0.9986928104575163,0.9594771241830066,0.681045751633987], + [0.9985390234525182,0.9547097270280662,0.673048827374087], + [0.9983852364475202,0.9499423298731258,0.6650519031141869], + [0.9982314494425221,0.9451749327181853,0.6570549788542869], + [0.998077662437524,0.940407535563245,0.6490580545943868], + [0.9979238754325259,0.9356401384083045,0.6410611303344869], + [0.9977700884275279,0.9308727412533642,0.6330642060745868], + [0.9976163014225298,0.9261053440984237,0.6250672818146867], + [0.9974625144175318,0.9213379469434834,0.6170703575547867], + [0.9973087274125336,0.9165705497885429,0.6090734332948867], + [0.9971549404075356,0.9118031526336026,0.6010765090349867], + [0.9970011534025375,0.9070357554786621,0.5930795847750866], + [0.9968473663975395,0.9022683583237219,0.5850826605151869], + [0.9966935793925413,0.8975009611687813,0.5770857362552866], + [0.9965397923875433,0.892733564013841,0.5690888119953865], + [0.9963860053825452,0.8879661668589005,0.5610918877354865], + [0.9962322183775472,0.8831987697039602,0.5530949634755865], + [0.996078431372549,0.8784313725490197,0.5450980392156864], + [0.995924644367551,0.8707420222991159,0.5386389850057671], + [0.9957708573625529,0.8630526720492121,0.5321799307958479], + [0.9956170703575548,0.8553633217993082,0.5257208765859286], + [0.9954632833525567,0.8476739715494043,0.5192618223760094], + [0.9953094963475586,0.8399846212995004,0.51280276816609], + [0.9951557093425606,0.8322952710495966,0.5063437139561708], + [0.9950019223375625,0.8246059207996926,0.49988465974625157], + [0.9948481353325644,0.8169165705497887,0.4934256055363323], + [0.9946943483275663,0.8092272202998849,0.4869665513264131], + [0.9945405613225683,0.801537870049981,0.4805074971164938], + [0.9943867743175702,0.7938485198000773,0.4740484429065747], + [0.9942329873125721,0.7861591695501733,0.4675893886966553], + [0.994079200307574,0.7784698193002694,0.461130334486736], + [0.993925413302576,0.7707804690503655,0.45467128027681675], + [0.9937716262975779,0.7630911188004615,0.4482122260668975], + [0.9936178392925799,0.7554017685505577,0.44175317185697827], + [0.9934640522875817,0.7477124183006538,0.435294117647059], + [0.9933102652825837,0.7400230680507499,0.42883506343713973], + [0.9931564782775856,0.732333717800846,0.42237600922722046], + [0.9930026912725874,0.7246443675509422,0.4159169550173012], + [0.9928489042675894,0.7169550173010383,0.409457900807382], + [0.9926951172625913,0.7092656670511344,0.40299884659746266], + [0.9925413302575933,0.7015763168012306,0.39653979238754344], + [0.9923875432525952,0.6938869665513266,0.3900807381776241], + [0.9922337562475971,0.6861976163014227,0.3836216839677049], + [0.9914648212226067,0.6773548635140334,0.378085351787774], + [0.9900807381776241,0.6673587081891585,0.37347174163783187], + [0.9886966551326414,0.6573625528642832,0.3688581314878894], + [0.9873125720876587,0.6473663975394082,0.36424452133794705], + [0.9859284890426759,0.6373702422145331,0.3596309111880047], + [0.9845444059976932,0.627374086889658,0.3550173010380624], + [0.9831603229527106,0.617377931564783,0.35040369088812007], + [0.9817762399077279,0.607381776239908,0.3457900807381777], + [0.9803921568627452,0.5973856209150329,0.34117647058823536], + [0.9790080738177624,0.5873894655901578,0.33656286043829303], + [0.9776239907727797,0.5773933102652827,0.3319492502883507], + [0.976239907727797,0.5673971549404077,0.3273356401384084], + [0.9748558246828144,0.5574009996155327,0.32272202998846605], + [0.9734717416378317,0.5474048442906576,0.3181084198385237], + [0.972087658592849,0.5374086889657825,0.31349480968858134], + [0.9707035755478662,0.5274125336409075,0.308881199538639], + [0.9693194925028835,0.5174163783160324,0.3042675893886967], + [0.9679354094579009,0.5074202229911576,0.2996539792387545], + [0.9665513264129182,0.4974240676662823,0.29504036908881204], + [0.9651672433679355,0.4874279123414072,0.2904267589388697], + [0.9637831603229527,0.4774317570165322,0.2858131487889274], + [0.96239907727797,0.4674356016916571,0.28119953863898506], + [0.9610149942329873,0.457439446366782,0.27658592848904273], + [0.9596309111880047,0.44744329104190694,0.27197231833910035], + [0.958246828143022,0.4374471357170319,0.267358708189158], + [0.9568627450980393,0.42745098039215684,0.2627450980392157], + [0.9520953479430988,0.4202229911572472,0.26459054209919264], + [0.9473279507881585,0.41299500192233757,0.2664359861591696], + [0.942560553633218,0.4057670126874279,0.26828143021914647], + [0.9377931564782777,0.39853902345251824,0.2701268742791234], + [0.9330257593233372,0.3913110342176086,0.27197231833910035], + [0.9282583621683969,0.38408304498269896,0.2738177623990773], + [0.9234909650134564,0.37685505574778927,0.27566320645905423], + [0.9187235678585162,0.36962706651287985,0.2775086505190311], + [0.9139561707035756,0.36239907727797,0.27935409457900806], + [0.9091887735486351,0.35517108804306036,0.281199538638985], + [0.9044213763936948,0.34794309880815066,0.28304498269896194], + [0.8996539792387543,0.340715109573241,0.2848904267589389], + [0.894886582083814,0.3334871203383314,0.28673587081891583], + [0.8901191849288735,0.32625913110342175,0.28858131487889277], + [0.8853517877739332,0.3190311418685121,0.29042675893886966], + [0.8805843906189927,0.3118031526336025,0.2922722029988466], + [0.8758169934640523,0.30457516339869284,0.29411764705882354], + [0.8710495963091119,0.29734717416378315,0.2959630911188005], + [0.8662821991541715,0.2901191849288735,0.2978085351787774], + [0.8615148019992311,0.2828911956939638,0.29965397923875436], + [0.8567474048442907,0.2756632064590542,0.30149942329873125], + [0.8519800076893502,0.26843521722414454,0.3033448673587082], + [0.8472126105344099,0.2612072279892349,0.30519031141868513], + [0.8424452133794696,0.2539792387543255,0.307035755478662], + [0.8376778162245291,0.2467512495194156,0.308881199538639], + [0.8310649750096117,0.23844675124951942,0.30880430603613995], + [0.8226066897347174,0.2290657439446367,0.30680507497116494], + [0.8141484044598232,0.21968473663975394,0.3048058439061899], + [0.8056901191849289,0.2103037293348712,0.3028066128412149], + [0.7972318339100346,0.20092272202998845,0.30080738177623995], + [0.7887735486351404,0.19154171472510573,0.29880815071126493], + [0.7803152633602461,0.182160707420223,0.2968089196462899], + [0.7718569780853518,0.17277970011534027,0.2948096885813149], + [0.7633986928104576,0.16339869281045752,0.2928104575163399], + [0.7549404075355632,0.15401768550557476,0.29081122645136487], + [0.746482122260669,0.14463667820069204,0.28881199538638985], + [0.7380238369857748,0.1352556708958093,0.28681276432141484], + [0.7295655517108804,0.12587466359092658,0.2848135332564399], + [0.7211072664359862,0.11649365628604383,0.28281430219146486], + [0.7126489811610921,0.10711264898116138,0.2808150711264899], + [0.7041906958861976,0.09773164167627837,0.27881584006151483], + [0.6957324106113034,0.08835063437139562,0.2768166089965398], + [0.6872741253364091,0.07896962706651289,0.2748173779315648], + [0.6788158400615149,0.06958861976163017,0.2728181468665898], + [0.6703575547866205,0.06020761245674744,0.27081891580161477], + [0.6618992695117263,0.050826605151864684,0.26881968473663975], + [0.6534409842368321,0.04144559784698193,0.26682045367166474], + [0.6449826989619377,0.0320645905420992,0.2648212226066898], + [0.6365244136870435,0.022683583237216476,0.26282199154171476], + [0.6280661284121491,0.013302575932333721,0.26082276047673975], + [0.6196078431372549,0.00392156862745098,0.25882352941176473] ], + Wistia: [ + [0.8941176470588236,1.0,0.47843137254901963], + [0.8957785467128028,0.9985851595540177,0.4725259515570934], + [0.8974394463667821,0.9971703191080353,0.4666205305651673], + [0.8991003460207613,0.995755478662053,0.4607151095732411], + [0.9007612456747405,0.9943406382160708,0.4548096885813149], + [0.9024221453287198,0.9929257977700884,0.44890426758938873], + [0.904083044982699,0.9915109573241061,0.4429988465974625], + [0.9057439446366783,0.9900961168781238,0.4370934256055364], + [0.9074048442906575,0.9886812764321414,0.4311880046136102], + [0.9090657439446367,0.9872664359861592,0.425282583621684], + [0.910726643598616,0.9858515955401769,0.4193771626297578], + [0.9123875432525952,0.9844367550941946,0.4134717416378316], + [0.9140484429065744,0.9830219146482122,0.4075663206459055], + [0.9157093425605537,0.9816070742022299,0.4016608996539793], + [0.9173702422145329,0.9801922337562476,0.3957554786620531], + [0.9190311418685121,0.9787773933102653,0.3898500576701269], + [0.9206920415224914,0.977362552864283,0.3839446366782007], + [0.9223529411764706,0.9759477124183007,0.3780392156862745], + [0.9240138408304499,0.9745328719723183,0.3721337946943484], + [0.9256747404844291,0.973118031526336,0.36622837370242217], + [0.9273356401384083,0.9717031910803537,0.36032295271049597], + [0.9289965397923876,0.9702883506343714,0.3544175317185698], + [0.9306574394463668,0.9688735101883891,0.3485121107266436], + [0.932318339100346,0.9674586697424068,0.3426066897347174], + [0.9339792387543253,0.9660438292964244,0.33670126874279127], + [0.9356401384083045,0.9646289888504421,0.33079584775086507], + [0.9373010380622837,0.9632141484044598,0.32489042675893887], + [0.938961937716263,0.9617993079584775,0.3189850057670127], + [0.9406228373702422,0.9603844675124952,0.3130795847750866], + [0.9422837370242215,0.9589696270665129,0.3071741637831603], + [0.9439446366782007,0.9575547866205305,0.30126874279123417], + [0.9456055363321799,0.9561399461745482,0.295363321799308], + [0.9472664359861592,0.954725105728566,0.28945790080738176], + [0.9489273356401384,0.9533102652825837,0.2835524798154556], + [0.9505882352941176,0.9518954248366013,0.27764705882352947], + [0.9522491349480969,0.950480584390619,0.2717416378316032], + [0.9539100346020761,0.9490657439446367,0.26583621683967706], + [0.9555709342560553,0.9476509034986543,0.2599307958477509], + [0.9572318339100346,0.946236063052672,0.2540253748558247], + [0.9588927335640138,0.9448212226066898,0.2481199538638985], + [0.9605536332179931,0.9434063821607074,0.24221453287197234], + [0.9622145328719723,0.9419915417147251,0.2363091118800462], + [0.9638754325259515,0.9405767012687428,0.23040369088812], + [0.9655363321799308,0.9391618608227604,0.22449826989619376], + [0.96719723183391,0.9377470203767782,0.2185928489042676], + [0.9688581314878892,0.9363321799307959,0.21268742791234146], + [0.9705190311418685,0.9349173394848135,0.20678200692041526], + [0.9721799307958477,0.9335024990388312,0.20087658592848906], + [0.9738408304498269,0.9320876585928489,0.1949711649365629], + [0.9755017301038063,0.9306728181468666,0.1890657439446367], + [0.9771626297577855,0.9292579777008843,0.1831603229527105], + [0.9788235294117648,0.927843137254902,0.1772549019607843], + [0.980484429065744,0.9264282968089197,0.17134948096885816], + [0.9821453287197232,0.9250134563629373,0.165444059976932], + [0.9838062283737025,0.923598615916955,0.1595386389850058], + [0.9854671280276817,0.9221837754709727,0.1536332179930796], + [0.9871280276816609,0.9207689350249904,0.14772779700115346], + [0.9887889273356402,0.9193540945790081,0.14182237600922726], + [0.9904498269896194,0.9179392541330258,0.13591695501730106], + [0.9921107266435987,0.9165244136870434,0.13001153402537485], + [0.9937716262975779,0.9151095732410611,0.1241061130334487], + [0.9954325259515571,0.9136947327950788,0.11820069204152256], + [0.9970934256055364,0.9122798923490965,0.11229527104959636], + [0.9987543252595156,0.9108650519031142,0.10638985005767015], + [1.0,0.9091426374471357,0.10156093810073048], + [1.0,0.9064975009611688,0.09996155324875047], + [1.0,0.9038523644752019,0.09836216839677049], + [1.0,0.9012072279892349,0.09676278354479047], + [1.0,0.8985620915032679,0.09516339869281046], + [1.0,0.8959169550173011,0.09356401384083045], + [1.0,0.8932718185313341,0.09196462898885044], + [1.0,0.8906266820453672,0.09036524413687043], + [1.0,0.8879815455594002,0.08876585928489042], + [1.0,0.8853364090734333,0.08716647443291042], + [1.0,0.8826912725874664,0.08556708958093043], + [1.0,0.8800461361014994,0.0839677047289504], + [1.0,0.8774009996155325,0.0823683198769704], + [1.0,0.8747558631295655,0.08076893502499038], + [1.0,0.8721107266435986,0.07916955017301038], + [1.0,0.8694655901576317,0.07757016532103037], + [1.0,0.8668204536716647,0.07597078046905037], + [1.0,0.8641753171856978,0.07437139561707036], + [1.0,0.8615301806997309,0.07277201076509038], + [1.0,0.8588850442137639,0.07117262591311034], + [1.0,0.856239907727797,0.06957324106113033], + [1.0,0.85359477124183,0.06797385620915034], + [1.0,0.8509496347558632,0.06637447135717031], + [1.0,0.8483044982698962,0.06477508650519032], + [1.0,0.8456593617839293,0.0631757016532103], + [1.0,0.8430142252979623,0.061576316801230296], + [1.0,0.8403690888119955,0.059976931949250314], + [1.0,0.8377239523260285,0.058377547097270284], + [1.0,0.8350788158400615,0.056778162245290274], + [1.0,0.8324336793540946,0.055178777393310265], + [1.0,0.8297885428681276,0.05357939254133026], + [1.0,0.8271434063821608,0.05198000768935025], + [1.0,0.8244982698961938,0.05038062283737024], + [1.0,0.8218531334102268,0.04878123798539023], + [1.0,0.8192079969242599,0.04718185313341025], + [1.0,0.816562860438293,0.04558246828143021], + [1.0,0.8139177239523261,0.04398308342945021], + [1.0,0.8112725874663591,0.0423836985774702], + [1.0,0.8086274509803921,0.0407843137254902], + [1.0,0.8059823144944253,0.03918492887351019], + [1.0,0.8033371780084583,0.03758554402153018], + [1.0,0.8006920415224914,0.03598615916955017], + [1.0,0.7980469050365244,0.03438677431757019], + [1.0,0.7954017685505574,0.03278738946559015], + [1.0,0.7927566320645906,0.031188004613610154], + [1.0,0.7901114955786236,0.029588619761630144], + [1.0,0.7874663590926567,0.027989234909650135], + [1.0,0.7848212226066897,0.026389850057670125], + [1.0,0.7821760861207228,0.024790465205690115], + [1.0,0.7795309496347559,0.023191080353710106], + [1.0,0.776885813148789,0.021591695501730124], + [1.0,0.774240676662822,0.019992310649750086], + [1.0,0.771595540176855,0.01839292579777009], + [1.0,0.7689504036908881,0.01679354094579008], + [1.0,0.7663052672049212,0.015194156093810071], + [1.0,0.7636601307189543,0.013594771241830061], + [1.0,0.7610149942329874,0.011995386389850066], + [1.0,0.7583698577470204,0.010396001537870042], + [1.0,0.7557247212610535,0.008796616685890074], + [1.0,0.7530795847750865,0.007197231833910037], + [1.0,0.7504344482891196,0.005597846981930027], + [1.0,0.7477893118031527,0.003998462129950017], + [1.0,0.7451441753171857,0.0023990772779700076], + [1.0,0.7424990388312188,0.0007996924259899979], + [1.0,0.7402845059592464,0.0], + [1.0,0.7385005767012688,0.0], + [1.0,0.736716647443291,0.0], + [1.0,0.7349327181853134,0.0], + [1.0,0.7331487889273357,0.0], + [1.0,0.7313648596693579,0.0], + [1.0,0.7295809304113803,0.0], + [1.0,0.7277970011534025,0.0], + [1.0,0.7260130718954249,0.0], + [1.0,0.7242291426374472,0.0], + [1.0,0.7224452133794694,0.0], + [1.0,0.7206612841214918,0.0], + [1.0,0.718877354863514,0.0], + [1.0,0.7170934256055363,0.0], + [1.0,0.7153094963475587,0.0], + [1.0,0.7135255670895809,0.0], + [1.0,0.7117416378316033,0.0], + [1.0,0.7099577085736255,0.0], + [1.0,0.7081737793156478,0.0], + [1.0,0.7063898500576702,0.0], + [1.0,0.7046059207996925,0.0], + [1.0,0.7028219915417148,0.0], + [1.0,0.701038062283737,0.0], + [1.0,0.6992541330257593,0.0], + [1.0,0.6974702037677817,0.0], + [1.0,0.6956862745098039,0.0], + [1.0,0.6939023452518263,0.0], + [1.0,0.6921184159938485,0.0], + [1.0,0.6903344867358708,0.0], + [1.0,0.6885505574778932,0.0], + [1.0,0.6867666282199154,0.0], + [1.0,0.6849826989619378,0.0], + [1.0,0.68319876970396,0.0], + [1.0,0.6814148404459823,0.0], + [1.0,0.6796309111880047,0.0], + [1.0,0.6778469819300269,0.0], + [1.0,0.6760630526720492,0.0], + [1.0,0.6742791234140715,0.0], + [1.0,0.6724951941560938,0.0], + [1.0,0.6707112648981162,0.0], + [1.0,0.6689273356401384,0.0], + [1.0,0.6671434063821607,0.0], + [1.0,0.665359477124183,0.0], + [1.0,0.6635755478662053,0.0], + [1.0,0.6617916186082277,0.0], + [1.0,0.6600076893502499,0.0], + [1.0,0.6582237600922722,0.0], + [1.0,0.6564398308342945,0.0], + [1.0,0.6546559015763168,0.0], + [1.0,0.6528719723183392,0.0], + [1.0,0.6510880430603614,0.0], + [1.0,0.6493041138023837,0.0], + [1.0,0.6475201845444061,0.0], + [1.0,0.6457362552864283,0.0], + [1.0,0.6439523260284505,0.0], + [1.0,0.6421683967704729,0.0], + [1.0,0.6403844675124952,0.0], + [1.0,0.6386005382545175,0.0], + [1.0,0.6368166089965398,0.0], + [1.0,0.6350326797385621,0.0], + [1.0,0.6332487504805844,0.0], + [1.0,0.6314648212226067,0.0], + [1.0,0.629680891964629,0.0], + [1.0,0.6278969627066513,0.0], + [0.9998615916955017,0.6259284890426758,0.0], + [0.999677047289504,0.6238985005767013,0.0], + [0.9994925028835063,0.6218685121107267,0.0], + [0.9993079584775086,0.619838523644752,0.0], + [0.999123414071511,0.6178085351787774,0.0], + [0.9989388696655133,0.6157785467128027,0.0], + [0.9987543252595156,0.6137485582468282,0.0], + [0.9985697808535179,0.6117185697808535,0.0], + [0.9983852364475202,0.6096885813148789,0.0], + [0.9982006920415225,0.6076585928489042,0.0], + [0.9980161476355248,0.6056286043829296,0.0], + [0.9978316032295271,0.603598615916955,0.0], + [0.9976470588235294,0.6015686274509804,0.0], + [0.9974625144175318,0.5995386389850058,0.0], + [0.9972779700115341,0.5975086505190311,0.0], + [0.9970934256055364,0.5954786620530566,0.0], + [0.9969088811995387,0.5934486735870819,0.0], + [0.996724336793541,0.5914186851211073,0.0], + [0.9965397923875433,0.5893886966551326,0.0], + [0.9963552479815456,0.587358708189158,0.0], + [0.9961707035755479,0.5853287197231835,0.0], + [0.9959861591695501,0.5832987312572088,0.0], + [0.9958016147635524,0.5812687427912342,0.0], + [0.9956170703575548,0.5792387543252595,0.0], + [0.9954325259515571,0.5772087658592849,0.0], + [0.9952479815455594,0.5751787773933102,0.0], + [0.9950634371395617,0.5731487889273357,0.0], + [0.994878892733564,0.571118800461361,0.0], + [0.9946943483275663,0.5690888119953864,0.0], + [0.9945098039215686,0.5670588235294117,0.0], + [0.9943252595155709,0.5650288350634372,0.0], + [0.9941407151095732,0.5629988465974625,0.0], + [0.9939561707035756,0.5609688581314879,0.0], + [0.9937716262975779,0.5589388696655133,0.0], + [0.9935870818915802,0.5569088811995386,0.0], + [0.9934025374855825,0.554878892733564,0.0], + [0.9932179930795848,0.5528489042675895,0.0], + [0.9930334486735871,0.5508189158016148,0.0], + [0.9928489042675894,0.5487889273356401,0.0], + [0.9926643598615917,0.5467589388696655,0.0], + [0.992479815455594,0.5447289504036908,0.0], + [0.9922952710495964,0.5426989619377163,0.0], + [0.9921107266435987,0.5406689734717416,0.0], + [0.991926182237601,0.538638985005767,0.0], + [0.9917416378316033,0.5366089965397924,0.0], + [0.9915570934256056,0.5345790080738178,0.0], + [0.9913725490196079,0.5325490196078432,0.0], + [0.9911880046136102,0.5305190311418685,0.0], + [0.9910034602076125,0.5284890426758939,0.0], + [0.9908189158016147,0.5264590542099192,0.0], + [0.990634371395617,0.5244290657439447,0.0], + [0.9904498269896194,0.52239907727797,0.0], + [0.9902652825836217,0.5203690888119954,0.0], + [0.990080738177624,0.5183391003460207,0.0], + [0.9898961937716263,0.5163091118800461,0.0], + [0.9897116493656286,0.5142791234140716,0.0], + [0.9895271049596309,0.5122491349480969,0.0], + [0.9893425605536332,0.5102191464821223,0.0], + [0.9891580161476355,0.5081891580161476,0.0], + [0.9889734717416379,0.506159169550173,0.0], + [0.9887889273356402,0.5041291810841984,0.0], + [0.9886043829296425,0.5020991926182238,0.0], + [0.9884198385236448,0.5000692041522492,0.0], + [0.9882352941176471,0.4980392156862745,0.0] ], + Wistia_r: [ + [0.9882352941176471,0.4980392156862745,0.0], + [0.9884198385236448,0.5000692041522491,0.0], + [0.9886043829296425,0.5020991926182238,0.0], + [0.9887889273356402,0.5041291810841984,0.0], + [0.9889734717416379,0.506159169550173,0.0], + [0.9891580161476355,0.5081891580161476,0.0], + [0.9893425605536332,0.5102191464821223,0.0], + [0.9895271049596309,0.5122491349480969,0.0], + [0.9897116493656286,0.5142791234140716,0.0], + [0.9898961937716263,0.5163091118800461,0.0], + [0.990080738177624,0.5183391003460207,0.0], + [0.9902652825836217,0.5203690888119954,0.0], + [0.9904498269896194,0.52239907727797,0.0], + [0.990634371395617,0.5244290657439447,0.0], + [0.9908189158016147,0.5264590542099192,0.0], + [0.9910034602076125,0.5284890426758939,0.0], + [0.9911880046136102,0.5305190311418685,0.0], + [0.9913725490196079,0.5325490196078432,0.0], + [0.9915570934256056,0.5345790080738178,0.0], + [0.9917416378316033,0.5366089965397924,0.0], + [0.991926182237601,0.538638985005767,0.0], + [0.9921107266435987,0.5406689734717416,0.0], + [0.9922952710495964,0.5426989619377163,0.0], + [0.992479815455594,0.5447289504036908,0.0], + [0.9926643598615917,0.5467589388696655,0.0], + [0.9928489042675894,0.5487889273356401,0.0], + [0.9930334486735871,0.5508189158016148,0.0], + [0.9932179930795848,0.5528489042675894,0.0], + [0.9934025374855825,0.554878892733564,0.0], + [0.9935870818915802,0.5569088811995386,0.0], + [0.9937716262975779,0.5589388696655133,0.0], + [0.9939561707035756,0.5609688581314879,0.0], + [0.9941407151095732,0.5629988465974625,0.0], + [0.9943252595155709,0.5650288350634372,0.0], + [0.9945098039215686,0.5670588235294117,0.0], + [0.9946943483275663,0.5690888119953864,0.0], + [0.994878892733564,0.571118800461361,0.0], + [0.9950634371395617,0.5731487889273357,0.0], + [0.9952479815455594,0.5751787773933102,0.0], + [0.9954325259515571,0.5772087658592849,0.0], + [0.9956170703575548,0.5792387543252595,0.0], + [0.9958016147635524,0.5812687427912341,0.0], + [0.9959861591695501,0.5832987312572088,0.0], + [0.9961707035755479,0.5853287197231833,0.0], + [0.9963552479815456,0.587358708189158,0.0], + [0.9965397923875433,0.5893886966551326,0.0], + [0.996724336793541,0.5914186851211073,0.0], + [0.9969088811995387,0.5934486735870819,0.0], + [0.9970934256055364,0.5954786620530566,0.0], + [0.9972779700115341,0.5975086505190311,0.0], + [0.9974625144175318,0.5995386389850057,0.0], + [0.9976470588235294,0.6015686274509804,0.0], + [0.9978316032295271,0.6035986159169551,0.0], + [0.9980161476355248,0.6056286043829296,0.0], + [0.9982006920415225,0.6076585928489042,0.0], + [0.9983852364475202,0.6096885813148789,0.0], + [0.9985697808535179,0.6117185697808535,0.0], + [0.9987543252595156,0.6137485582468282,0.0], + [0.9989388696655133,0.6157785467128027,0.0], + [0.999123414071511,0.6178085351787774,0.0], + [0.9993079584775086,0.619838523644752,0.0], + [0.9994925028835063,0.6218685121107266,0.0], + [0.999677047289504,0.6238985005767013,0.0], + [0.9998615916955017,0.625928489042676,0.0], + [1.0,0.6278969627066513,0.0], + [1.0,0.629680891964629,0.0], + [1.0,0.6314648212226066,0.0], + [1.0,0.6332487504805844,0.0], + [1.0,0.635032679738562,0.0], + [1.0,0.6368166089965398,0.0], + [1.0,0.6386005382545175,0.0], + [1.0,0.6403844675124952,0.0], + [1.0,0.6421683967704729,0.0], + [1.0,0.6439523260284505,0.0], + [1.0,0.6457362552864283,0.0], + [1.0,0.647520184544406,0.0], + [1.0,0.6493041138023837,0.0], + [1.0,0.6510880430603614,0.0], + [1.0,0.6528719723183392,0.0], + [1.0,0.6546559015763168,0.0], + [1.0,0.6564398308342945,0.0], + [1.0,0.6582237600922722,0.0], + [1.0,0.6600076893502499,0.0], + [1.0,0.6617916186082275,0.0], + [1.0,0.6635755478662053,0.0], + [1.0,0.665359477124183,0.0], + [1.0,0.6671434063821607,0.0], + [1.0,0.6689273356401384,0.0], + [1.0,0.6707112648981162,0.0], + [1.0,0.6724951941560938,0.0], + [1.0,0.6742791234140715,0.0], + [1.0,0.6760630526720492,0.0], + [1.0,0.6778469819300269,0.0], + [1.0,0.6796309111880047,0.0], + [1.0,0.6814148404459823,0.0], + [1.0,0.68319876970396,0.0], + [1.0,0.6849826989619378,0.0], + [1.0,0.6867666282199154,0.0], + [1.0,0.6885505574778931,0.0], + [1.0,0.6903344867358708,0.0], + [1.0,0.6921184159938485,0.0], + [1.0,0.6939023452518263,0.0], + [1.0,0.6956862745098039,0.0], + [1.0,0.6974702037677817,0.0], + [1.0,0.6992541330257593,0.0], + [1.0,0.7010380622837371,0.0], + [1.0,0.7028219915417148,0.0], + [1.0,0.7046059207996924,0.0], + [1.0,0.7063898500576702,0.0], + [1.0,0.7081737793156478,0.0], + [1.0,0.7099577085736255,0.0], + [1.0,0.7117416378316033,0.0], + [1.0,0.7135255670895809,0.0], + [1.0,0.7153094963475587,0.0], + [1.0,0.7170934256055363,0.0], + [1.0,0.7188773548635141,0.0], + [1.0,0.7206612841214918,0.0], + [1.0,0.7224452133794694,0.0], + [1.0,0.7242291426374472,0.0], + [1.0,0.7260130718954249,0.0], + [1.0,0.7277970011534025,0.0], + [1.0,0.7295809304113803,0.0], + [1.0,0.7313648596693579,0.0], + [1.0,0.7331487889273357,0.0], + [1.0,0.7349327181853134,0.0], + [1.0,0.7367166474432911,0.0], + [1.0,0.7385005767012688,0.0], + [1.0,0.7402845059592464,0.0], + [1.0,0.7424990388312188,0.0007996924259900039], + [1.0,0.7451441753171857,0.0023990772779700115], + [1.0,0.7477893118031527,0.003998462129950019], + [1.0,0.7504344482891196,0.005597846981930027], + [1.0,0.7530795847750864,0.007197231833909989], + [1.0,0.7557247212610535,0.008796616685890043], + [1.0,0.7583698577470204,0.010396001537870049], + [1.0,0.7610149942329874,0.011995386389850057], + [1.0,0.7636601307189542,0.013594771241830065], + [1.0,0.7663052672049212,0.015194156093810073], + [1.0,0.7689504036908882,0.01679354094579008], + [1.0,0.771595540176855,0.018392925797770087], + [1.0,0.774240676662822,0.019992310649750097], + [1.0,0.7768858131487889,0.021591695501730103], + [1.0,0.7795309496347559,0.02319108035371011], + [1.0,0.7821760861207229,0.02479046520569012], + [1.0,0.7848212226066897,0.02638985005767013], + [1.0,0.7874663590926567,0.027989234909650138], + [1.0,0.7901114955786236,0.029588619761630144], + [1.0,0.7927566320645906,0.03118800461361015], + [1.0,0.7954017685505574,0.032787389465590115], + [1.0,0.7980469050365244,0.034386774317570167], + [1.0,0.8006920415224914,0.035986159169550176], + [1.0,0.8033371780084583,0.037585544021530186], + [1.0,0.8059823144944253,0.03918492887351019], + [1.0,0.8086274509803921,0.0407843137254902], + [1.0,0.8112725874663591,0.04238369857747021], + [1.0,0.8139177239523261,0.04398308342945021], + [1.0,0.816562860438293,0.04558246828143022], + [1.0,0.8192079969242599,0.04718185313341023], + [1.0,0.8218531334102268,0.04878123798539023], + [1.0,0.8244982698961938,0.05038062283737024], + [1.0,0.8271434063821607,0.051980007689350245], + [1.0,0.8297885428681276,0.05357939254133026], + [1.0,0.8324336793540946,0.05517877739331026], + [1.0,0.8350788158400615,0.056778162245290274], + [1.0,0.8377239523260284,0.05837754709727023], + [1.0,0.8403690888119955,0.05997693194925029], + [1.0,0.8430142252979623,0.06157631680123029], + [1.0,0.8456593617839293,0.0631757016532103], + [1.0,0.8483044982698962,0.0647750865051903], + [1.0,0.8509496347558632,0.06637447135717033], + [1.0,0.85359477124183,0.06797385620915032], + [1.0,0.856239907727797,0.06957324106113033], + [1.0,0.8588850442137639,0.07117262591311034], + [1.0,0.8615301806997309,0.07277201076509035], + [1.0,0.8641753171856978,0.07437139561707035], + [1.0,0.8668204536716647,0.07597078046905037], + [1.0,0.8694655901576317,0.07757016532103037], + [1.0,0.8721107266435986,0.07916955017301038], + [1.0,0.8747558631295655,0.08076893502499038], + [1.0,0.8774009996155325,0.0823683198769704], + [1.0,0.8800461361014993,0.08396770472895035], + [1.0,0.8826912725874664,0.08556708958093041], + [1.0,0.8853364090734333,0.08716647443291041], + [1.0,0.8879815455594002,0.08876585928489043], + [1.0,0.8906266820453672,0.09036524413687043], + [1.0,0.8932718185313341,0.09196462898885044], + [1.0,0.895916955017301,0.09356401384083045], + [1.0,0.8985620915032679,0.09516339869281046], + [1.0,0.9012072279892349,0.09676278354479045], + [1.0,0.9038523644752019,0.09836216839677048], + [1.0,0.9064975009611688,0.09996155324875047], + [1.0,0.9091426374471357,0.10156093810073048], + [0.9987543252595156,0.9108650519031142,0.10638985005767013], + [0.9970934256055364,0.9122798923490965,0.1122952710495963], + [0.9954325259515571,0.9136947327950788,0.11820069204152249], + [0.9937716262975779,0.9151095732410611,0.12410611303344868], + [0.9921107266435987,0.9165244136870434,0.1300115340253747], + [0.9904498269896194,0.9179392541330258,0.13591695501730103], + [0.9887889273356402,0.9193540945790081,0.1418223760092272], + [0.9871280276816609,0.9207689350249904,0.1477277970011534], + [0.9854671280276817,0.9221837754709727,0.15363321799307958], + [0.9838062283737025,0.923598615916955,0.15953863898500575], + [0.9821453287197232,0.9250134563629373,0.16544405997693196], + [0.980484429065744,0.9264282968089197,0.17134948096885813], + [0.9788235294117648,0.927843137254902,0.1772549019607843], + [0.9771626297577855,0.9292579777008843,0.1831603229527105], + [0.9755017301038063,0.9306728181468665,0.18906574394463668], + [0.9738408304498269,0.9320876585928489,0.19497116493656286], + [0.9721799307958477,0.9335024990388312,0.20087658592848906], + [0.9705190311418685,0.9349173394848135,0.2067820069204152], + [0.9688581314878892,0.9363321799307959,0.2126874279123414], + [0.96719723183391,0.9377470203767782,0.21859284890426758], + [0.9655363321799308,0.9391618608227604,0.2244982698961936], + [0.9638754325259515,0.9405767012687428,0.23040369088811996], + [0.9622145328719723,0.9419915417147251,0.23630911188004614], + [0.9605536332179931,0.9434063821607074,0.2422145328719723], + [0.9588927335640138,0.9448212226066898,0.2481199538638985], + [0.9572318339100346,0.946236063052672,0.25402537485582466], + [0.9555709342560554,0.9476509034986543,0.25993079584775086], + [0.9539100346020761,0.9490657439446367,0.26583621683967706], + [0.9522491349480969,0.950480584390619,0.2717416378316032], + [0.9505882352941176,0.9518954248366013,0.2776470588235294], + [0.9489273356401384,0.9533102652825836,0.2835524798154556], + [0.9472664359861592,0.954725105728566,0.28945790080738176], + [0.9456055363321799,0.9561399461745482,0.2953633217993079], + [0.9439446366782007,0.9575547866205305,0.30126874279123417], + [0.9422837370242215,0.9589696270665129,0.3071741637831603], + [0.9406228373702422,0.9603844675124952,0.3130795847750865], + [0.938961937716263,0.9617993079584775,0.3189850057670125], + [0.9373010380622837,0.9632141484044598,0.32489042675893887], + [0.9356401384083045,0.9646289888504421,0.330795847750865], + [0.9339792387543253,0.9660438292964244,0.33670126874279127], + [0.932318339100346,0.9674586697424068,0.3426066897347174], + [0.9306574394463668,0.9688735101883891,0.34851211072664356], + [0.9289965397923876,0.9702883506343714,0.3544175317185697], + [0.9273356401384083,0.9717031910803537,0.36032295271049597], + [0.9256747404844291,0.973118031526336,0.3662283737024221], + [0.9240138408304499,0.9745328719723183,0.3721337946943484], + [0.9223529411764706,0.9759477124183007,0.3780392156862745], + [0.9206920415224914,0.977362552864283,0.38394463667820067], + [0.9190311418685122,0.9787773933102653,0.3898500576701268], + [0.9173702422145329,0.9801922337562476,0.3957554786620531], + [0.9157093425605537,0.9816070742022299,0.4016608996539792], + [0.9140484429065744,0.9830219146482122,0.40756632064590537], + [0.9123875432525952,0.9844367550941945,0.4134717416378314], + [0.910726643598616,0.9858515955401769,0.41937716262975777], + [0.9090657439446367,0.9872664359861592,0.4252825836216839], + [0.9074048442906575,0.9886812764321415,0.4311880046136102], + [0.9057439446366783,0.9900961168781238,0.4370934256055363], + [0.904083044982699,0.9915109573241061,0.44299884659746247], + [0.9024221453287198,0.9929257977700884,0.4489042675893886], + [0.9007612456747405,0.9943406382160708,0.4548096885813149], + [0.8991003460207613,0.995755478662053,0.460715109573241], + [0.8974394463667821,0.9971703191080353,0.4666205305651673], + [0.8957785467128028,0.9985851595540177,0.4725259515570934], + [0.8941176470588236,1.0,0.47843137254901963] ], + YlGn: [ + [1.0,1.0,0.8980392156862745], + [0.9990157631680123,0.9996309111880046,0.8926259131103422], + [0.9980315263360247,0.9992618223760092,0.8872126105344099], + [0.9970472895040369,0.9988927335640139,0.8817993079584775], + [0.9960630526720492,0.9985236447520185,0.8763860053825452], + [0.9950788158400615,0.9981545559400231,0.8709727028066129], + [0.9940945790080739,0.9977854671280277,0.8655594002306806], + [0.9931103421760861,0.9974163783160324,0.8601460976547481], + [0.9921261053440984,0.9970472895040369,0.8547327950788158], + [0.9911418685121107,0.9966782006920415,0.8493194925028835], + [0.990157631680123,0.9963091118800461,0.8439061899269512], + [0.9891733948481354,0.9959400230680507,0.8384928873510189], + [0.9881891580161476,0.9955709342560554,0.8330795847750865], + [0.9872049211841599,0.99520184544406,0.8276662821991542], + [0.9862206843521722,0.9948327566320646,0.8222529796232219], + [0.9852364475201846,0.9944636678200692,0.8168396770472895], + [0.9842522106881968,0.9940945790080739,0.8114263744713571], + [0.9832679738562091,0.9937254901960785,0.8060130718954248], + [0.9822837370242214,0.9933564013840831,0.8005997693194925], + [0.9812995001922338,0.9929873125720877,0.7951864667435602], + [0.9803152633602461,0.9926182237600923,0.7897731641676278], + [0.9793310265282583,0.992249134948097,0.7843598615916955], + [0.9783467896962706,0.9918800461361015,0.7789465590157632], + [0.977362552864283,0.9915109573241061,0.7735332564398308], + [0.9763783160322953,0.9911418685121107,0.7681199538638985], + [0.9753940792003075,0.9907727797001153,0.7627066512879661], + [0.9744098423683198,0.99040369088812,0.7572933487120338], + [0.9734256055363322,0.9900346020761246,0.7518800461361015], + [0.9724413687043445,0.9896655132641292,0.7464667435601692], + [0.9714571318723568,0.9892964244521338,0.7410534409842369], + [0.970472895040369,0.9889273356401385,0.7356401384083044], + [0.9694886582083814,0.9885582468281431,0.7302268358323721], + [0.9681660899653979,0.9880507497116494,0.7251518646674355], + [0.9644752018454441,0.9865743944636679,0.7224452133794694], + [0.9607843137254902,0.9850980392156863,0.7197385620915032], + [0.9570934256055363,0.9836216839677048,0.7170319108035371], + [0.9534025374855825,0.9821453287197233,0.7143252595155709], + [0.9497116493656286,0.9806689734717416,0.7116186082276048], + [0.9460207612456747,0.9791926182237601,0.7089119569396386], + [0.9423298731257209,0.9777162629757786,0.7062053056516724], + [0.938638985005767,0.976239907727797,0.7034986543637063], + [0.9349480968858132,0.9747635524798155,0.7007920030757401], + [0.9312572087658593,0.973287197231834,0.6980853517877739], + [0.9275663206459054,0.9718108419838524,0.6953787004998078], + [0.9238754325259515,0.9703344867358709,0.6926720492118416], + [0.9201845444059977,0.9688581314878894,0.6899653979238755], + [0.9164936562860438,0.9673817762399077,0.6872587466359092], + [0.91280276816609,0.9659054209919262,0.684552095347943], + [0.9091118800461361,0.9644290657439446,0.6818454440599769], + [0.9054209919261822,0.9629527104959631,0.6791387927720107], + [0.9017301038062284,0.9614763552479816,0.6764321414840445], + [0.8980392156862745,0.96,0.6737254901960784], + [0.8943483275663207,0.9585236447520185,0.6710188389081122], + [0.8906574394463668,0.957047289504037,0.6683121876201461], + [0.8869665513264129,0.9555709342560553,0.6656055363321799], + [0.883275663206459,0.9540945790080738,0.6628988850442137], + [0.8795847750865051,0.9526182237600923,0.6601922337562476], + [0.8758938869665513,0.9511418685121107,0.6574855824682814], + [0.8722029988465975,0.9496655132641292,0.6547789311803152], + [0.8685121107266436,0.9481891580161477,0.6520722798923491], + [0.8648212226066897,0.946712802768166,0.6493656286043828], + [0.8611303344867358,0.9452364475201845,0.6466589773164167], + [0.857439446366782,0.943760092272203,0.6439523260284505], + [0.8537485582468282,0.9422837370242214,0.6412456747404844], + [0.8496270665128797,0.9405920799692425,0.6385697808535178], + [0.8442137639369474,0.9382545174932718,0.6359861591695501], + [0.838800461361015,0.9359169550173011,0.6334025374855825], + [0.8333871587850826,0.9335793925413303,0.6308189158016148], + [0.8279738562091503,0.9312418300653594,0.628235294117647], + [0.822560553633218,0.9289042675893887,0.6256516724336794], + [0.8171472510572857,0.9265667051134179,0.6230680507497116], + [0.8117339484813533,0.9242291426374472,0.6204844290657439], + [0.806320645905421,0.9218915801614763,0.6179008073817762], + [0.8009073433294887,0.9195540176855056,0.6153171856978085], + [0.7954940407535563,0.9172164552095349,0.6127335640138408], + [0.790080738177624,0.914878892733564,0.6101499423298731], + [0.7846674356016916,0.9125413302575932,0.6075663206459054], + [0.7792541330257593,0.9102037677816225,0.6049826989619377], + [0.773840830449827,0.9078662053056517,0.60239907727797], + [0.7684275278738947,0.9055286428296809,0.5998154555940023], + [0.7630142252979624,0.9031910803537101,0.5972318339100346], + [0.75760092272203,0.9008535178777394,0.5946482122260669], + [0.7521876201460977,0.8985159554017685,0.5920645905420993], + [0.7467743175701653,0.8961783929257978,0.5894809688581315], + [0.741361014994233,0.893840830449827,0.5868973471741638], + [0.7359477124183007,0.8915032679738563,0.5843137254901961], + [0.7305344098423683,0.8891657054978854,0.5817301038062284], + [0.725121107266436,0.8868281430219147,0.5791464821222607], + [0.7197078046905037,0.8844905805459439,0.576562860438293], + [0.7142945021145714,0.8821530180699731,0.5739792387543252], + [0.708881199538639,0.8798154555940023,0.5713956170703576], + [0.7034678969627066,0.8774778931180316,0.5688119953863898], + [0.6980545943867744,0.8751403306420608,0.5662283737024222], + [0.692641291810842,0.87280276816609,0.5636447520184544], + [0.6872279892349097,0.8704652056901192,0.5610611303344868], + [0.6818146866589774,0.8681276432141485,0.558477508650519], + [0.6759861591695502,0.86560553633218,0.5558938869665514], + [0.6694655901576317,0.8627758554402153,0.5533102652825836], + [0.6629450211457133,0.8599461745482507,0.550726643598616], + [0.6564244521337947,0.8571164936562861,0.5481430219146483], + [0.6499038831218762,0.8542868127643214,0.5455594002306805], + [0.6433833141099577,0.8514571318723568,0.5429757785467129], + [0.6368627450980392,0.8486274509803922,0.5403921568627451], + [0.6303421760861208,0.8457977700884276,0.5378085351787774], + [0.6238216070742022,0.8429680891964629,0.5352249134948097], + [0.6173010380622838,0.8401384083044983,0.532641291810842], + [0.6107804690503653,0.8373087274125337,0.5300576701268743], + [0.6042599000384468,0.834479046520569,0.5274740484429066], + [0.5977393310265283,0.8316493656286044,0.5248904267589388], + [0.5912187620146098,0.8288196847366398,0.5223068050749712], + [0.5846981930026913,0.8259900038446751,0.5197231833910034], + [0.5781776239907728,0.8231603229527105,0.5171395617070358], + [0.5716570549788543,0.8203306420607459,0.514555940023068], + [0.5651364859669358,0.8175009611687812,0.5119723183391004], + [0.5586159169550174,0.8146712802768167,0.5093886966551326], + [0.5520953479430988,0.811841599384852,0.5068050749711649], + [0.5455747789311803,0.8090119184928873,0.5042214532871973], + [0.5390542099192619,0.8061822376009228,0.5016378316032295], + [0.5325336409073433,0.8033525567089581,0.4990542099192618], + [0.5260130718954248,0.8005228758169936,0.4964705882352941], + [0.5194925028835063,0.7976931949250289,0.4938869665513264], + [0.5129719338715879,0.7948635140330642,0.4913033448673587], + [0.5064513648596695,0.7920338331410997,0.488719723183391], + [0.4999307958477509,0.789204152249135,0.48613610149942327], + [0.49341022683583236,0.7863744713571703,0.48355247981545557], + [0.4868896578239139,0.7835447904652058,0.4809688581314879], + [0.48036908881199536,0.7807151095732411,0.4783852364475202], + [0.4738485198000769,0.7778854286812764,0.4758016147635525], + [0.4672049211841599,0.7748096885813149,0.4727873894655901], + [0.4604382929642445,0.7714878892733564,0.4693425605536332], + [0.4536716647443291,0.7681660899653979,0.46589773164167625], + [0.44690503652441366,0.7648442906574394,0.46245290272971934], + [0.44013840830449846,0.761522491349481,0.4590080738177625], + [0.4333717800845828,0.7582006920415225,0.45556324490580546], + [0.4266051518646674,0.754878892733564,0.4521184159938485], + [0.419838523644752,0.7515570934256055,0.44867358708189153], + [0.4130718954248366,0.7482352941176471,0.4452287581699346], + [0.40630526720492116,0.7449134948096886,0.44178392925797766], + [0.39953863898500575,0.7415916955017301,0.43833910034602075], + [0.39277201076509033,0.7382698961937716,0.4348942714340638], + [0.3860053825451749,0.7349480968858131,0.4314494425221069], + [0.3792387543252595,0.7316262975778547,0.4280046136101499], + [0.3724721261053441,0.7283044982698962,0.424559784698193], + [0.36570549788542867,0.7249826989619377,0.42111495578623603], + [0.35893886966551325,0.7216608996539792,0.41767012687427907], + [0.35217224144559783,0.7183391003460208,0.41422529796232216], + [0.3454056132256824,0.7150173010380623,0.41078046905036525], + [0.338638985005767,0.7116955017301038,0.4073356401384083], + [0.33187235678585175,0.7083737024221454,0.40389081122645143], + [0.3251057285659361,0.7050519031141869,0.4004459823144944], + [0.31833910034602075,0.7017301038062284,0.39700115340253744], + [0.3115724721261053,0.6984083044982698,0.39355632449058053], + [0.3048058439061899,0.6950865051903113,0.39011149557862357], + [0.29803921568627445,0.6917647058823528,0.38666666666666666], + [0.2912725874663591,0.6884429065743944,0.3832218377547097], + [0.2845059592464436,0.6851211072664359,0.3797770088427528], + [0.27773933102652826,0.6817993079584774,0.3763321799307958], + [0.2709727028066128,0.678477508650519,0.37288735101883885], + [0.2642060745866974,0.6751557093425605,0.36944252210688194], + [0.25743944636678195,0.671833910034602,0.36599769319492503], + [0.25259515570934254,0.6675893886966551,0.36270665128796614], + [0.2489042675893887,0.6627912341407151,0.35950788158400615], + [0.2452133794694348,0.657993079584775,0.3563091118800461], + [0.24152249134948095,0.653194925028835,0.3531103421760861], + [0.2378316032295272,0.6483967704728951,0.3499115724721262], + [0.23414071510957324,0.643598615916955,0.3467128027681661], + [0.23044982698961936,0.638800461361015,0.3435140330642061], + [0.2267589388696655,0.634002306805075,0.34031526336024603], + [0.22306805074971164,0.629204152249135,0.33711649365628604], + [0.2193771626297578,0.6244059976931949,0.333917723952326], + [0.21568627450980393,0.6196078431372549,0.330718954248366], + [0.21199538638985005,0.6148096885813149,0.327520184544406], + [0.2083044982698962,0.6100115340253749,0.32432141484044597], + [0.20461361014994234,0.6052133794694349,0.321122645136486], + [0.20092272202998845,0.6004152249134949,0.3179238754325259], + [0.1972318339100346,0.5956170703575547,0.31472510572856593], + [0.19354094579008074,0.5908189158016147,0.3115263360246059], + [0.18985005767012686,0.5860207612456747,0.3083275663206459], + [0.186159169550173,0.5812226066897347,0.3051287966166859], + [0.18246828143021915,0.5764244521337947,0.30193002691272586], + [0.17877739331026538,0.5716262975778548,0.2987312572087659], + [0.17508650519031144,0.5668281430219146,0.2955324875048059], + [0.17139561707035755,0.5620299884659746,0.2923337178008458], + [0.1677047289504037,0.5572318339100346,0.2891349480968858], + [0.16401384083044984,0.5524336793540946,0.2859361783929258], + [0.16032295271049596,0.5476355247981546,0.2827374086889658], + [0.1566320645905421,0.5428373702422146,0.27953863898500575], + [0.15294117647058825,0.5380392156862746,0.27633986928104576], + [0.14925028835063436,0.5332410611303345,0.27314109957708577], + [0.1455594002306805,0.5284429065743945,0.2699423298731257], + [0.14186851211072665,0.5236447520184545,0.2667435601691657], + [0.13817762399077277,0.5188465974625145,0.2635447904652057], + [0.1340253748558247,0.5150634371395617,0.26163783160322956], + [0.1297193387158785,0.5116186082276049,0.260161476355248], + [0.12541330257593233,0.5081737793156479,0.25868512110726644], + [0.12110726643598617,0.5047289504036909,0.2572087658592849], + [0.11680123029604011,0.5012841214917341,0.2557324106113034], + [0.11249519415609383,0.49783929257977705,0.2542560553633218], + [0.10818915801614765,0.4943944636678201,0.2527797001153403], + [0.10388312187620147,0.4909496347558632,0.2513033448673587], + [0.09957708573625529,0.4875048058439062,0.24982698961937716], + [0.09527104959630911,0.4840599769319493,0.24835063437139562], + [0.09096501345636294,0.48061514801999233,0.2468742791234141], + [0.08665897731641677,0.4771703191080354,0.24539792387543252], + [0.0823529411764706,0.47372549019607846,0.24392156862745099], + [0.07804690503652442,0.4702806612841215,0.24244521337946945], + [0.07374086889657824,0.4668358323721646,0.24096885813148788], + [0.06943483275663206,0.4633910034602076,0.23949250288350635], + [0.0651287966166859,0.4599461745482507,0.2380161476355248], + [0.06082276047673972,0.45650134563629374,0.23653979238754327], + [0.05651672433679354,0.4530565167243368,0.2350634371395617], + [0.05221068819684736,0.44961168781237987,0.23358708189158017], + [0.04790465205690131,0.446166858900423,0.23211072664359866], + [0.04359861591695502,0.442722029988466,0.23063437139561707], + [0.03929257977700884,0.439277201076509,0.22915801614763553], + [0.034986543637062675,0.4358323721645521,0.227681660899654], + [0.030680507497116496,0.43238754325259515,0.22620530565167243], + [0.026374471357170318,0.42894271434063824,0.2247289504036909], + [0.02206843521722414,0.4254978854286813,0.22325259515570936], + [0.017762399077277974,0.4220530565167243,0.22177623990772782], + [0.013456362937331795,0.4186082276047674,0.22029988465974626], + [0.009150326797385616,0.41516339869281044,0.21882352941176472], + [0.004844290657439437,0.4117185697808535,0.21734717416378319], + [0.0005382545174932585,0.40827374086889656,0.21587081891580162], + [0.0,0.40407535563244906,0.21417916186082278], + [0.0,0.3997693194925029,0.2124567474048443], + [0.0,0.3954632833525567,0.21073433294886584], + [0.0,0.3911572472126105,0.20901191849288736], + [0.0,0.38685121107266446,0.20728950403690893], + [0.0,0.38254517493271817,0.20556708958093042], + [0.0,0.378239138792772,0.20384467512495194], + [0.0,0.3739331026528258,0.20212226066897349], + [0.0,0.36962706651287963,0.200399846212995], + [0.0,0.36532103037293345,0.19867743175701655], + [0.0,0.36101499423298733,0.19695501730103807], + [0.0,0.35670895809304115,0.1952326028450596], + [0.0,0.35240292195309497,0.19351018838908113], + [0.0,0.3480968858131488,0.19178777393310267], + [0.0,0.3437908496732026,0.1900653594771242], + [0.0,0.33948481353325644,0.18834294502114574], + [0.0,0.33517877739331026,0.18662053056516725], + [0.0,0.3308727412533641,0.18489811610918877], + [0.0,0.3265667051134179,0.18317570165321032], + [0.0,0.3222606689734717,0.18145328719723186], + [0.0,0.31795463283352565,0.17973087274125343], + [0.0,0.31364859669357936,0.1780084582852749], + [0.0,0.3093425605536332,0.17628604382929644], + [0.0,0.305036524413687,0.17456362937331796], + [0.0,0.3007304882737408,0.1728412149173395], + [0.0,0.29642445213379465,0.17111880046136102], + [0.0,0.2921184159938485,0.16939638600538257], + [0.0,0.28781237985390234,0.16767397154940408], + [0.0,0.28350634371395617,0.16595155709342563], + [0.0,0.27920030757401,0.16422914263744715], + [0.0,0.2748942714340638,0.16250672818146866], + [0.0,0.27058823529411763,0.1607843137254902] ], + YlGnBu: [ + [1.0,1.0,0.8509803921568627], + [0.9977854671280277,0.9991387927720108,0.8460592079969242], + [0.9955709342560554,0.9982775855440216,0.8411380238369858], + [0.9933564013840831,0.9974163783160322,0.8362168396770473], + [0.9911418685121107,0.996555171088043,0.8312956555171088], + [0.9889273356401385,0.9956939638600538,0.8263744713571703], + [0.9867128027681661,0.9948327566320646,0.8214532871972318], + [0.9844982698961938,0.9939715494040754,0.8165321030372933], + [0.9822837370242214,0.9931103421760861,0.8116109188773548], + [0.9800692041522492,0.9922491349480969,0.8066897347174163], + [0.9778546712802768,0.9913879277201076,0.8017685505574779], + [0.9756401384083045,0.9905267204921184,0.7968473663975394], + [0.9734256055363322,0.9896655132641292,0.7919261822376009], + [0.9712110726643599,0.9888043060361399,0.7870049980776624], + [0.9689965397923875,0.9879430988081507,0.782083813917724], + [0.9667820069204153,0.9870818915801615,0.7771626297577854], + [0.9645674740484429,0.9862206843521722,0.772241445597847], + [0.9623529411764706,0.985359477124183,0.7673202614379084], + [0.9601384083044983,0.9844982698961937,0.76239907727797], + [0.957923875432526,0.9836370626682045,0.7574778931180315], + [0.9557093425605536,0.9827758554402153,0.752556708958093], + [0.9534948096885814,0.9819146482122261,0.7476355247981545], + [0.951280276816609,0.9810534409842369,0.7427143406382161], + [0.9490657439446367,0.9801922337562476,0.7377931564782776], + [0.9468512110726643,0.9793310265282583,0.7328719723183391], + [0.9446366782006921,0.9784698193002691,0.7279507881584006], + [0.9424221453287197,0.9776086120722799,0.7230296039984621], + [0.9402076124567474,0.9767474048442907,0.7181084198385236], + [0.9379930795847751,0.9758861976163014,0.7131872356785851], + [0.9357785467128028,0.9750249903883121,0.7082660515186466], + [0.9335640138408304,0.9741637831603229,0.7033448673587082], + [0.9313494809688582,0.9733025759323337,0.6984236831987697], + [0.9288273740868896,0.972318339100346,0.6941637831603229], + [0.9241522491349482,0.970472895040369,0.6945328719723183], + [0.9194771241830065,0.9686274509803922,0.6949019607843137], + [0.914801999231065,0.9667820069204152,0.6952710495963091], + [0.9101268742791234,0.9649365628604383,0.6956401384083045], + [0.9054517493271819,0.9630911188004614,0.6960092272202999], + [0.9007766243752403,0.9612456747404844,0.6963783160322953], + [0.8961014994232988,0.9594002306805075,0.6967474048442907], + [0.8914263744713572,0.9575547866205305,0.697116493656286], + [0.8867512495194156,0.9557093425605536,0.6974855824682814], + [0.8820761245674741,0.9538638985005767,0.6978546712802768], + [0.8774009996155325,0.9520184544405997,0.6982237600922722], + [0.872725874663591,0.9501730103806229,0.6985928489042675], + [0.8680507497116494,0.9483275663206459,0.698961937716263], + [0.8633756247597079,0.946482122260669,0.6993310265282584], + [0.8587004998077663,0.944636678200692,0.6997001153402538], + [0.8540253748558247,0.9427912341407151,0.7000692041522492], + [0.8493502499038832,0.9409457900807382,0.7004382929642445], + [0.8446751249519415,0.9391003460207612,0.7008073817762399], + [0.84,0.9372549019607843,0.7011764705882353], + [0.8353248750480584,0.9354094579008073,0.7015455594002307], + [0.830649750096117,0.9335640138408304,0.701914648212226], + [0.8259746251441753,0.9317185697808535,0.7022837370242214], + [0.8212995001922337,0.9298731257208765,0.7026528258362169], + [0.8166243752402922,0.9280276816608997,0.7030219146482123], + [0.8119492502883506,0.9261822376009227,0.7033910034602077], + [0.8072741253364091,0.9243367935409458,0.703760092272203], + [0.8025990003844675,0.9224913494809688,0.7041291810841984], + [0.797923875432526,0.9206459054209919,0.7044982698961938], + [0.7932487504805844,0.918800461361015,0.7048673587081892], + [0.7885736255286429,0.916955017301038,0.7052364475201846], + [0.7838985005767013,0.9151095732410611,0.7056055363321799], + [0.7781776239907728,0.9128642829680892,0.7060976547481739], + [0.7693194925028836,0.9094194540561322,0.7069588619761631], + [0.7604613610149944,0.9059746251441754,0.7078200692041523], + [0.751603229527105,0.9025297962322184,0.7086812764321415], + [0.7427450980392157,0.8990849673202614,0.7095424836601307], + [0.7338869665513265,0.8956401384083045,0.7104036908881199], + [0.7250288350634372,0.8921953094963475,0.7112648981161093], + [0.7161707035755479,0.8887504805843907,0.7121261053440985], + [0.7073125720876586,0.8853056516724337,0.7129873125720877], + [0.6984544405997694,0.8818608227604767,0.7138485198000769], + [0.6895963091118802,0.8784159938485199,0.7147097270280661], + [0.6807381776239908,0.8749711649365628,0.7155709342560553], + [0.6718800461361015,0.8715263360246059,0.7164321414840447], + [0.6630219146482123,0.868081507112649,0.7172933487120339], + [0.654163783160323,0.864636678200692,0.7181545559400231], + [0.6453056516724337,0.8611918492887352,0.7190157631680123], + [0.6364475201845444,0.8577470203767782,0.7198769703960015], + [0.6275893886966551,0.8543021914648212,0.7207381776239907], + [0.618731257208766,0.8508573625528644,0.7215993848519799], + [0.6098731257208766,0.8474125336409073,0.7224605920799693], + [0.6010149942329873,0.8439677047289504,0.7233217993079585], + [0.592156862745098,0.8405228758169935,0.7241830065359477], + [0.5832987312572088,0.8370780469050365,0.7250442137639369], + [0.5744405997693195,0.8336332179930797,0.7259054209919261], + [0.5655824682814302,0.8301883890811227,0.7267666282199154], + [0.5567243367935409,0.8267435601691657,0.7276278354479047], + [0.5478662053056518,0.8232987312572089,0.7284890426758939], + [0.5390080738177624,0.8198539023452518,0.7293502499038831], + [0.5301499423298732,0.8164090734332949,0.7302114571318723], + [0.521291810841984,0.812964244521338,0.7310726643598615], + [0.5124336793540947,0.809519415609381,0.7319338715878507], + [0.5035755478662054,0.8060745866974242,0.73279507881584], + [0.4951787773933103,0.8028604382929643,0.733748558246828], + [0.4875509419454056,0.8000307574009996,0.7348558246828143], + [0.4799231064975011,0.797201076509035,0.7359630911188004], + [0.4722952710495963,0.7943713956170704,0.7370703575547866], + [0.46466743560169166,0.7915417147251057,0.7381776239907727], + [0.45703960015378703,0.7887120338331411,0.7392848904267589], + [0.44941176470588234,0.7858823529411765,0.7403921568627451], + [0.4417839292579777,0.7830526720492119,0.7414994232987312], + [0.43415609381007303,0.7802229911572472,0.7426066897347174], + [0.4265282583621684,0.7773933102652826,0.7437139561707036], + [0.4189004229142639,0.774563629373318,0.7448212226066897], + [0.4112725874663591,0.7717339484813533,0.7459284890426758], + [0.40364475201845446,0.7689042675893887,0.7470357554786621], + [0.39601691657054977,0.7660745866974241,0.7481430219146482], + [0.38838908112264514,0.7632449058054595,0.7492502883506343], + [0.38076124567474046,0.7604152249134948,0.7503575547866205], + [0.3731334102268358,0.7575855440215302,0.7514648212226067], + [0.3655055747789312,0.7547558631295656,0.7525720876585928], + [0.3578777393310266,0.751926182237601,0.753679354094579], + [0.3502499038831219,0.7490965013456363,0.7547866205305652], + [0.34262206843521725,0.7462668204536717,0.7558938869665514], + [0.33499423298731257,0.7434371395617071,0.7570011534025375], + [0.3273663975394079,0.7406074586697424,0.7581084198385236], + [0.3197385620915033,0.7377777777777779,0.7592156862745099], + [0.3121107266435986,0.7349480968858132,0.760322952710496], + [0.30448289119569394,0.7321184159938485,0.7614302191464821], + [0.2968550557477894,0.729288735101884,0.7625374855824683], + [0.2892272202998847,0.7264590542099193,0.7636447520184545], + [0.28159938485198,0.7236293733179546,0.7647520184544406], + [0.27397154940407537,0.7207996924259901,0.7658592848904268], + [0.26634371395617074,0.7179700115340254,0.766966551326413], + [0.25871587850826605,0.7151403306420607,0.7680738177623991], + [0.2526874279123414,0.7114494425221068,0.7683813917723953], + [0.24825836216839675,0.7068973471741637,0.7678892733564014], + [0.2438292964244521,0.7023452518262207,0.7673971549404076], + [0.23940023068050748,0.6977931564782776,0.7669050365244138], + [0.23497116493656298,0.6932410611303347,0.7664129181084199], + [0.2305420991926182,0.6886889657823914,0.765920799692426], + [0.22611303344867356,0.6841368704344483,0.7654286812764322], + [0.22168396770472892,0.6795847750865052,0.7649365628604383], + [0.21725490196078429,0.6750326797385621,0.7644444444444445], + [0.21282583621683965,0.670480584390619,0.7639523260284506], + [0.208396770472895,0.6659284890426759,0.7634602076124568], + [0.20396770472895037,0.6613763936947328,0.762968089196463], + [0.19953863898500573,0.6568242983467897,0.762475970780469], + [0.19510957324106112,0.6522722029988466,0.7619838523644752], + [0.19068050749711646,0.6477201076509035,0.7614917339484814], + [0.18625144175317185,0.6431680123029604,0.7609996155324875], + [0.18182237600922718,0.6386159169550173,0.7605074971164937], + [0.17739331026528254,0.6340638216070742,0.7600153787004998], + [0.1729642445213379,0.6295117262591311,0.759523260284506], + [0.16853517877739327,0.624959630911188,0.7590311418685122], + [0.16410611303344877,0.620407535563245,0.7585390234525183], + [0.15967704728950402,0.6158554402153018,0.7580469050365244], + [0.15524798154555938,0.6113033448673587,0.7575547866205306], + [0.15081891580161474,0.6067512495194156,0.7570626682045367], + [0.1463898500576701,0.6021991541714725,0.7565705497885429], + [0.14196078431372547,0.5976470588235294,0.756078431372549], + [0.13753171856978083,0.5930949634755863,0.7555863129565552], + [0.1331026528258362,0.5885428681276432,0.7550941945405614], + [0.12867358708189156,0.5839907727797001,0.7546020761245674], + [0.12424452133794692,0.579438677431757,0.7541099577085736], + [0.11981545559400228,0.5748865820838138,0.7536178392925797], + [0.11538638985005764,0.5703344867358708,0.7531257208765859], + [0.11410995770857363,0.5647058823529412,0.7510957324106113], + [0.11472510572856594,0.5584313725490195,0.7481430219146482], + [0.11534025374855825,0.552156862745098,0.7451903114186851], + [0.11595540176855056,0.5458823529411765,0.7422376009227221], + [0.11657054978854285,0.5396078431372551,0.739284890426759], + [0.11718569780853517,0.5333333333333333,0.7363321799307958], + [0.11780084582852748,0.5270588235294118,0.7333794694348328], + [0.1184159938485198,0.5207843137254902,0.7304267589388697], + [0.1190311418685121,0.5145098039215686,0.7274740484429065], + [0.11964628988850443,0.508235294117647,0.7245213379469435], + [0.12026143790849673,0.5019607843137255,0.7215686274509804], + [0.12087658592848904,0.4956862745098039,0.7186159169550173], + [0.12149173394848135,0.4894117647058823,0.7156632064590542], + [0.12210688196847366,0.4831372549019608,0.7127104959630911], + [0.12272202998846597,0.4768627450980392,0.709757785467128], + [0.12333717800845828,0.47058823529411764,0.706805074971165], + [0.12395232602845059,0.46431372549019606,0.7038523644752018], + [0.1245674740484429,0.4580392156862745,0.7008996539792387], + [0.12518262206843522,0.45176470588235296,0.6979469434832757], + [0.12579777008842752,0.4454901960784314,0.6949942329873126], + [0.12641291810841981,0.43921568627451,0.6920415224913495], + [0.12702806612841214,0.4329411764705883,0.6890888119953864], + [0.12764321414840446,0.42666666666666664,0.6861361014994233], + [0.12825836216839676,0.4203921568627451,0.6831833910034601], + [0.12887351018838908,0.41411764705882353,0.6802306805074971], + [0.1294886582083814,0.40784313725490196,0.677277970011534], + [0.1301038062283737,0.40156862745098043,0.6743252595155709], + [0.13071895424836602,0.3952941176470588,0.6713725490196079], + [0.13133410226835832,0.38901960784313727,0.6684198385236447], + [0.13194925028835064,0.3827450980392157,0.6654671280276816], + [0.13256439830834293,0.3764705882352941,0.6625144175317186], + [0.13317954632833526,0.3701960784313726,0.6595617070357555], + [0.13361014994232986,0.3647520184544406,0.6569780853517878], + [0.13397923875432527,0.3595847750865052,0.6545174932718185], + [0.13434832756632065,0.3544175317185698,0.6520569011918493], + [0.13471741637831602,0.3492502883506344,0.64959630911188], + [0.1350865051903114,0.34408304498269915,0.6471357170319109], + [0.1354555940023068,0.3389158016147636,0.6446751249519416], + [0.13582468281430218,0.33374855824682814,0.6422145328719723], + [0.1361937716262976,0.32858131487889275,0.6397539407920031], + [0.13656286043829297,0.32341407151095736,0.6372933487120338], + [0.13693194925028834,0.3182468281430219,0.6348327566320646], + [0.13730103806228375,0.3130795847750865,0.6323721645520953], + [0.13767012687427913,0.3079123414071511,0.6299115724721261], + [0.1380392156862745,0.3027450980392157,0.6274509803921569], + [0.1384083044982699,0.2975778546712803,0.6249903883121877], + [0.13877739331026528,0.2924106113033449,0.6225297962322184], + [0.13914648212226066,0.28724336793540944,0.6200692041522492], + [0.13951557093425607,0.28207612456747405,0.6176086120722799], + [0.13988465974625144,0.27690888119953866,0.6151480199923107], + [0.14025374855824682,0.2717416378316032,0.6126874279123414], + [0.14062283737024223,0.2665743944636678,0.6102268358323721], + [0.1409919261822376,0.26140715109573254,0.6077662437524031], + [0.14136101499423298,0.25623990772779703,0.6053056516724337], + [0.14173010380622839,0.2510726643598616,0.6028450595924645], + [0.14209919261822376,0.2459054209919262,0.6003844675124952], + [0.14246828143021917,0.24073817762399077,0.597923875432526], + [0.14283737024221455,0.23557093425605535,0.5954632833525567], + [0.14320645905420992,0.23040369088811996,0.5930026912725875], + [0.14357554786620533,0.22523644752018454,0.5905420991926182], + [0.1439446366782007,0.22006920415224912,0.5880815071126491], + [0.14431372549019608,0.21490196078431373,0.5856209150326798], + [0.1446828143021915,0.2097347174163783,0.5831603229527106], + [0.14505190311418686,0.2045674740484429,0.5806997308727413], + [0.1419761630142253,0.20144559784698193,0.5739331026528259], + [0.1384083044982699,0.1986159169550173,0.5665513264129182], + [0.1348404459823145,0.19578623606305268,0.5591695501730104], + [0.13127258746635911,0.19295655517108803,0.5517877739331027], + [0.1277047289504038,0.1901268742791235,0.5444059976931952], + [0.1241368704344483,0.18729719338715878,0.5370242214532872], + [0.1205690119184929,0.18446751249519416,0.5296424452133796], + [0.1170011534025375,0.18163783160322952,0.5222606689734718], + [0.11343329488658209,0.17880815071126488,0.514878892733564], + [0.10986543637062668,0.17597846981930026,0.5074971164936564], + [0.10629757785467128,0.17314878892733565,0.5001153402537486], + [0.10272971933871589,0.170319108035371,0.49273356401384083], + [0.09916186082276049,0.16748942714340637,0.4853517877739331], + [0.09559400230680508,0.16465974625144175,0.4779700115340254], + [0.09202614379084967,0.16183006535947714,0.47058823529411764], + [0.08845828527489427,0.1590003844675125,0.46320645905420993], + [0.08489042675893888,0.15617070357554785,0.4558246828143022], + [0.08132256824298348,0.15334102268358324,0.44844290657439445], + [0.07775470972702807,0.1505113417916186,0.44106113033448674], + [0.07418685121107267,0.14768166089965398,0.43367935409457903], + [0.07061899269511737,0.14485198000768942,0.4262975778546715], + [0.06705113417916186,0.14202229911572473,0.41891580161476355], + [0.06348327566320647,0.13919261822376008,0.41153402537485584], + [0.05991541714725106,0.13636293733179544,0.40415224913494807], + [0.05634755863129566,0.13353325643983083,0.3967704728950404], + [0.05277970011534025,0.1307035755478662,0.38938869665513265], + [0.049211841599384853,0.12787389465590157,0.3820069204152249], + [0.04564398308342946,0.12504421376393693,0.3746251441753172], + [0.042076124567474046,0.12221453287197231,0.36724336793540946], + [0.03850826605151865,0.11938485198000769,0.3598615916955017], + [0.03494040753556324,0.11655517108804306,0.35247981545559404], + [0.03137254901960784,0.11372549019607843,0.34509803921568627] ], + YlGnBu_r: [ + [0.03137254901960784,0.11372549019607843,0.34509803921568627], + [0.034940407535563246,0.11655517108804306,0.352479815455594], + [0.03850826605151865,0.11938485198000769,0.35986159169550175], + [0.042076124567474046,0.12221453287197231,0.36724336793540946], + [0.04564398308342945,0.12504421376393696,0.37462514417531717], + [0.049211841599384853,0.12787389465590157,0.38200692041522494], + [0.05277970011534026,0.1307035755478662,0.38938869665513265], + [0.05634755863129566,0.13353325643983083,0.39677047289504036], + [0.05991541714725106,0.13636293733179547,0.4041522491349481], + [0.06348327566320647,0.13919261822376008,0.41153402537485584], + [0.06705113417916186,0.14202229911572473,0.41891580161476355], + [0.07061899269511726,0.14485198000768934,0.42629757785467126], + [0.07418685121107267,0.14768166089965398,0.43367935409457903], + [0.07775470972702807,0.1505113417916186,0.44106113033448674], + [0.08132256824298348,0.15334102268358324,0.44844290657439445], + [0.08489042675893888,0.15617070357554785,0.4558246828143022], + [0.08845828527489427,0.1590003844675125,0.46320645905420993], + [0.09202614379084967,0.16183006535947714,0.47058823529411764], + [0.09559400230680508,0.16465974625144175,0.4779700115340254], + [0.09916186082276049,0.16748942714340637,0.4853517877739331], + [0.10272971933871589,0.170319108035371,0.49273356401384083], + [0.10629757785467128,0.17314878892733565,0.5001153402537486], + [0.10986543637062669,0.17597846981930026,0.5074971164936564], + [0.11343329488658209,0.17880815071126488,0.514878892733564], + [0.1170011534025375,0.18163783160322952,0.5222606689734718], + [0.1205690119184929,0.18446751249519416,0.5296424452133794], + [0.1241368704344483,0.18729719338715878,0.5370242214532872], + [0.1277047289504037,0.1901268742791234,0.544405997693195], + [0.13127258746635911,0.19295655517108803,0.5517877739331027], + [0.13484044598231448,0.19578623606305268,0.5591695501730104], + [0.1384083044982699,0.1986159169550173,0.5665513264129182], + [0.1419761630142253,0.2014455978469819,0.5739331026528258], + [0.14505190311418686,0.20456747404844292,0.5806997308727413], + [0.1446828143021915,0.20973471741637828,0.5831603229527105], + [0.14431372549019608,0.21490196078431373,0.5856209150326798], + [0.1439446366782007,0.22006920415224912,0.5880815071126491], + [0.14357554786620533,0.22523644752018454,0.5905420991926182], + [0.14320645905420992,0.2304036908881199,0.5930026912725875], + [0.14283737024221455,0.23557093425605535,0.5954632833525567], + [0.14246828143021917,0.24073817762399077,0.597923875432526], + [0.14209919261822376,0.2459054209919262,0.6003844675124952], + [0.14173010380622839,0.25107266435986153,0.6028450595924645], + [0.141361014994233,0.25623990772779703,0.6053056516724337], + [0.1409919261822376,0.2614071510957324,0.607766243752403], + [0.14062283737024223,0.2665743944636678,0.6102268358323721], + [0.14025374855824685,0.2717416378316032,0.6126874279123414], + [0.13988465974625144,0.27690888119953866,0.6151480199923107], + [0.13951557093425607,0.28207612456747405,0.6176086120722799], + [0.13914648212226066,0.28724336793540944,0.6200692041522492], + [0.13877739331026528,0.29241061130334484,0.6225297962322184], + [0.1384083044982699,0.2975778546712803,0.6249903883121877], + [0.1380392156862745,0.3027450980392157,0.6274509803921569], + [0.13767012687427913,0.3079123414071511,0.6299115724721261], + [0.13730103806228375,0.31307958477508646,0.6323721645520953], + [0.13693194925028834,0.3182468281430219,0.6348327566320646], + [0.13656286043829297,0.32341407151095736,0.6372933487120338], + [0.1361937716262976,0.32858131487889275,0.6397539407920031], + [0.13582468281430218,0.33374855824682814,0.6422145328719723], + [0.1354555940023068,0.33891580161476353,0.6446751249519416], + [0.13508650519031143,0.344083044982699,0.6471357170319108], + [0.13471741637831602,0.3492502883506344,0.64959630911188], + [0.13434832756632065,0.35441753171856977,0.6520569011918492], + [0.13397923875432527,0.3595847750865052,0.6545174932718185], + [0.13361014994232986,0.3647520184544406,0.6569780853517878], + [0.13317954632833526,0.3701960784313726,0.6595617070357555], + [0.13256439830834293,0.3764705882352941,0.6625144175317186], + [0.13194925028835064,0.38274509803921564,0.6654671280276816], + [0.13133410226835832,0.38901960784313727,0.6684198385236447], + [0.13071895424836602,0.39529411764705885,0.6713725490196079], + [0.1301038062283737,0.40156862745098043,0.6743252595155709], + [0.1294886582083814,0.40784313725490196,0.677277970011534], + [0.12887351018838908,0.41411764705882353,0.6802306805074971], + [0.12825836216839676,0.4203921568627451,0.6831833910034601], + [0.12764321414840446,0.4266666666666667,0.6861361014994233], + [0.12702806612841216,0.43294117647058816,0.6890888119953863], + [0.12641291810841984,0.4392156862745098,0.6920415224913494], + [0.12579777008842752,0.4454901960784314,0.6949942329873126], + [0.12518262206843522,0.45176470588235296,0.6979469434832757], + [0.1245674740484429,0.45803921568627454,0.7008996539792387], + [0.12395232602845059,0.4643137254901961,0.7038523644752018], + [0.12333717800845828,0.47058823529411764,0.706805074971165], + [0.12272202998846597,0.4768627450980392,0.709757785467128], + [0.12210688196847368,0.4831372549019607,0.7127104959630911], + [0.12149173394848135,0.4894117647058823,0.7156632064590542], + [0.12087658592848904,0.4956862745098039,0.7186159169550173], + [0.12026143790849673,0.5019607843137255,0.7215686274509804], + [0.11964628988850443,0.508235294117647,0.7245213379469435], + [0.1190311418685121,0.5145098039215686,0.7274740484429065], + [0.1184159938485198,0.5207843137254902,0.7304267589388697], + [0.11780084582852748,0.5270588235294118,0.7333794694348328], + [0.11718569780853519,0.5333333333333332,0.7363321799307958], + [0.11657054978854287,0.5396078431372549,0.7392848904267589], + [0.11595540176855056,0.5458823529411765,0.7422376009227221], + [0.11534025374855825,0.552156862745098,0.7451903114186851], + [0.11472510572856594,0.5584313725490195,0.7481430219146482], + [0.11410995770857363,0.5647058823529412,0.7510957324106113], + [0.11538638985005767,0.5703344867358708,0.7531257208765859], + [0.1198154555940023,0.5748865820838139,0.7536178392925797], + [0.12424452133794688,0.5794386774317569,0.7541099577085736], + [0.12867358708189158,0.5839907727797001,0.7546020761245674], + [0.13310265282583622,0.5885428681276432,0.7550941945405614], + [0.13753171856978086,0.5930949634755863,0.7555863129565552], + [0.1419607843137255,0.5976470588235294,0.756078431372549], + [0.14638985005767013,0.6021991541714725,0.7565705497885429], + [0.15081891580161477,0.6067512495194156,0.7570626682045367], + [0.1552479815455594,0.6113033448673587,0.7575547866205306], + [0.15967704728950396,0.6158554402153017,0.7580469050365244], + [0.1641061130334487,0.6204075355632449,0.7585390234525182], + [0.16853517877739332,0.624959630911188,0.7590311418685122], + [0.17296424452133796,0.6295117262591311,0.759523260284506], + [0.1773933102652826,0.6340638216070742,0.7600153787004998], + [0.18182237600922724,0.6386159169550173,0.7605074971164937], + [0.18625144175317185,0.6431680123029604,0.7609996155324875], + [0.19068050749711649,0.6477201076509035,0.7614917339484814], + [0.19510957324106104,0.6522722029988466,0.7619838523644752], + [0.19953863898500576,0.6568242983467897,0.762475970780469], + [0.2039677047289504,0.6613763936947328,0.762968089196463], + [0.208396770472895,0.6659284890426759,0.7634602076124568], + [0.21282583621683965,0.670480584390619,0.7639523260284506], + [0.21725490196078429,0.6750326797385621,0.7644444444444445], + [0.22168396770472892,0.6795847750865052,0.7649365628604383], + [0.22611303344867356,0.6841368704344483,0.7654286812764322], + [0.23054209919261814,0.6886889657823914,0.765920799692426], + [0.23497116493656284,0.6932410611303345,0.7664129181084198], + [0.23940023068050748,0.6977931564782776,0.7669050365244138], + [0.2438292964244521,0.7023452518262207,0.7673971549404076], + [0.24825836216839675,0.7068973471741637,0.7678892733564014], + [0.2526874279123414,0.711449442522107,0.7683813917723953], + [0.25871587850826605,0.7151403306420607,0.7680738177623991], + [0.2663437139561707,0.7179700115340254,0.766966551326413], + [0.27397154940407537,0.7207996924259901,0.7658592848904268], + [0.28159938485198,0.7236293733179546,0.7647520184544406], + [0.28922722029988446,0.7264590542099192,0.7636447520184545], + [0.2968550557477893,0.7292887351018839,0.7625374855824683], + [0.30448289119569394,0.7321184159938485,0.7614302191464821], + [0.3121107266435986,0.7349480968858132,0.760322952710496], + [0.31973856209150325,0.7377777777777778,0.7592156862745099], + [0.3273663975394079,0.7406074586697424,0.7581084198385236], + [0.33499423298731257,0.7434371395617071,0.7570011534025375], + [0.3426220684352172,0.7462668204536717,0.7558938869665514], + [0.3502499038831219,0.7490965013456363,0.7547866205305652], + [0.3578777393310265,0.751926182237601,0.753679354094579], + [0.3655055747789312,0.7547558631295656,0.7525720876585928], + [0.3731334102268358,0.7575855440215302,0.7514648212226067], + [0.38076124567474046,0.7604152249134948,0.7503575547866205], + [0.38838908112264514,0.7632449058054595,0.7492502883506343], + [0.3960169165705498,0.7660745866974241,0.7481430219146482], + [0.40364475201845446,0.7689042675893887,0.7470357554786621], + [0.41127258746635886,0.7717339484813532,0.745928489042676], + [0.41890042291426377,0.774563629373318,0.7448212226066897], + [0.4265282583621684,0.7773933102652826,0.7437139561707036], + [0.43415609381007303,0.7802229911572472,0.7426066897347174], + [0.4417839292579777,0.7830526720492119,0.7414994232987312], + [0.4494117647058824,0.7858823529411765,0.7403921568627451], + [0.45703960015378703,0.7887120338331411,0.7392848904267589], + [0.46466743560169166,0.7915417147251058,0.7381776239907727], + [0.47229527104959634,0.7943713956170704,0.7370703575547866], + [0.479923106497501,0.797201076509035,0.7359630911188004], + [0.4875509419454056,0.8000307574009996,0.7348558246828143], + [0.4951787773933103,0.8028604382929643,0.733748558246828], + [0.5035755478662053,0.806074586697424,0.73279507881584], + [0.5124336793540946,0.809519415609381,0.7319338715878507], + [0.5212918108419838,0.812964244521338,0.7310726643598615], + [0.5301499423298731,0.8164090734332949,0.7302114571318723], + [0.5390080738177622,0.8198539023452518,0.7293502499038831], + [0.5478662053056517,0.8232987312572088,0.7284890426758939], + [0.5567243367935409,0.8267435601691657,0.7276278354479047], + [0.5655824682814302,0.8301883890811227,0.7267666282199153], + [0.5744405997693195,0.8336332179930795,0.7259054209919261], + [0.5832987312572088,0.8370780469050365,0.7250442137639369], + [0.592156862745098,0.8405228758169935,0.7241830065359477], + [0.6010149942329873,0.8439677047289504,0.7233217993079585], + [0.6098731257208766,0.8474125336409073,0.7224605920799693], + [0.6187312572087659,0.8508573625528643,0.72159938485198], + [0.6275893886966551,0.8543021914648212,0.7207381776239907], + [0.6364475201845444,0.8577470203767782,0.7198769703960015], + [0.6453056516724337,0.8611918492887352,0.7190157631680123], + [0.654163783160323,0.864636678200692,0.7181545559400231], + [0.6630219146482123,0.868081507112649,0.7172933487120339], + [0.6718800461361015,0.8715263360246059,0.7164321414840447], + [0.6807381776239905,0.8749711649365628,0.7155709342560554], + [0.6895963091118801,0.8784159938485198,0.7147097270280661], + [0.6984544405997694,0.8818608227604767,0.7138485198000769], + [0.7073125720876586,0.8853056516724337,0.7129873125720877], + [0.7161707035755479,0.8887504805843907,0.7121261053440985], + [0.7250288350634372,0.8921953094963475,0.7112648981161093], + [0.7338869665513265,0.8956401384083045,0.7104036908881199], + [0.7427450980392157,0.8990849673202614,0.7095424836601307], + [0.7516032295271049,0.9025297962322184,0.7086812764321415], + [0.7604613610149942,0.9059746251441753,0.7078200692041523], + [0.7693194925028835,0.9094194540561322,0.7069588619761631], + [0.7781776239907727,0.9128642829680892,0.7060976547481739], + [0.7838985005767013,0.9151095732410611,0.7056055363321799], + [0.7885736255286429,0.916955017301038,0.7052364475201846], + [0.7932487504805844,0.918800461361015,0.7048673587081892], + [0.797923875432526,0.9206459054209919,0.7044982698961938], + [0.8025990003844674,0.9224913494809688,0.7041291810841984], + [0.8072741253364091,0.9243367935409458,0.703760092272203], + [0.8119492502883506,0.9261822376009227,0.7033910034602077], + [0.8166243752402922,0.9280276816608997,0.7030219146482123], + [0.8212995001922337,0.9298731257208765,0.7026528258362169], + [0.8259746251441753,0.9317185697808535,0.7022837370242215], + [0.8306497500961169,0.9335640138408304,0.701914648212226], + [0.8353248750480584,0.9354094579008073,0.7015455594002307], + [0.84,0.9372549019607843,0.7011764705882353], + [0.8446751249519415,0.9391003460207612,0.7008073817762399], + [0.8493502499038832,0.9409457900807382,0.7004382929642445], + [0.8540253748558247,0.9427912341407151,0.7000692041522492], + [0.8587004998077663,0.944636678200692,0.6997001153402538], + [0.8633756247597079,0.946482122260669,0.6993310265282584], + [0.8680507497116494,0.9483275663206459,0.698961937716263], + [0.872725874663591,0.9501730103806229,0.6985928489042675], + [0.8774009996155324,0.9520184544405997,0.6982237600922722], + [0.8820761245674741,0.9538638985005767,0.6978546712802768], + [0.8867512495194156,0.9557093425605536,0.6974855824682814], + [0.8914263744713572,0.9575547866205305,0.697116493656286], + [0.8961014994232988,0.9594002306805075,0.6967474048442907], + [0.9007766243752403,0.9612456747404844,0.6963783160322953], + [0.9054517493271819,0.9630911188004614,0.6960092272202999], + [0.9101268742791234,0.9649365628604383,0.6956401384083045], + [0.914801999231065,0.9667820069204152,0.6952710495963091], + [0.9194771241830065,0.9686274509803922,0.6949019607843137], + [0.9241522491349481,0.970472895040369,0.6945328719723183], + [0.9288273740868898,0.972318339100346,0.6941637831603229], + [0.9313494809688582,0.9733025759323337,0.6984236831987697], + [0.9335640138408304,0.9741637831603229,0.7033448673587082], + [0.9357785467128028,0.9750249903883121,0.7082660515186466], + [0.9379930795847751,0.9758861976163015,0.7131872356785851], + [0.9402076124567473,0.9767474048442906,0.7181084198385235], + [0.9424221453287197,0.9776086120722799,0.7230296039984621], + [0.9446366782006921,0.9784698193002691,0.7279507881584006], + [0.9468512110726643,0.9793310265282583,0.7328719723183391], + [0.9490657439446367,0.9801922337562475,0.7377931564782776], + [0.951280276816609,0.9810534409842369,0.7427143406382161], + [0.9534948096885814,0.9819146482122261,0.7476355247981545], + [0.9557093425605536,0.9827758554402153,0.752556708958093], + [0.957923875432526,0.9836370626682045,0.7574778931180315], + [0.9601384083044983,0.9844982698961937,0.76239907727797], + [0.9623529411764706,0.985359477124183,0.7673202614379084], + [0.9645674740484429,0.9862206843521722,0.772241445597847], + [0.9667820069204153,0.9870818915801615,0.7771626297577854], + [0.9689965397923875,0.9879430988081507,0.782083813917724], + [0.9712110726643599,0.9888043060361399,0.7870049980776624], + [0.9734256055363322,0.9896655132641292,0.7919261822376009], + [0.9756401384083044,0.9905267204921184,0.7968473663975393], + [0.9778546712802768,0.9913879277201076,0.8017685505574779], + [0.9800692041522492,0.9922491349480969,0.8066897347174163], + [0.9822837370242214,0.9931103421760861,0.8116109188773548], + [0.9844982698961938,0.9939715494040754,0.8165321030372933], + [0.9867128027681661,0.9948327566320646,0.8214532871972318], + [0.9889273356401385,0.9956939638600538,0.8263744713571703], + [0.9911418685121107,0.996555171088043,0.8312956555171087], + [0.993356401384083,0.9974163783160322,0.8362168396770473], + [0.9955709342560554,0.9982775855440216,0.8411380238369858], + [0.9977854671280277,0.9991387927720108,0.8460592079969242], + [1.0,1.0,0.8509803921568627] ], + YlGn_r: [ + [0.0,0.27058823529411763,0.1607843137254902], + [0.0,0.2748942714340638,0.1625067281814687], + [0.0,0.27920030757401,0.16422914263744715], + [0.0,0.28350634371395617,0.16595155709342563], + [0.0,0.28781237985390234,0.16767397154940408], + [0.0,0.2921184159938485,0.16939638600538257], + [0.0,0.2964244521337947,0.17111880046136102], + [0.0,0.3007304882737408,0.1728412149173395], + [0.0,0.305036524413687,0.17456362937331796], + [0.0,0.3093425605536332,0.17628604382929644], + [0.0,0.31364859669357936,0.1780084582852749], + [0.0,0.31795463283352554,0.17973087274125338], + [0.0,0.3222606689734717,0.18145328719723183], + [0.0,0.3265667051134179,0.18317570165321032], + [0.0,0.3308727412533641,0.18489811610918877], + [0.0,0.33517877739331026,0.18662053056516725], + [0.0,0.33948481353325644,0.18834294502114574], + [0.0,0.3437908496732026,0.1900653594771242], + [0.0,0.3480968858131488,0.19178777393310267], + [0.0,0.35240292195309497,0.19351018838908113], + [0.0,0.35670895809304115,0.1952326028450596], + [0.0,0.36101499423298733,0.19695501730103807], + [0.0,0.3653210303729335,0.19867743175701655], + [0.0,0.36962706651287963,0.200399846212995], + [0.0,0.3739331026528258,0.20212226066897349], + [0.0,0.378239138792772,0.20384467512495197], + [0.0,0.38254517493271817,0.20556708958093042], + [0.0,0.38685121107266435,0.20728950403690888], + [0.0,0.3911572472126105,0.20901191849288736], + [0.0,0.3954632833525567,0.21073433294886584], + [0.0,0.3997693194925029,0.2124567474048443], + [0.0,0.40407535563244906,0.21417916186082278], + [0.0005382545174932718,0.40827374086889656,0.21587081891580162], + [0.0048442906574394165,0.41171856978085347,0.21734717416378316], + [0.009150326797385621,0.41516339869281044,0.21882352941176472], + [0.013456362937331797,0.4186082276047674,0.22029988465974626], + [0.017762399077277974,0.4220530565167243,0.2217762399077278], + [0.022068435217224118,0.4254978854286813,0.22325259515570933], + [0.026374471357170325,0.42894271434063824,0.2247289504036909], + [0.030680507497116496,0.43238754325259515,0.22620530565167243], + [0.03498654363706267,0.4358323721645521,0.227681660899654], + [0.03929257977700881,0.439277201076509,0.22915801614763553], + [0.04359861591695502,0.442722029988466,0.23063437139561707], + [0.04790465205690119,0.4461668589004229,0.23211072664359864], + [0.05221068819684737,0.44961168781237987,0.23358708189158017], + [0.056516724336793514,0.4530565167243368,0.2350634371395617], + [0.06082276047673972,0.45650134563629374,0.23653979238754327], + [0.0651287966166859,0.4599461745482507,0.2380161476355248], + [0.06943483275663206,0.4633910034602076,0.23949250288350635], + [0.07374086889657822,0.4668358323721645,0.24096885813148788], + [0.07804690503652442,0.4702806612841215,0.24244521337946945], + [0.08235294117647059,0.47372549019607846,0.24392156862745099], + [0.08665897731641677,0.4771703191080354,0.24539792387543252], + [0.09096501345636292,0.48061514801999233,0.24687427912341406], + [0.09527104959630912,0.4840599769319493,0.24835063437139562], + [0.09957708573625529,0.4875048058439062,0.24982698961937716], + [0.10388312187620147,0.4909496347558632,0.2513033448673587], + [0.1081891580161476,0.4943944636678201,0.25277970011534023], + [0.11249519415609381,0.49783929257977705,0.2542560553633218], + [0.11680123029603999,0.501284121491734,0.25573241061130336], + [0.12110726643598617,0.5047289504036909,0.25720876585928487], + [0.1254133025759323,0.5081737793156479,0.25868512110726644], + [0.1297193387158785,0.5116186082276049,0.260161476355248], + [0.1340253748558247,0.5150634371395617,0.2616378316032295], + [0.1381776239907728,0.5188465974625145,0.2635447904652057], + [0.14186851211072665,0.5236447520184545,0.2667435601691657], + [0.14555940023068045,0.5284429065743944,0.26994232987312566], + [0.1492502883506344,0.5332410611303345,0.27314109957708577], + [0.15294117647058825,0.5380392156862746,0.27633986928104576], + [0.1566320645905421,0.5428373702422146,0.27953863898500575], + [0.16032295271049596,0.5476355247981546,0.2827374086889658], + [0.16401384083044984,0.5524336793540946,0.2859361783929258], + [0.1677047289504037,0.5572318339100346,0.28913494809688584], + [0.17139561707035755,0.5620299884659746,0.2923337178008458], + [0.17508650519031138,0.5668281430219146,0.2955324875048058], + [0.1787773933102653,0.5716262975778547,0.29873125720876587], + [0.18246828143021915,0.5764244521337947,0.30193002691272586], + [0.186159169550173,0.5812226066897347,0.3051287966166859], + [0.18985005767012686,0.5860207612456747,0.3083275663206459], + [0.19354094579008074,0.5908189158016147,0.31152633602460594], + [0.1972318339100346,0.5956170703575547,0.31472510572856593], + [0.20092272202998845,0.6004152249134949,0.3179238754325259], + [0.20461361014994228,0.6052133794694348,0.3211226451364859], + [0.20830449826989617,0.6100115340253749,0.32432141484044597], + [0.21199538638985005,0.6148096885813149,0.327520184544406], + [0.2156862745098039,0.6196078431372549,0.330718954248366], + [0.21937716262975776,0.6244059976931949,0.333917723952326], + [0.22306805074971164,0.629204152249135,0.33711649365628604], + [0.2267589388696655,0.634002306805075,0.34031526336024603], + [0.23044982698961936,0.638800461361015,0.343514033064206], + [0.23414071510957318,0.6435986159169549,0.346712802768166], + [0.23783160322952707,0.648396770472895,0.3499115724721261], + [0.24152249134948095,0.653194925028835,0.3531103421760861], + [0.24521337946943483,0.657993079584775,0.3563091118800461], + [0.24890426758938866,0.6627912341407151,0.35950788158400615], + [0.25259515570934254,0.6675893886966551,0.36270665128796614], + [0.257439446366782,0.671833910034602,0.36599769319492503], + [0.2642060745866974,0.6751557093425605,0.36944252210688194], + [0.27097270280661273,0.6784775086505189,0.37288735101883885], + [0.27773933102652826,0.6817993079584774,0.3763321799307958], + [0.2845059592464437,0.6851211072664359,0.3797770088427528], + [0.2912725874663591,0.6884429065743944,0.3832218377547097], + [0.2980392156862745,0.691764705882353,0.38666666666666666], + [0.3048058439061899,0.6950865051903113,0.39011149557862357], + [0.31157247212610534,0.6984083044982698,0.39355632449058053], + [0.31833910034602075,0.7017301038062284,0.39700115340253744], + [0.32510572856593606,0.7050519031141868,0.40044598231449435], + [0.3318723567858516,0.7083737024221453,0.4038908112264513], + [0.338638985005767,0.7116955017301038,0.4073356401384083], + [0.3454056132256824,0.7150173010380623,0.41078046905036525], + [0.35217224144559783,0.7183391003460208,0.41422529796232216], + [0.35893886966551325,0.7216608996539792,0.4176701268742791], + [0.36570549788542867,0.7249826989619377,0.42111495578623603], + [0.3724721261053441,0.7283044982698962,0.424559784698193], + [0.3792387543252594,0.7316262975778546,0.42800461361014985], + [0.3860053825451749,0.7349480968858131,0.4314494425221069], + [0.39277201076509033,0.7382698961937716,0.4348942714340638], + [0.39953863898500575,0.7415916955017301,0.43833910034602075], + [0.40630526720492116,0.7449134948096886,0.44178392925797766], + [0.4130718954248366,0.7482352941176471,0.4452287581699346], + [0.419838523644752,0.7515570934256055,0.44867358708189153], + [0.4266051518646674,0.754878892733564,0.4521184159938485], + [0.43337178008458277,0.7582006920415224,0.45556324490580535], + [0.44013840830449824,0.7615224913494809,0.4590080738177624], + [0.44690503652441366,0.7648442906574394,0.4624529027297193], + [0.4536716647443291,0.7681660899653979,0.46589773164167625], + [0.4604382929642445,0.7714878892733564,0.4693425605536332], + [0.4672049211841599,0.7748096885813149,0.4727873894655901], + [0.47384851980007686,0.7778854286812764,0.4758016147635525], + [0.48036908881199536,0.7807151095732411,0.4783852364475202], + [0.48688965782391386,0.7835447904652058,0.4809688581314879], + [0.49341022683583236,0.7863744713571703,0.48355247981545557], + [0.4999307958477507,0.7892041522491349,0.4861361014994232], + [0.5064513648596694,0.7920338331410995,0.48871972318339096], + [0.5129719338715879,0.7948635140330642,0.4913033448673587], + [0.5194925028835063,0.7976931949250289,0.4938869665513264], + [0.5260130718954248,0.8005228758169934,0.4964705882352941], + [0.5325336409073433,0.8033525567089581,0.4990542099192618], + [0.5390542099192618,0.8061822376009228,0.5016378316032295], + [0.5455747789311803,0.8090119184928873,0.5042214532871973], + [0.5520953479430988,0.811841599384852,0.5068050749711649], + [0.5586159169550173,0.8146712802768167,0.5093886966551326], + [0.5651364859669358,0.8175009611687812,0.5119723183391003], + [0.5716570549788543,0.8203306420607459,0.514555940023068], + [0.5781776239907728,0.8231603229527105,0.5171395617070358], + [0.5846981930026913,0.8259900038446751,0.5197231833910034], + [0.5912187620146098,0.8288196847366398,0.5223068050749712], + [0.5977393310265283,0.8316493656286044,0.5248904267589389], + [0.6042599000384465,0.8344790465205689,0.5274740484429065], + [0.6107804690503653,0.8373087274125337,0.5300576701268743], + [0.6173010380622838,0.8401384083044983,0.532641291810842], + [0.6238216070742022,0.8429680891964629,0.5352249134948097], + [0.6303421760861208,0.8457977700884276,0.5378085351787774], + [0.6368627450980393,0.8486274509803922,0.5403921568627451], + [0.6433833141099577,0.8514571318723568,0.5429757785467129], + [0.6499038831218762,0.8542868127643215,0.5455594002306805], + [0.6564244521337947,0.8571164936562861,0.5481430219146483], + [0.6629450211457132,0.8599461745482507,0.5507266435986159], + [0.6694655901576317,0.8627758554402153,0.5533102652825836], + [0.6759861591695502,0.86560553633218,0.5558938869665513], + [0.6818146866589774,0.8681276432141485,0.558477508650519], + [0.6872279892349097,0.8704652056901192,0.5610611303344868], + [0.692641291810842,0.87280276816609,0.5636447520184544], + [0.6980545943867743,0.8751403306420608,0.5662283737024222], + [0.7034678969627065,0.8774778931180315,0.5688119953863898], + [0.708881199538639,0.8798154555940023,0.5713956170703576], + [0.7142945021145714,0.8821530180699731,0.5739792387543252], + [0.7197078046905037,0.8844905805459439,0.576562860438293], + [0.725121107266436,0.8868281430219147,0.5791464821222607], + [0.7305344098423683,0.8891657054978854,0.5817301038062284], + [0.7359477124183007,0.8915032679738563,0.5843137254901961], + [0.741361014994233,0.893840830449827,0.5868973471741638], + [0.7467743175701653,0.8961783929257978,0.5894809688581315], + [0.7521876201460976,0.8985159554017685,0.5920645905420991], + [0.75760092272203,0.9008535178777394,0.5946482122260669], + [0.7630142252979624,0.9031910803537101,0.5972318339100345], + [0.7684275278738947,0.9055286428296809,0.5998154555940023], + [0.773840830449827,0.9078662053056517,0.60239907727797], + [0.7792541330257593,0.9102037677816225,0.6049826989619377], + [0.7846674356016916,0.9125413302575932,0.6075663206459054], + [0.7900807381776238,0.9148788927335639,0.6101499423298731], + [0.7954940407535563,0.9172164552095348,0.6127335640138408], + [0.8009073433294887,0.9195540176855056,0.6153171856978085], + [0.806320645905421,0.9218915801614763,0.6179008073817762], + [0.8117339484813533,0.9242291426374472,0.6204844290657439], + [0.8171472510572857,0.9265667051134179,0.6230680507497116], + [0.822560553633218,0.9289042675893887,0.6256516724336794], + [0.8279738562091503,0.9312418300653594,0.628235294117647], + [0.8333871587850826,0.9335793925413303,0.6308189158016148], + [0.8388004613610149,0.935916955017301,0.6334025374855824], + [0.8442137639369474,0.9382545174932718,0.6359861591695501], + [0.8496270665128797,0.9405920799692425,0.6385697808535178], + [0.8537485582468282,0.9422837370242214,0.6412456747404843], + [0.8574394463667819,0.943760092272203,0.6439523260284505], + [0.8611303344867358,0.9452364475201845,0.6466589773164167], + [0.8648212226066897,0.946712802768166,0.6493656286043828], + [0.8685121107266435,0.9481891580161476,0.652072279892349], + [0.8722029988465975,0.9496655132641292,0.6547789311803153], + [0.8758938869665513,0.9511418685121107,0.6574855824682814], + [0.8795847750865051,0.9526182237600923,0.6601922337562476], + [0.883275663206459,0.9540945790080738,0.6628988850442137], + [0.8869665513264129,0.9555709342560553,0.6656055363321799], + [0.8906574394463668,0.957047289504037,0.6683121876201461], + [0.8943483275663207,0.9585236447520185,0.6710188389081122], + [0.8980392156862745,0.96,0.6737254901960784], + [0.9017301038062283,0.9614763552479816,0.6764321414840445], + [0.9054209919261822,0.9629527104959631,0.6791387927720107], + [0.9091118800461361,0.9644290657439446,0.6818454440599769], + [0.91280276816609,0.9659054209919262,0.684552095347943], + [0.9164936562860438,0.9673817762399077,0.6872587466359092], + [0.9201845444059977,0.9688581314878892,0.6899653979238753], + [0.9238754325259515,0.9703344867358709,0.6926720492118416], + [0.9275663206459053,0.9718108419838524,0.6953787004998077], + [0.9312572087658593,0.973287197231834,0.6980853517877739], + [0.9349480968858132,0.9747635524798155,0.7007920030757401], + [0.938638985005767,0.976239907727797,0.7034986543637063], + [0.9423298731257209,0.9777162629757786,0.7062053056516724], + [0.9460207612456747,0.9791926182237601,0.7089119569396386], + [0.9497116493656286,0.9806689734717416,0.7116186082276047], + [0.9534025374855825,0.9821453287197233,0.7143252595155709], + [0.9570934256055363,0.9836216839677048,0.7170319108035371], + [0.9607843137254902,0.9850980392156863,0.7197385620915032], + [0.9644752018454441,0.9865743944636679,0.7224452133794694], + [0.9681660899653979,0.9880507497116494,0.7251518646674355], + [0.9694886582083814,0.9885582468281431,0.7302268358323721], + [0.970472895040369,0.9889273356401385,0.7356401384083044], + [0.9714571318723568,0.9892964244521338,0.7410534409842369], + [0.9724413687043445,0.9896655132641292,0.7464667435601692], + [0.9734256055363322,0.9900346020761246,0.7518800461361014], + [0.9744098423683198,0.99040369088812,0.7572933487120338], + [0.9753940792003076,0.9907727797001153,0.7627066512879661], + [0.9763783160322953,0.9911418685121107,0.7681199538638985], + [0.977362552864283,0.9915109573241061,0.7735332564398308], + [0.9783467896962706,0.9918800461361015,0.7789465590157632], + [0.9793310265282583,0.992249134948097,0.7843598615916955], + [0.9803152633602461,0.9926182237600923,0.7897731641676278], + [0.9812995001922338,0.9929873125720877,0.7951864667435602], + [0.9822837370242214,0.9933564013840831,0.8005997693194925], + [0.9832679738562091,0.9937254901960785,0.8060130718954248], + [0.9842522106881968,0.9940945790080739,0.8114263744713571], + [0.9852364475201846,0.9944636678200692,0.8168396770472895], + [0.9862206843521722,0.9948327566320646,0.8222529796232219], + [0.9872049211841599,0.99520184544406,0.8276662821991542], + [0.9881891580161476,0.9955709342560554,0.8330795847750865], + [0.9891733948481353,0.9959400230680507,0.8384928873510187], + [0.990157631680123,0.9963091118800461,0.8439061899269512], + [0.9911418685121107,0.9966782006920415,0.8493194925028835], + [0.9921261053440984,0.9970472895040369,0.8547327950788158], + [0.9931103421760861,0.9974163783160324,0.8601460976547481], + [0.9940945790080739,0.9977854671280277,0.8655594002306806], + [0.9950788158400615,0.9981545559400231,0.8709727028066129], + [0.9960630526720492,0.9985236447520185,0.8763860053825452], + [0.9970472895040369,0.9988927335640139,0.8817993079584775], + [0.9980315263360247,0.9992618223760092,0.8872126105344098], + [0.9990157631680123,0.9996309111880046,0.8926259131103422], + [1.0,1.0,0.8980392156862745] ], + YlOrBr: [ + [1.0,1.0,0.8980392156862745], + [1.0,0.9990157631680123,0.8929950019223376], + [1.0,0.9980315263360247,0.8879507881584007], + [1.0,0.9970472895040369,0.8829065743944637], + [1.0,0.9960630526720492,0.8778623606305268], + [1.0,0.9950788158400615,0.8728181468665898], + [1.0,0.9940945790080739,0.8677739331026528], + [1.0,0.9931103421760861,0.8627297193387159], + [1.0,0.9921261053440984,0.857685505574779], + [1.0,0.9911418685121107,0.852641291810842], + [1.0,0.990157631680123,0.8475970780469051], + [1.0,0.9891733948481354,0.8425528642829682], + [1.0,0.9881891580161476,0.8375086505190312], + [1.0,0.9872049211841599,0.8324644367550942], + [1.0,0.9862206843521722,0.8274202229911573], + [1.0,0.9852364475201846,0.8223760092272203], + [1.0,0.9842522106881968,0.8173317954632834], + [1.0,0.9832679738562091,0.8122875816993465], + [1.0,0.9822837370242214,0.8072433679354095], + [1.0,0.9812995001922338,0.8021991541714726], + [1.0,0.9803152633602461,0.7971549404075357], + [1.0,0.9793310265282583,0.7921107266435987], + [1.0,0.9783467896962706,0.7870665128796617], + [1.0,0.977362552864283,0.7820222991157247], + [1.0,0.9763783160322953,0.7769780853517878], + [1.0,0.9753940792003075,0.7719338715878509], + [1.0,0.9744098423683198,0.7668896578239139], + [1.0,0.9734256055363322,0.761845444059977], + [1.0,0.9724413687043445,0.7568012302960401], + [1.0,0.9714571318723568,0.751757016532103], + [1.0,0.970472895040369,0.7467128027681661], + [1.0,0.9694886582083814,0.7416685890042292], + [0.9999846212995002,0.968319876970396,0.7365936178392927], + [0.9998615916955017,0.9658592848904268,0.7313033448673588], + [0.9997385620915032,0.9633986928104575,0.7260130718954249], + [0.9996155324875048,0.9609381007304882,0.720722798923491], + [0.9994925028835063,0.9584775086505191,0.7154325259515572], + [0.9993694732795079,0.9560169165705498,0.7101422529796233], + [0.9992464436755094,0.9535563244905806,0.7048519800076893], + [0.999123414071511,0.9510957324106113,0.6995617070357555], + [0.9990003844675125,0.948635140330642,0.6942714340638216], + [0.998877354863514,0.9461745482506728,0.6889811610918878], + [0.9987543252595156,0.9437139561707035,0.6836908881199539], + [0.9986312956555171,0.9412533640907343,0.67840061514802], + [0.9985082660515187,0.938792772010765,0.6731103421760861], + [0.9983852364475202,0.9363321799307959,0.6678200692041523], + [0.9982622068435217,0.9338715878508266,0.6625297962322184], + [0.9981391772395233,0.9314109957708574,0.6572395232602846], + [0.9980161476355248,0.9289504036908881,0.6519492502883506], + [0.9978931180315264,0.9264898116109188,0.6466589773164169], + [0.9977700884275279,0.9240292195309496,0.6413687043444829], + [0.9976470588235294,0.9215686274509803,0.636078431372549], + [0.997524029219531,0.9191080353710112,0.6307881584006152], + [0.9974009996155325,0.9166474432910419,0.6254978854286813], + [0.9972779700115341,0.9141868512110727,0.6202076124567474], + [0.9971549404075356,0.9117262591311034,0.6149173394848135], + [0.9970319108035371,0.9092656670511341,0.6096270665128797], + [0.9969088811995387,0.9068050749711649,0.6043367935409458], + [0.9967858515955402,0.9043444828911956,0.5990465205690119], + [0.9966628219915418,0.9018838908112264,0.593756247597078], + [0.9965397923875433,0.8994232987312571,0.5884659746251442], + [0.9964167627835449,0.896962706651288,0.5831757016532103], + [0.9962937331795464,0.8945021145713187,0.5778854286812765], + [0.9961707035755479,0.8920415224913494,0.5725951557093425], + [0.996078431372549,0.8892425990003844,0.5665974625144176], + [0.996078431372549,0.885428681276432,0.558477508650519], + [0.996078431372549,0.8816147635524798,0.5503575547866206], + [0.996078431372549,0.8778008458285275,0.542237600922722], + [0.996078431372549,0.8739869281045751,0.5341176470588235], + [0.996078431372549,0.8701730103806228,0.5259976931949251], + [0.996078431372549,0.8663590926566704,0.5178777393310265], + [0.996078431372549,0.8625451749327182,0.509757785467128], + [0.996078431372549,0.8587312572087659,0.5016378316032295], + [0.996078431372549,0.8549173394848135,0.493517877739331], + [0.996078431372549,0.8511034217608613,0.4853979238754326], + [0.996078431372549,0.8472895040369088,0.477277970011534], + [0.996078431372549,0.8434755863129565,0.4691580161476355], + [0.996078431372549,0.8396616685890043,0.461038062283737], + [0.996078431372549,0.8358477508650519,0.4529181084198385], + [0.996078431372549,0.8320338331410996,0.44479815455594], + [0.996078431372549,0.8282199154171472,0.43667820069204155], + [0.996078431372549,0.8244059976931949,0.42855824682814303], + [0.996078431372549,0.8205920799692427,0.4204382929642446], + [0.996078431372549,0.8167781622452903,0.412318339100346], + [0.996078431372549,0.812964244521338,0.4041983852364475], + [0.996078431372549,0.8091503267973856,0.39607843137254906], + [0.996078431372549,0.8053364090734333,0.38795847750865053], + [0.996078431372549,0.801522491349481,0.379838523644752], + [0.996078431372549,0.7977085736255287,0.3717185697808535], + [0.996078431372549,0.7938946559015764,0.363598615916955], + [0.996078431372549,0.790080738177624,0.35547866205305667], + [0.996078431372549,0.7862668204536717,0.34735870818915804], + [0.996078431372549,0.7824529027297193,0.3392387543252595], + [0.996078431372549,0.7786389850057671,0.331118800461361], + [0.996078431372549,0.7748250672818148,0.32299884659746253], + [0.996078431372549,0.7710111495578624,0.314878892733564], + [0.996078431372549,0.766643598615917,0.30805074971164936], + [0.996078431372549,0.7613533256439832,0.3033756247597078], + [0.996078431372549,0.7560630526720493,0.2987004998077663], + [0.996078431372549,0.7507727797001154,0.2940253748558247], + [0.996078431372549,0.7454825067281815,0.28935024990388314], + [0.996078431372549,0.7401922337562477,0.2846751249519416], + [0.996078431372549,0.7349019607843138,0.28], + [0.996078431372549,0.7296116878123798,0.27532487504805847], + [0.996078431372549,0.724321414840446,0.2706497500961169], + [0.996078431372549,0.7190311418685121,0.2659746251441753], + [0.996078431372549,0.7137408688965783,0.2612995001922338], + [0.996078431372549,0.7084505959246444,0.2566243752402922], + [0.996078431372549,0.7031603229527105,0.25194925028835063], + [0.996078431372549,0.6978700499807766,0.24727412533640908], + [0.996078431372549,0.6925797770088428,0.24259900038446752], + [0.996078431372549,0.6872895040369089,0.23792387543252597], + [0.996078431372549,0.6819992310649751,0.2332487504805844], + [0.996078431372549,0.6767089580930412,0.22857362552864285], + [0.996078431372549,0.6714186851211074,0.22389850057670135], + [0.996078431372549,0.6661284121491734,0.21922337562475974], + [0.996078431372549,0.6608381391772395,0.21454825067281819], + [0.996078431372549,0.6555478662053057,0.2098731257208766], + [0.996078431372549,0.6502575932333718,0.20519800076893505], + [0.996078431372549,0.6449673202614379,0.20052287581699346], + [0.996078431372549,0.639677047289504,0.1958477508650519], + [0.996078431372549,0.6343867743175702,0.19117262591311035], + [0.996078431372549,0.6290965013456363,0.18649750096116885], + [0.996078431372549,0.6238062283737025,0.18182237600922724], + [0.996078431372549,0.6185159554017685,0.17714725105728568], + [0.996078431372549,0.6132256824298347,0.17247212610534413], + [0.996078431372549,0.6079354094579008,0.16779700115340257], + [0.996078431372549,0.602645136485967,0.16312187620146099], + [0.9949711649365629,0.5974778931180315,0.15949250288350636], + [0.9927566320645905,0.5924336793540945,0.15690888119953866], + [0.9905420991926183,0.5873894655901576,0.15432525951557094], + [0.9883275663206459,0.5823452518262207,0.15174163783160324], + [0.9861130334486736,0.5773010380622838,0.1491580161476356], + [0.9838985005767013,0.5722568242983468,0.14657439446366782], + [0.981683967704729,0.5672126105344099,0.14399077277970013], + [0.9794694348327566,0.5621683967704729,0.14140715109573243], + [0.9772549019607844,0.5571241830065359,0.1388235294117647], + [0.975040369088812,0.552079969242599,0.136239907727797], + [0.9728258362168397,0.547035755478662,0.13365628604382931], + [0.9706113033448673,0.5419915417147251,0.1310726643598616], + [0.9683967704728951,0.5369473279507881,0.1284890426758939], + [0.9661822376009227,0.5319031141868512,0.1259054209919262], + [0.9639677047289504,0.5268589004229143,0.12332179930795847], + [0.9617531718569781,0.5218146866589773,0.12073817762399078], + [0.9595386389850058,0.5167704728950403,0.11815455594002307], + [0.9573241061130334,0.5117262591311034,0.11557093425605536], + [0.9551095732410612,0.5066820453671664,0.11298731257208766], + [0.9528950403690888,0.5016378316032295,0.11040369088811995], + [0.9506805074971166,0.4965936178392927,0.10782006920415232], + [0.9484659746251443,0.49154940407535563,0.10523644752018455], + [0.9462514417531719,0.4865051903114187,0.10265282583621685], + [0.9440369088811996,0.4814609765474817,0.10006920415224912], + [0.9418223760092272,0.4764167627835448,0.09748558246828143], + [0.939607843137255,0.4713725490196078,0.09490196078431372], + [0.9373933102652826,0.46632833525567086,0.09231833910034602], + [0.9351787773933103,0.4612841214917339,0.08973471741637831], + [0.932964244521338,0.456239907727797,0.0871510957324106], + [0.9307497116493657,0.45119569396386006,0.0845674740484429], + [0.9285351787773933,0.4461514801999231,0.0819838523644752], + [0.9263206459054211,0.44110726643598613,0.07940023068050749], + [0.9230296039984621,0.4364475201845444,0.07704728950403691], + [0.9190926566705114,0.4320184544405998,0.0748327566320646], + [0.9151557093425606,0.42758938869665514,0.07261822376009228], + [0.9112187620146098,0.4231603229527105,0.07040369088811996], + [0.9072818146866591,0.418731257208766,0.0681891580161477], + [0.9033448673587082,0.4143021914648212,0.06597462514417532], + [0.8994079200307574,0.4098731257208766,0.063760092272203], + [0.8954709727028066,0.40544405997693195,0.06154555940023068], + [0.8915340253748558,0.4010149942329873,0.05933102652825836], + [0.8875970780469051,0.39658592848904267,0.057116493656286044], + [0.8836601307189543,0.39215686274509803,0.054901960784313725], + [0.8797231833910035,0.3877277970011534,0.052687427912341406], + [0.8757862360630527,0.38329873125720876,0.05047289504036909], + [0.8718492887351019,0.3788696655132641,0.04825836216839677], + [0.8679123414071511,0.3744405997693195,0.046043829296424456], + [0.8639753940792003,0.37001153402537484,0.04382929642445214], + [0.8600384467512495,0.3655824682814302,0.04161476355247981], + [0.8561014994232987,0.36115340253748557,0.03940023068050749], + [0.852164552095348,0.35672433679354093,0.03718569780853517], + [0.8482276047673972,0.3522952710495963,0.03497116493656286], + [0.8442906574394465,0.3478662053056518,0.032756632064590605], + [0.8403537101114956,0.343437139561707,0.030542099192618223], + [0.8364167627835448,0.3390080738177624,0.028327566320645904], + [0.832479815455594,0.33457900807381774,0.026113033448673585], + [0.8285428681276432,0.3301499423298731,0.023898500576701266], + [0.8246059207996925,0.32572087658592846,0.021683967704728947], + [0.8206689734717417,0.3212918108419838,0.01946943483275663], + [0.8167320261437909,0.3168627450980392,0.01725490196078431], + [0.8127950788158401,0.3124336793540946,0.015040369088811997], + [0.8088581314878893,0.30800461361014997,0.012825836216839678], + [0.8049211841599385,0.30357554786620533,0.01061130334486736], + [0.8009842368319877,0.2991464821222607,0.00839677047289504], + [0.7952941176470588,0.2958246828143022,0.008027681660899655], + [0.7890196078431373,0.2928719723183391,0.008273740868896578], + [0.7827450980392158,0.289919261822376,0.008519800076893503], + [0.7764705882352941,0.2869665513264129,0.008765859284890426], + [0.7701960784313727,0.2840138408304499,0.009011918492887344], + [0.763921568627451,0.2810611303344867,0.009257977700884275], + [0.7576470588235295,0.27810841983852364,0.0095040369088812], + [0.7513725490196079,0.27515570934256056,0.009750096116878123], + [0.7450980392156863,0.27220299884659743,0.009996155324875048], + [0.7388235294117648,0.26925028835063436,0.010242214532871972], + [0.7325490196078431,0.2662975778546713,0.010488273740868897], + [0.7262745098039216,0.2633448673587082,0.010734332948865822], + [0.72,0.2603921568627451,0.010980392156862745], + [0.7137254901960784,0.257439446366782,0.011226451364859669], + [0.7074509803921569,0.25448673587081894,0.011472510572856594], + [0.7011764705882353,0.2515340253748558,0.011718569780853519], + [0.6949019607843138,0.24858131487889273,0.011964628988850442], + [0.6886274509803921,0.24562860438292963,0.012210688196847366], + [0.6823529411764706,0.24267589388696653,0.01245674740484429], + [0.676078431372549,0.23972318339100346,0.012702806612841216], + [0.6698039215686276,0.23677047289504044,0.012948865820838132], + [0.6635294117647059,0.23381776239907726,0.013194925028835063], + [0.6572549019607843,0.23086505190311418,0.013440984236831988], + [0.6509803921568628,0.2279123414071511,0.013687043444828913], + [0.6447058823529411,0.22495963091118798,0.013933102652825836], + [0.6384313725490196,0.2220069204152249,0.01417916186082276], + [0.632156862745098,0.21905420991926183,0.014425221068819685], + [0.6258823529411764,0.21610149942329873,0.01467128027681661], + [0.6196078431372549,0.21314878892733563,0.014917339484813533], + [0.6133333333333333,0.21019607843137256,0.015163398692810456], + [0.6070588235294118,0.20724336793540946,0.015409457900807381], + [0.6007843137254902,0.20429065743944635,0.015655517108804307], + [0.5945098039215686,0.20230680507497117,0.01590157631680123], + [0.5882352941176471,0.20046136101499423,0.016147635524798153], + [0.5819607843137254,0.1986159169550173,0.01639369473279508], + [0.5756862745098039,0.19677047289504038,0.016639753940792004], + [0.5694117647058825,0.1949250288350635,0.016885813148788918], + [0.5631372549019608,0.1930795847750865,0.01713187235678585], + [0.5568627450980392,0.19123414071510958,0.017377931564782775], + [0.5505882352941176,0.18938869665513264,0.0176239907727797], + [0.5443137254901961,0.1875432525951557,0.017870049980776622], + [0.5380392156862746,0.18569780853517878,0.018116109188773547], + [0.5317647058823529,0.18385236447520184,0.018362168396770472], + [0.5254901960784314,0.18200692041522493,0.018608227604767394], + [0.5192156862745098,0.18016147635524798,0.01885428681276432], + [0.5129411764705882,0.17831603229527104,0.019100346020761244], + [0.5066666666666667,0.17647058823529413,0.01934640522875817], + [0.5003921568627451,0.1746251441753172,0.01959246443675509], + [0.49411764705882355,0.17277970011534027,0.019838523644752016], + [0.48784313725490197,0.17093425605536333,0.02008458285274894], + [0.4815686274509804,0.1690888119953864,0.020330642060745863], + [0.4752941176470588,0.16724336793540945,0.020576701268742788], + [0.46901960784313745,0.1653979238754326,0.020822760476739706], + [0.4627450980392157,0.1635524798154556,0.021068819684736638], + [0.45647058823529413,0.16170703575547868,0.021314878892733563], + [0.45019607843137255,0.15986159169550174,0.021560938100730485], + [0.443921568627451,0.1580161476355248,0.02180699730872741], + [0.4376470588235294,0.15617070357554788,0.022053056516724335], + [0.43137254901960786,0.15432525951557094,0.022299115724721257], + [0.4250980392156863,0.15247981545559403,0.02254517493271818], + [0.4188235294117647,0.15063437139561708,0.022791234140715107], + [0.4125490196078432,0.14878892733564014,0.023037293348712032], + [0.4062745098039216,0.14694348327566323,0.023283352556708953], + [0.4,0.1450980392156863,0.02352941176470588] ], + YlOrBr_r: [ + [0.4,0.1450980392156863,0.02352941176470588], + [0.4062745098039216,0.14694348327566323,0.023283352556708953], + [0.4125490196078432,0.14878892733564014,0.023037293348712032], + [0.4188235294117647,0.15063437139561708,0.022791234140715107], + [0.4250980392156863,0.15247981545559403,0.02254517493271818], + [0.43137254901960786,0.15432525951557094,0.022299115724721257], + [0.43764705882352944,0.15617070357554788,0.022053056516724335], + [0.44392156862745097,0.1580161476355248,0.02180699730872741], + [0.45019607843137255,0.15986159169550174,0.021560938100730485], + [0.45647058823529413,0.16170703575547868,0.021314878892733563], + [0.4627450980392157,0.1635524798154556,0.021068819684736638], + [0.46901960784313723,0.16539792387543253,0.020822760476739713], + [0.4752941176470588,0.16724336793540948,0.020576701268742788], + [0.4815686274509804,0.1690888119953864,0.020330642060745866], + [0.48784313725490197,0.17093425605536333,0.02008458285274894], + [0.49411764705882355,0.17277970011534027,0.019838523644752016], + [0.5003921568627451,0.1746251441753172,0.019592464436755094], + [0.5066666666666667,0.17647058823529413,0.01934640522875817], + [0.5129411764705882,0.17831603229527104,0.019100346020761244], + [0.5192156862745098,0.18016147635524798,0.01885428681276432], + [0.5254901960784314,0.18200692041522493,0.018608227604767394], + [0.5317647058823529,0.18385236447520184,0.018362168396770472], + [0.5380392156862746,0.18569780853517878,0.018116109188773547], + [0.5443137254901961,0.1875432525951557,0.017870049980776622], + [0.5505882352941176,0.18938869665513264,0.0176239907727797], + [0.5568627450980392,0.19123414071510958,0.017377931564782775], + [0.5631372549019608,0.19307958477508652,0.01713187235678585], + [0.5694117647058823,0.19492502883506344,0.016885813148788925], + [0.5756862745098039,0.19677047289504038,0.016639753940792004], + [0.5819607843137254,0.1986159169550173,0.01639369473279508], + [0.588235294117647,0.20046136101499423,0.016147635524798153], + [0.5945098039215686,0.20230680507497117,0.01590157631680123], + [0.6007843137254901,0.20429065743944635,0.015655517108804307], + [0.6070588235294117,0.20724336793540943,0.015409457900807383], + [0.6133333333333333,0.21019607843137256,0.015163398692810458], + [0.6196078431372549,0.21314878892733563,0.014917339484813533], + [0.6258823529411764,0.21610149942329873,0.01467128027681661], + [0.632156862745098,0.2190542099192618,0.014425221068819686], + [0.6384313725490196,0.2220069204152249,0.01417916186082276], + [0.6447058823529411,0.224959630911188,0.013933102652825836], + [0.6509803921568628,0.22791234140715108,0.013687043444828913], + [0.6572549019607843,0.23086505190311415,0.01344098423683199], + [0.6635294117647059,0.23381776239907728,0.013194925028835063], + [0.6698039215686274,0.23677047289504036,0.01294886582083814], + [0.676078431372549,0.23972318339100346,0.012702806612841216], + [0.6823529411764706,0.24267589388696653,0.012456747404844292], + [0.6886274509803921,0.24562860438292963,0.012210688196847366], + [0.6949019607843138,0.24858131487889273,0.011964628988850442], + [0.7011764705882353,0.2515340253748558,0.011718569780853519], + [0.7074509803921568,0.2544867358708189,0.011472510572856595], + [0.7137254901960784,0.257439446366782,0.011226451364859669], + [0.72,0.2603921568627451,0.010980392156862745], + [0.7262745098039216,0.2633448673587082,0.010734332948865822], + [0.7325490196078431,0.26629757785467123,0.010488273740868899], + [0.7388235294117647,0.26925028835063436,0.010242214532871972], + [0.7450980392156863,0.2722029988465975,0.009996155324875048], + [0.7513725490196079,0.27515570934256056,0.009750096116878125], + [0.7576470588235293,0.27810841983852364,0.009504036908881202], + [0.763921568627451,0.28106113033448676,0.009257977700884275], + [0.7701960784313726,0.28401384083044984,0.009011918492887351], + [0.7764705882352941,0.2869665513264129,0.008765859284890428], + [0.7827450980392157,0.289919261822376,0.008519800076893505], + [0.7890196078431373,0.2928719723183391,0.008273740868896578], + [0.7952941176470589,0.2958246828143022,0.008027681660899655], + [0.8009842368319877,0.29914648212226064,0.00839677047289504], + [0.8049211841599385,0.3035755478662053,0.01061130334486736], + [0.8088581314878892,0.30800461361014986,0.012825836216839645], + [0.8127950788158401,0.31243367935409455,0.015040369088811994], + [0.8167320261437909,0.3168627450980392,0.017254901960784313], + [0.8206689734717417,0.3212918108419838,0.019469434832756632], + [0.8246059207996925,0.32572087658592846,0.02168396770472895], + [0.8285428681276432,0.3301499423298731,0.02389850057670127], + [0.832479815455594,0.33457900807381774,0.02611303344867359], + [0.8364167627835448,0.3390080738177624,0.028327566320645908], + [0.8403537101114955,0.34343713956170696,0.030542099192618195], + [0.8442906574394464,0.34786620530565165,0.03275663206459054], + [0.8482276047673972,0.3522952710495963,0.03497116493656286], + [0.852164552095348,0.35672433679354093,0.03718569780853518], + [0.8561014994232988,0.36115340253748557,0.0394002306805075], + [0.8600384467512495,0.3655824682814302,0.04161476355247982], + [0.8639753940792003,0.37001153402537484,0.04382929642445213], + [0.8679123414071511,0.3744405997693195,0.04604382929642445], + [0.8718492887351019,0.37886966551326406,0.04825836216839673], + [0.8757862360630527,0.38329873125720876,0.05047289504036909], + [0.8797231833910035,0.3877277970011534,0.052687427912341406], + [0.8836601307189543,0.39215686274509803,0.054901960784313725], + [0.8875970780469051,0.39658592848904267,0.057116493656286044], + [0.8915340253748558,0.4010149942329873,0.059331026528258356], + [0.8954709727028066,0.40544405997693195,0.061545559400230675], + [0.8994079200307574,0.4098731257208766,0.063760092272203], + [0.9033448673587081,0.41430219146482117,0.06597462514417529], + [0.907281814686659,0.41873125720876586,0.06818915801614764], + [0.9112187620146098,0.42316032295271044,0.07040369088811994], + [0.9151557093425606,0.4275893886966551,0.07261822376009226], + [0.9190926566705113,0.4320184544405997,0.07483275663206458], + [0.9230296039984621,0.43644752018454436,0.0770472895040369], + [0.9263206459054211,0.44110726643598613,0.0794002306805075], + [0.9285351787773933,0.4461514801999231,0.0819838523644752], + [0.9307497116493656,0.45119569396386,0.08456747404844286], + [0.932964244521338,0.456239907727797,0.08715109573241062], + [0.9351787773933103,0.4612841214917339,0.08973471741637831], + [0.9373933102652826,0.4663283352556709,0.09231833910034602], + [0.939607843137255,0.47137254901960784,0.09490196078431373], + [0.9418223760092272,0.4764167627835448,0.09748558246828143], + [0.9440369088811996,0.4814609765474817,0.10006920415224914], + [0.9462514417531719,0.4865051903114187,0.10265282583621685], + [0.9484659746251441,0.4915494040753555,0.10523644752018452], + [0.9506805074971165,0.49659361783929257,0.10782006920415226], + [0.9528950403690889,0.5016378316032295,0.11040369088811997], + [0.9551095732410612,0.5066820453671664,0.11298731257208766], + [0.9573241061130335,0.5117262591311034,0.11557093425605537], + [0.9595386389850058,0.5167704728950404,0.11815455594002308], + [0.9617531718569781,0.5218146866589772,0.12073817762399078], + [0.9639677047289504,0.5268589004229143,0.12332179930795847], + [0.9661822376009227,0.5319031141868511,0.12590542099192614], + [0.9683967704728951,0.5369473279507881,0.1284890426758939], + [0.9706113033448673,0.5419915417147251,0.1310726643598616], + [0.9728258362168397,0.547035755478662,0.1336562860438293], + [0.975040369088812,0.552079969242599,0.136239907727797], + [0.9772549019607844,0.5571241830065359,0.1388235294117647], + [0.9794694348327566,0.5621683967704729,0.14140715109573243], + [0.981683967704729,0.5672126105344099,0.14399077277970013], + [0.9838985005767013,0.5722568242983467,0.1465743944636678], + [0.9861130334486736,0.5773010380622837,0.14915801614763552], + [0.9883275663206459,0.5823452518262207,0.15174163783160322], + [0.9905420991926183,0.5873894655901576,0.15432525951557094], + [0.9927566320645905,0.5924336793540945,0.15690888119953866], + [0.9949711649365629,0.5974778931180315,0.15949250288350636], + [0.996078431372549,0.602645136485967,0.16312187620146099], + [0.996078431372549,0.6079354094579008,0.16779700115340254], + [0.996078431372549,0.6132256824298347,0.1724721261053441], + [0.996078431372549,0.6185159554017685,0.17714725105728568], + [0.996078431372549,0.6238062283737023,0.1818223760092271], + [0.996078431372549,0.6290965013456363,0.1864975009611688], + [0.996078431372549,0.6343867743175702,0.19117262591311035], + [0.996078431372549,0.639677047289504,0.1958477508650519], + [0.996078431372549,0.6449673202614379,0.20052287581699346], + [0.996078431372549,0.6502575932333717,0.20519800076893502], + [0.996078431372549,0.6555478662053057,0.2098731257208766], + [0.996078431372549,0.6608381391772395,0.21454825067281816], + [0.996078431372549,0.6661284121491734,0.21922337562475971], + [0.996078431372549,0.6714186851211073,0.2238985005767013], + [0.996078431372549,0.6767089580930411,0.22857362552864285], + [0.996078431372549,0.6819992310649751,0.2332487504805844], + [0.996078431372549,0.6872895040369089,0.23792387543252597], + [0.996078431372549,0.6925797770088428,0.24259900038446752], + [0.996078431372549,0.6978700499807766,0.24727412533640908], + [0.996078431372549,0.7031603229527106,0.25194925028835063], + [0.996078431372549,0.7084505959246442,0.2566243752402921], + [0.996078431372549,0.7137408688965783,0.2612995001922338], + [0.996078431372549,0.7190311418685121,0.26597462514417536], + [0.996078431372549,0.724321414840446,0.2706497500961169], + [0.996078431372549,0.72961168781238,0.27532487504805847], + [0.996078431372549,0.7349019607843138,0.28], + [0.996078431372549,0.7401922337562477,0.2846751249519416], + [0.996078431372549,0.7454825067281815,0.28935024990388314], + [0.996078431372549,0.7507727797001154,0.2940253748558247], + [0.996078431372549,0.7560630526720493,0.29870049980776625], + [0.996078431372549,0.7613533256439832,0.3033756247597078], + [0.996078431372549,0.766643598615917,0.30805074971164936], + [0.996078431372549,0.7710111495578624,0.314878892733564], + [0.996078431372549,0.7748250672818148,0.32299884659746253], + [0.996078431372549,0.778638985005767,0.331118800461361], + [0.996078431372549,0.7824529027297193,0.3392387543252595], + [0.996078431372549,0.7862668204536716,0.3473587081891578], + [0.996078431372549,0.790080738177624,0.3554786620530565], + [0.996078431372549,0.7938946559015764,0.363598615916955], + [0.996078431372549,0.7977085736255287,0.3717185697808535], + [0.996078431372549,0.801522491349481,0.379838523644752], + [0.996078431372549,0.8053364090734333,0.38795847750865053], + [0.996078431372549,0.8091503267973856,0.396078431372549], + [0.996078431372549,0.812964244521338,0.4041983852364475], + [0.996078431372549,0.8167781622452903,0.412318339100346], + [0.996078431372549,0.8205920799692425,0.4204382929642445], + [0.996078431372549,0.8244059976931949,0.42855824682814303], + [0.996078431372549,0.8282199154171472,0.43667820069204155], + [0.996078431372549,0.8320338331410996,0.44479815455594], + [0.996078431372549,0.8358477508650519,0.4529181084198385], + [0.996078431372549,0.8396616685890043,0.461038062283737], + [0.996078431372549,0.8434755863129566,0.4691580161476355], + [0.996078431372549,0.8472895040369087,0.4772779700115338], + [0.996078431372549,0.8511034217608612,0.4853979238754325], + [0.996078431372549,0.8549173394848135,0.49351787773933103], + [0.996078431372549,0.8587312572087659,0.5016378316032295], + [0.996078431372549,0.8625451749327182,0.509757785467128], + [0.996078431372549,0.8663590926566704,0.5178777393310265], + [0.996078431372549,0.8701730103806228,0.5259976931949251], + [0.996078431372549,0.8739869281045751,0.5341176470588236], + [0.996078431372549,0.8778008458285275,0.542237600922722], + [0.996078431372549,0.8816147635524798,0.5503575547866205], + [0.996078431372549,0.885428681276432,0.558477508650519], + [0.996078431372549,0.8892425990003844,0.5665974625144174], + [0.9961707035755479,0.8920415224913494,0.5725951557093425], + [0.9962937331795464,0.8945021145713187,0.5778854286812765], + [0.9964167627835449,0.896962706651288,0.5831757016532103], + [0.9965397923875433,0.8994232987312571,0.5884659746251442], + [0.9966628219915418,0.9018838908112263,0.5937562475970779], + [0.9967858515955402,0.9043444828911956,0.5990465205690119], + [0.9969088811995387,0.9068050749711649,0.6043367935409458], + [0.9970319108035371,0.9092656670511341,0.6096270665128797], + [0.9971549404075356,0.9117262591311034,0.6149173394848135], + [0.9972779700115341,0.9141868512110727,0.6202076124567474], + [0.9974009996155325,0.9166474432910419,0.6254978854286812], + [0.997524029219531,0.9191080353710112,0.6307881584006152], + [0.9976470588235294,0.9215686274509803,0.636078431372549], + [0.9977700884275279,0.9240292195309496,0.6413687043444829], + [0.9978931180315264,0.9264898116109188,0.6466589773164167], + [0.9980161476355248,0.9289504036908881,0.6519492502883506], + [0.9981391772395233,0.9314109957708574,0.6572395232602846], + [0.9982622068435217,0.9338715878508266,0.6625297962322184], + [0.9983852364475202,0.9363321799307959,0.6678200692041523], + [0.9985082660515187,0.938792772010765,0.6731103421760861], + [0.9986312956555171,0.9412533640907342,0.6784006151480199], + [0.9987543252595156,0.9437139561707035,0.6836908881199539], + [0.998877354863514,0.9461745482506728,0.6889811610918878], + [0.9990003844675125,0.948635140330642,0.6942714340638216], + [0.999123414071511,0.9510957324106113,0.6995617070357555], + [0.9992464436755094,0.9535563244905805,0.7048519800076893], + [0.9993694732795079,0.9560169165705498,0.7101422529796233], + [0.9994925028835063,0.9584775086505191,0.7154325259515572], + [0.9996155324875048,0.9609381007304882,0.720722798923491], + [0.9997385620915032,0.9633986928104575,0.7260130718954249], + [0.9998615916955017,0.9658592848904267,0.7313033448673587], + [0.9999846212995002,0.968319876970396,0.7365936178392927], + [1.0,0.9694886582083814,0.7416685890042292], + [1.0,0.970472895040369,0.7467128027681661], + [1.0,0.9714571318723568,0.751757016532103], + [1.0,0.9724413687043445,0.7568012302960401], + [1.0,0.9734256055363322,0.7618454440599768], + [1.0,0.9744098423683198,0.7668896578239139], + [1.0,0.9753940792003076,0.7719338715878509], + [1.0,0.9763783160322953,0.7769780853517878], + [1.0,0.977362552864283,0.7820222991157247], + [1.0,0.9783467896962706,0.7870665128796617], + [1.0,0.9793310265282583,0.7921107266435986], + [1.0,0.9803152633602461,0.7971549404075357], + [1.0,0.9812995001922338,0.8021991541714726], + [1.0,0.9822837370242214,0.8072433679354095], + [1.0,0.9832679738562091,0.8122875816993465], + [1.0,0.9842522106881968,0.8173317954632834], + [1.0,0.9852364475201846,0.8223760092272203], + [1.0,0.9862206843521722,0.8274202229911573], + [1.0,0.9872049211841599,0.8324644367550942], + [1.0,0.9881891580161476,0.8375086505190312], + [1.0,0.9891733948481353,0.8425528642829679], + [1.0,0.990157631680123,0.8475970780469051], + [1.0,0.9911418685121107,0.852641291810842], + [1.0,0.9921261053440984,0.857685505574779], + [1.0,0.9931103421760861,0.8627297193387159], + [1.0,0.9940945790080739,0.8677739331026528], + [1.0,0.9950788158400615,0.8728181468665899], + [1.0,0.9960630526720492,0.8778623606305267], + [1.0,0.9970472895040369,0.8829065743944637], + [1.0,0.9980315263360247,0.8879507881584007], + [1.0,0.9990157631680123,0.8929950019223376], + [1.0,1.0,0.8980392156862745] ], + YlOrRd: [ + [1.0,1.0,0.8], + [1.0,0.9977854671280277,0.7945866974240677], + [1.0,0.9955709342560554,0.7891733948481354], + [1.0,0.9933564013840831,0.783760092272203], + [1.0,0.9911418685121107,0.7783467896962707], + [1.0,0.9889273356401385,0.7729334871203384], + [1.0,0.9867128027681661,0.7675201845444061], + [1.0,0.9844982698961938,0.7621068819684736], + [1.0,0.9822837370242214,0.7566935793925413], + [1.0,0.9800692041522492,0.751280276816609], + [1.0,0.9778546712802768,0.7458669742406767], + [1.0,0.9756401384083045,0.7404536716647444], + [1.0,0.9734256055363322,0.735040369088812], + [1.0,0.9712110726643599,0.7296270665128797], + [1.0,0.9689965397923875,0.7242137639369474], + [1.0,0.9667820069204153,0.718800461361015], + [1.0,0.9645674740484429,0.7133871587850826], + [1.0,0.9623529411764706,0.7079738562091503], + [1.0,0.9601384083044983,0.702560553633218], + [1.0,0.957923875432526,0.6971472510572857], + [1.0,0.9557093425605536,0.6917339484813534], + [1.0,0.9534948096885814,0.686320645905421], + [1.0,0.951280276816609,0.6809073433294887], + [1.0,0.9490657439446367,0.6754940407535563], + [1.0,0.9468512110726643,0.670080738177624], + [1.0,0.9446366782006921,0.6646674356016917], + [1.0,0.9424221453287197,0.6592541330257593], + [1.0,0.9402076124567474,0.653840830449827], + [1.0,0.9379930795847751,0.6484275278738947], + [1.0,0.9357785467128028,0.6430142252979623], + [1.0,0.9335640138408304,0.63760092272203], + [1.0,0.9313494809688582,0.6321876201460976], + [0.9999846212995002,0.9291041906958862,0.6268050749711649], + [0.9998615916955017,0.926643598615917,0.6216378316032296], + [0.9997385620915032,0.9241830065359478,0.6164705882352941], + [0.9996155324875048,0.9217224144559785,0.6113033448673587], + [0.9994925028835063,0.9192618223760093,0.6061361014994233], + [0.9993694732795079,0.91680123029604,0.6009688581314879], + [0.9992464436755094,0.9143406382160708,0.5958016147635525], + [0.999123414071511,0.9118800461361015,0.590634371395617], + [0.9990003844675125,0.9094194540561322,0.5854671280276816], + [0.998877354863514,0.906958861976163,0.5802998846597462], + [0.9987543252595156,0.9044982698961938,0.5751326412918109], + [0.9986312956555171,0.9020376778162246,0.5699653979238755], + [0.9985082660515187,0.8995770857362553,0.5647981545559401], + [0.9983852364475202,0.8971164936562861,0.5596309111880047], + [0.9982622068435217,0.8946559015763168,0.5544636678200692], + [0.9981391772395233,0.8921953094963475,0.5492964244521338], + [0.9980161476355248,0.8897347174163783,0.5441291810841984], + [0.9978931180315264,0.8872741253364091,0.538961937716263], + [0.9977700884275279,0.8848135332564399,0.5337946943483276], + [0.9976470588235294,0.8823529411764706,0.5286274509803922], + [0.997524029219531,0.8798923490965014,0.5234602076124568], + [0.9974009996155325,0.8774317570165321,0.5182929642445214], + [0.9972779700115341,0.8749711649365628,0.5131257208765859], + [0.9971549404075356,0.8725105728565936,0.5079584775086505], + [0.9970319108035371,0.8700499807766243,0.5027912341407151], + [0.9969088811995387,0.8675893886966551,0.49762399077277975], + [0.9967858515955402,0.8651287966166858,0.4924567474048443], + [0.9966628219915418,0.8626682045367167,0.4872895040369089], + [0.9965397923875433,0.8602076124567474,0.48212226066897346], + [0.9964167627835449,0.8577470203767782,0.4769550173010381], + [0.9962937331795464,0.8552864282968089,0.47178777393310267], + [0.9961707035755479,0.8528258362168397,0.4666205305651673], + [0.996078431372549,0.8497808535178777,0.46145328719723183], + [0.996078431372549,0.8449826989619377,0.45628604382929644], + [0.996078431372549,0.8401845444059978,0.4511188004613611], + [0.996078431372549,0.8353863898500576,0.4459515570934256], + [0.996078431372549,0.8305882352941176,0.4407843137254902], + [0.996078431372549,0.8257900807381776,0.4356170703575548], + [0.996078431372549,0.8209919261822376,0.4304498269896194], + [0.996078431372549,0.8161937716262976,0.425282583621684], + [0.996078431372549,0.8113956170703576,0.4201153402537486], + [0.996078431372549,0.8065974625144174,0.41494809688581313], + [0.996078431372549,0.8017993079584775,0.40978085351787785], + [0.996078431372549,0.7970011534025374,0.40461361014994235], + [0.996078431372549,0.7922029988465974,0.39944636678200696], + [0.996078431372549,0.7874048442906574,0.3942791234140715], + [0.996078431372549,0.7826066897347174,0.3891118800461361], + [0.996078431372549,0.7778085351787773,0.38394463667820067], + [0.996078431372549,0.7730103806228373,0.3787773933102653], + [0.996078431372549,0.7682122260668973,0.3736101499423299], + [0.996078431372549,0.7634140715109574,0.36844290657439455], + [0.996078431372549,0.7586159169550173,0.3632756632064591], + [0.996078431372549,0.7538177623990773,0.35810841983852365], + [0.996078431372549,0.7490196078431373,0.35294117647058826], + [0.996078431372549,0.7442214532871972,0.3477739331026528], + [0.996078431372549,0.7394232987312572,0.3426066897347174], + [0.996078431372549,0.7346251441753171,0.337439446366782], + [0.996078431372549,0.7298269896193771,0.33227220299884663], + [0.996078431372549,0.7250288350634372,0.32710495963091124], + [0.996078431372549,0.7202306805074971,0.3219377162629758], + [0.996078431372549,0.715432525951557,0.31677047289504034], + [0.996078431372549,0.710634371395617,0.31160322952710495], + [0.996078431372549,0.705836216839677,0.30643598615916956], + [0.996078431372549,0.701038062283737,0.30126874279123417], + [0.9960322952710496,0.6963321799307958,0.29730103806228375], + [0.9959092656670512,0.6917800845828527,0.29533256439830835], + [0.9957862360630527,0.6872279892349097,0.29336409073433295], + [0.9956632064590543,0.6826758938869665,0.29139561707035755], + [0.9955401768550558,0.6781237985390234,0.28942714340638215], + [0.9954171472510573,0.6735717031910803,0.28745866974240675], + [0.9952941176470589,0.6690196078431372,0.28549019607843135], + [0.9951710880430604,0.6644675124951941,0.28352172241445595], + [0.995048058439062,0.659915417147251,0.2815532487504806], + [0.9949250288350635,0.6553633217993079,0.2795847750865052], + [0.994801999231065,0.6508112264513649,0.2776163014225298], + [0.9946789696270665,0.6462591311034217,0.2756478277585544], + [0.994555940023068,0.6417070357554786,0.273679354094579], + [0.9944329104190696,0.6371549404075355,0.2717108804306036], + [0.9943098808150711,0.6326028450595924,0.2697424067666282], + [0.9941868512110726,0.6280507497116493,0.26777393310265285], + [0.9940638216070742,0.6234986543637062,0.26580545943867745], + [0.9939407920030757,0.6189465590157632,0.26383698577470205], + [0.9938177623990773,0.6143944636678201,0.26186851211072665], + [0.9936947327950788,0.609842368319877,0.25990003844675125], + [0.9935717031910803,0.6052902729719338,0.25793156478277585], + [0.9934486735870819,0.6007381776239908,0.25596309111880045], + [0.9933256439830834,0.5961860822760476,0.25399461745482504], + [0.993202614379085,0.5916339869281046,0.25202614379084964], + [0.9930795847750865,0.5870818915801614,0.2500576701268743], + [0.992956555171088,0.5825297962322185,0.2480891964628989], + [0.9928335255670896,0.5779777008842754,0.24612072279892352], + [0.9927104959630911,0.5734256055363323,0.2441522491349481], + [0.9925874663590927,0.568873510188389,0.2421837754709727], + [0.9924644367550942,0.5643214148404461,0.2402153018069973], + [0.9923414071510958,0.5597693194925029,0.23824682814302192], + [0.9922183775470973,0.5552172241445599,0.23627835447904652], + [0.9920953479430988,0.5490657439446367,0.23418685121107266], + [0.9919723183391004,0.5413148788927336,0.23197231833910034], + [0.9918492887351019,0.5335640138408305,0.22975778546712802], + [0.9917262591311035,0.5258131487889274,0.2275432525951557], + [0.991603229527105,0.5180622837370245,0.22532871972318344], + [0.9914801999231065,0.5103114186851212,0.22311418685121107], + [0.9913571703191081,0.502560553633218,0.22089965397923875], + [0.9912341407151096,0.4948096885813149,0.21868512110726643], + [0.9911111111111112,0.48705882352941177,0.2164705882352941], + [0.9909880815071127,0.4793079584775087,0.2142560553633218], + [0.9908650519031142,0.4715570934256056,0.21204152249134947], + [0.9907420222991158,0.46380622837370244,0.20982698961937715], + [0.9906189926951173,0.45605536332179936,0.20761245674740483], + [0.9904959630911189,0.4483044982698962,0.20539792387543251], + [0.9903729334871204,0.4405536332179931,0.2031833910034602], + [0.990249903883122,0.43280276816609,0.2009688581314879], + [0.9901268742791235,0.42505190311418684,0.19875432525951556], + [0.990003844675125,0.41730103806228375,0.19653979238754324], + [0.9898808150711266,0.40955017301038066,0.19432525951557092], + [0.9897577854671281,0.4017993079584775,0.1921107266435986], + [0.9896347558631297,0.3940484429065746,0.18989619377162636], + [0.9895117262591311,0.38629757785467134,0.187681660899654], + [0.9893886966551326,0.3785467128027682,0.18546712802768167], + [0.9892656670511342,0.37079584775086505,0.18325259515570935], + [0.9891426374471357,0.36304498269896196,0.18103806228373703], + [0.9890196078431372,0.35529411764705887,0.17882352941176471], + [0.9888965782391388,0.3475432525951557,0.1766089965397924], + [0.9887735486351403,0.3397923875432526,0.17439446366782008], + [0.9886505190311419,0.3320415224913495,0.17217993079584776], + [0.9885274894271434,0.3242906574394464,0.16996539792387544], + [0.988404459823145,0.31653979238754326,0.16775086505190312], + [0.9882814302191465,0.3087889273356401,0.1655363321799308], + [0.9863129565551711,0.30188389081122646,0.16362937331795463], + [0.9832372164552096,0.2954863514033064,0.16190695886197615], + [0.980161476355248,0.2890888119953864,0.1601845444059977], + [0.9770857362552865,0.2826912725874664,0.1584621299500192], + [0.974009996155325,0.27629373317954653,0.1567397154940408], + [0.9709342560553633,0.2698961937716263,0.15501730103806227], + [0.9678585159554018,0.2634986543637063,0.15329488658208382], + [0.9647827758554403,0.25710111495578625,0.15157247212610533], + [0.9617070357554787,0.2507035755478662,0.14985005767012688], + [0.9586312956555171,0.2443060361399462,0.1481276432141484], + [0.9555555555555556,0.23790849673202616,0.14640522875816994], + [0.952479815455594,0.23151095732410615,0.14468281430219146], + [0.9494040753556324,0.2251134179161861,0.142960399846213], + [0.946328335255671,0.21871587850826607,0.14123798539023452], + [0.9432525951557094,0.21231833910034603,0.13951557093425604], + [0.9401768550557478,0.205920799692426,0.13779315647827758], + [0.9371011149557862,0.19952326028450595,0.1360707420222991], + [0.9340253748558247,0.19312572087658592,0.13434832756632065], + [0.9309496347558631,0.1867281814686659,0.13262591311034216], + [0.9278738946559015,0.18033064206074587,0.1309034986543637], + [0.92479815455594,0.17393310265282602,0.12918108419838528], + [0.9217224144559785,0.16753556324490582,0.12745866974240677], + [0.9186466743560169,0.16113802383698578,0.1257362552864283], + [0.9155709342560553,0.15474048442906574,0.12401384083044982], + [0.9124951941560938,0.1483429450211457,0.12229142637447135], + [0.9094194540561322,0.1419454056132257,0.12056901191849288], + [0.9063437139561706,0.13554786620530565,0.11884659746251441], + [0.903267973856209,0.1291503267973856,0.11712418300653595], + [0.9001922337562476,0.12275278738946557,0.11540176855055748], + [0.897116493656286,0.11635524798154556,0.11367935409457901], + [0.8940407535563244,0.10995770857362552,0.11195693963860054], + [0.8909650134563629,0.10356016916570548,0.11023452518262206], + [0.8866897347174163,0.09956170703575548,0.11072664359861592], + [0.8820146097654747,0.09636293733179546,0.11195693963860054], + [0.8773394848135332,0.09316416762783544,0.11318723567858516], + [0.8726643598615916,0.08996539792387544,0.11441753171856978], + [0.8679892349096502,0.0867666282199155,0.11564782775855437], + [0.8633141099577085,0.0835678585159554,0.11687812379853903], + [0.858638985005767,0.08036908881199539,0.11810841983852365], + [0.8539638600538254,0.07717031910803537,0.11933871587850826], + [0.8492887351018839,0.07397154940407535,0.12056901191849288], + [0.8446136101499423,0.07077277970011533,0.12179930795847752], + [0.8399384851980007,0.06757400999615532,0.12302960399846213], + [0.8352633602460592,0.0643752402921953,0.12425990003844675], + [0.8305882352941176,0.06117647058823529,0.12549019607843137], + [0.8259131103421761,0.05797770088427528,0.126720492118416], + [0.8212379853902345,0.05477893118031526,0.1279507881584006], + [0.816562860438293,0.051580161476355246,0.12918108419838523], + [0.8118877354863514,0.04838139177239523,0.13041138023836985], + [0.8072126105344098,0.045182622068435215,0.1316416762783545], + [0.8025374855824683,0.0419838523644752,0.1328719723183391], + [0.7978623606305267,0.03878508266051518,0.13410226835832373], + [0.7931872356785853,0.03558631295655526,0.13533256439830832], + [0.7885121107266436,0.03238754325259516,0.13656286043829297], + [0.7838369857747021,0.02918877354863514,0.13779315647827758], + [0.7791618608227605,0.02599000384467512,0.1390234525182622], + [0.774486735870819,0.022791234140715114,0.14025374855824682], + [0.7698116109188774,0.019592464436755094,0.14148404459823144], + [0.7651364859669358,0.016393694732795075,0.1427143406382161], + [0.7604613610149943,0.013194925028835056,0.14394463667820068], + [0.7557862360630527,0.00999615532487505,0.14517493271818532], + [0.7511111111111112,0.006797385620915031,0.14640522875816994], + [0.7464359861591696,0.0035986159169550114,0.14763552479815456], + [0.741760861207228,0.0003998462129950059,0.14886582083813918], + [0.7346097654748174,0.0,0.14901960784313725], + [0.7271049596309113,0.0,0.14901960784313725], + [0.719600153787005,0.0,0.14901960784313725], + [0.7120953479430988,0.0,0.14901960784313725], + [0.7045905420991929,0.0,0.14901960784313725], + [0.6970857362552865,0.0,0.14901960784313725], + [0.6895809304113802,0.0,0.14901960784313725], + [0.682076124567474,0.0,0.14901960784313725], + [0.6745713187235679,0.0,0.14901960784313725], + [0.6670665128796617,0.0,0.14901960784313725], + [0.6595617070357555,0.0,0.14901960784313725], + [0.6520569011918493,0.0,0.14901960784313725], + [0.6445520953479431,0.0,0.14901960784313725], + [0.6370472895040369,0.0,0.14901960784313725], + [0.6295424836601308,0.0,0.14901960784313725], + [0.6220376778162245,0.0,0.14901960784313725], + [0.6145328719723183,0.0,0.14901960784313725], + [0.6070280661284122,0.0,0.14901960784313725], + [0.599523260284506,0.0,0.14901960784313725], + [0.5920184544405998,0.0,0.14901960784313725], + [0.5845136485966937,0.0,0.14901960784313725], + [0.5770088427527874,0.0,0.14901960784313725], + [0.5695040369088812,0.0,0.14901960784313725], + [0.5619992310649751,0.0,0.14901960784313725], + [0.5544944252210688,0.0,0.14901960784313725], + [0.5469896193771626,0.0,0.14901960784313725], + [0.5394848135332564,0.0,0.14901960784313725], + [0.5319800076893503,0.0,0.14901960784313725], + [0.524475201845444,0.0,0.14901960784313725], + [0.5169703960015378,0.0,0.14901960784313725], + [0.5094655901576317,0.0,0.14901960784313725], + [0.5019607843137255,0.0,0.14901960784313725] ], + YlOrRd_r: [ + [0.5019607843137255,0.0,0.14901960784313725], + [0.5094655901576317,0.0,0.14901960784313725], + [0.5169703960015378,0.0,0.14901960784313725], + [0.524475201845444,0.0,0.14901960784313725], + [0.5319800076893503,0.0,0.14901960784313725], + [0.5394848135332564,0.0,0.14901960784313725], + [0.5469896193771626,0.0,0.14901960784313725], + [0.5544944252210688,0.0,0.14901960784313725], + [0.5619992310649751,0.0,0.14901960784313725], + [0.5695040369088812,0.0,0.14901960784313725], + [0.5770088427527874,0.0,0.14901960784313725], + [0.5845136485966935,0.0,0.14901960784313725], + [0.5920184544405998,0.0,0.14901960784313725], + [0.599523260284506,0.0,0.14901960784313725], + [0.6070280661284122,0.0,0.14901960784313725], + [0.6145328719723183,0.0,0.14901960784313725], + [0.6220376778162245,0.0,0.14901960784313725], + [0.6295424836601308,0.0,0.14901960784313725], + [0.6370472895040369,0.0,0.14901960784313725], + [0.6445520953479431,0.0,0.14901960784313725], + [0.6520569011918493,0.0,0.14901960784313725], + [0.6595617070357556,0.0,0.14901960784313725], + [0.6670665128796617,0.0,0.14901960784313725], + [0.6745713187235679,0.0,0.14901960784313725], + [0.682076124567474,0.0,0.14901960784313725], + [0.6895809304113802,0.0,0.14901960784313725], + [0.6970857362552865,0.0,0.14901960784313725], + [0.7045905420991927,0.0,0.14901960784313725], + [0.7120953479430988,0.0,0.14901960784313725], + [0.719600153787005,0.0,0.14901960784313725], + [0.7271049596309112,0.0,0.14901960784313725], + [0.7346097654748174,0.0,0.14901960784313725], + [0.7417608612072281,0.00039984621299500193,0.14886582083813918], + [0.7464359861591695,0.0035986159169549945,0.14763552479815456], + [0.7511111111111112,0.0067973856209150325,0.14640522875816994], + [0.7557862360630527,0.009996155324875048,0.14517493271818532], + [0.7604613610149943,0.013194925028835064,0.14394463667820068], + [0.7651364859669357,0.016393694732795058,0.1427143406382161], + [0.7698116109188774,0.019592464436755094,0.14148404459823144], + [0.774486735870819,0.02279123414071511,0.14025374855824682], + [0.7791618608227605,0.025990003844675123,0.1390234525182622], + [0.7838369857747021,0.029188773548635114,0.13779315647827758], + [0.7885121107266436,0.03238754325259515,0.13656286043829297], + [0.7931872356785852,0.03558631295655517,0.13533256439830835], + [0.7978623606305267,0.03878508266051518,0.13410226835832373], + [0.8025374855824683,0.041983852364475174,0.1328719723183391], + [0.8072126105344098,0.045182622068435215,0.1316416762783545], + [0.8118877354863514,0.04838139177239523,0.13041138023836985], + [0.816562860438293,0.051580161476355246,0.12918108419838523], + [0.8212379853902345,0.05477893118031524,0.1279507881584006], + [0.8259131103421761,0.05797770088427528,0.126720492118416], + [0.8305882352941176,0.06117647058823529,0.12549019607843137], + [0.8352633602460592,0.06437524029219531,0.12425990003844675], + [0.8399384851980007,0.0675740099961553,0.12302960399846213], + [0.8446136101499423,0.07077277970011533,0.12179930795847752], + [0.8492887351018839,0.07397154940407535,0.12056901191849288], + [0.8539638600538254,0.07717031910803537,0.11933871587850826], + [0.858638985005767,0.08036908881199537,0.11810841983852366], + [0.8633141099577085,0.0835678585159554,0.11687812379853901], + [0.8679892349096501,0.08676662821991542,0.1156478277585544], + [0.8726643598615916,0.08996539792387542,0.11441753171856978], + [0.8773394848135332,0.09316416762783541,0.11318723567858516], + [0.8820146097654747,0.09636293733179546,0.11195693963860054], + [0.8866897347174163,0.09956170703575548,0.11072664359861592], + [0.8909650134563629,0.1035601691657055,0.11023452518262207], + [0.8940407535563244,0.10995770857362552,0.11195693963860054], + [0.897116493656286,0.11635524798154546,0.11367935409457898], + [0.9001922337562476,0.12275278738946559,0.11540176855055748], + [0.9032679738562092,0.1291503267973856,0.11712418300653595], + [0.9063437139561706,0.13554786620530565,0.11884659746251441], + [0.9094194540561322,0.1419454056132257,0.12056901191849288], + [0.9124951941560938,0.1483429450211457,0.12229142637447135], + [0.9155709342560553,0.15474048442906574,0.12401384083044983], + [0.9186466743560169,0.16113802383698578,0.1257362552864283], + [0.9217224144559784,0.16753556324490573,0.12745866974240674], + [0.92479815455594,0.17393310265282586,0.12918108419838523], + [0.9278738946559015,0.1803306420607459,0.1309034986543637], + [0.9309496347558631,0.1867281814686659,0.13262591311034216], + [0.9340253748558247,0.19312572087658594,0.13434832756632065], + [0.9371011149557862,0.19952326028450595,0.13607074202229913], + [0.9401768550557478,0.205920799692426,0.13779315647827758], + [0.9432525951557094,0.21231833910034603,0.13951557093425604], + [0.9463283352556708,0.21871587850826596,0.1412379853902345], + [0.9494040753556324,0.2251134179161861,0.142960399846213], + [0.952479815455594,0.23151095732410612,0.14468281430219146], + [0.9555555555555556,0.23790849673202616,0.14640522875816991], + [0.9586312956555171,0.24430603613994617,0.1481276432141484], + [0.9617070357554787,0.2507035755478662,0.14985005767012688], + [0.9647827758554403,0.25710111495578625,0.15157247212610533], + [0.9678585159554018,0.2634986543637063,0.15329488658208382], + [0.9709342560553633,0.2698961937716262,0.15501730103806227], + [0.9740099961553249,0.2762937331795463,0.15673971549404075], + [0.9770857362552865,0.2826912725874664,0.1584621299500192], + [0.980161476355248,0.2890888119953864,0.1601845444059977], + [0.9832372164552096,0.2954863514033064,0.16190695886197615], + [0.9863129565551711,0.30188389081122646,0.16362937331795463], + [0.9882814302191465,0.3087889273356402,0.1655363321799308], + [0.988404459823145,0.31653979238754326,0.16775086505190312], + [0.9885274894271434,0.3242906574394463,0.1699653979238754], + [0.9886505190311419,0.3320415224913495,0.17217993079584776], + [0.9887735486351403,0.33979238754325264,0.17439446366782008], + [0.9888965782391388,0.3475432525951557,0.1766089965397924], + [0.9890196078431372,0.35529411764705887,0.17882352941176471], + [0.9891426374471357,0.36304498269896196,0.18103806228373703], + [0.9892656670511342,0.37079584775086505,0.18325259515570935], + [0.9893886966551326,0.3785467128027682,0.18546712802768167], + [0.9895117262591311,0.3862975778546712,0.18768166089965393], + [0.9896347558631297,0.3940484429065744,0.1898961937716263], + [0.9897577854671281,0.4017993079584775,0.19211072664359863], + [0.9898808150711266,0.40955017301038066,0.19432525951557095], + [0.990003844675125,0.41730103806228375,0.19653979238754327], + [0.9901268742791235,0.4250519031141869,0.19875432525951559], + [0.990249903883122,0.43280276816609,0.20096885813148788], + [0.9903729334871204,0.4405536332179931,0.2031833910034602], + [0.9904959630911189,0.4483044982698961,0.2053979238754325], + [0.9906189926951173,0.4560553633217993,0.20761245674740483], + [0.9907420222991158,0.46380622837370244,0.20982698961937715], + [0.9908650519031142,0.4715570934256056,0.21204152249134947], + [0.9909880815071127,0.4793079584775087,0.2142560553633218], + [0.9911111111111112,0.48705882352941177,0.2164705882352941], + [0.9912341407151096,0.4948096885813149,0.21868512110726643], + [0.9913571703191081,0.502560553633218,0.22089965397923875], + [0.9914801999231065,0.510311418685121,0.22311418685121104], + [0.991603229527105,0.5180622837370242,0.22532871972318338], + [0.9917262591311035,0.5258131487889274,0.2275432525951557], + [0.9918492887351019,0.5335640138408304,0.22975778546712802], + [0.9919723183391004,0.5413148788927336,0.23197231833910034], + [0.9920953479430988,0.5490657439446367,0.23418685121107266], + [0.9922183775470973,0.5552172241445598,0.23627835447904652], + [0.9923414071510958,0.5597693194925029,0.23824682814302192], + [0.9924644367550942,0.564321414840446,0.2402153018069973], + [0.9925874663590927,0.568873510188389,0.2421837754709727], + [0.9927104959630911,0.573425605536332,0.24415224913494804], + [0.9928335255670896,0.5779777008842752,0.2461207227989235], + [0.992956555171088,0.5825297962322183,0.24808919646289887], + [0.9930795847750865,0.5870818915801614,0.2500576701268743], + [0.993202614379085,0.5916339869281045,0.25202614379084964], + [0.9933256439830834,0.5961860822760476,0.25399461745482504], + [0.9934486735870819,0.6007381776239907,0.25596309111880045], + [0.9935717031910803,0.6052902729719338,0.25793156478277585], + [0.9936947327950788,0.6098423683198769,0.25990003844675125], + [0.9938177623990773,0.61439446366782,0.26186851211072665], + [0.9939407920030757,0.6189465590157631,0.26383698577470205], + [0.9940638216070742,0.6234986543637062,0.26580545943867745], + [0.9941868512110726,0.6280507497116494,0.26777393310265285], + [0.9943098808150711,0.6326028450595924,0.2697424067666282], + [0.9944329104190696,0.6371549404075356,0.2717108804306036], + [0.994555940023068,0.6417070357554786,0.273679354094579], + [0.9946789696270665,0.6462591311034216,0.27564782775855434], + [0.994801999231065,0.6508112264513648,0.2776163014225298], + [0.9949250288350635,0.655363321799308,0.2795847750865052], + [0.995048058439062,0.659915417147251,0.2815532487504806], + [0.9951710880430604,0.6644675124951942,0.283521722414456], + [0.9952941176470589,0.6690196078431372,0.2854901960784314], + [0.9954171472510573,0.6735717031910804,0.28745866974240675], + [0.9955401768550558,0.6781237985390234,0.28942714340638215], + [0.9956632064590543,0.6826758938869666,0.29139561707035755], + [0.9957862360630527,0.6872279892349096,0.29336409073433295], + [0.9959092656670512,0.6917800845828528,0.29533256439830835], + [0.9960322952710496,0.6963321799307958,0.29730103806228375], + [0.996078431372549,0.701038062283737,0.3012687427912341], + [0.996078431372549,0.705836216839677,0.30643598615916956], + [0.996078431372549,0.710634371395617,0.31160322952710495], + [0.996078431372549,0.715432525951557,0.31677047289504034], + [0.996078431372549,0.720230680507497,0.3219377162629756], + [0.996078431372549,0.7250288350634371,0.3271049596309112], + [0.996078431372549,0.7298269896193771,0.3322722029988466], + [0.996078431372549,0.7346251441753171,0.337439446366782], + [0.996078431372549,0.7394232987312572,0.3426066897347174], + [0.996078431372549,0.7442214532871972,0.3477739331026528], + [0.996078431372549,0.7490196078431373,0.35294117647058826], + [0.996078431372549,0.7538177623990773,0.35810841983852365], + [0.996078431372549,0.7586159169550173,0.36327566320645904], + [0.996078431372549,0.7634140715109573,0.3684429065743945], + [0.996078431372549,0.7682122260668973,0.3736101499423299], + [0.996078431372549,0.7730103806228373,0.3787773933102653], + [0.996078431372549,0.7778085351787773,0.3839446366782007], + [0.996078431372549,0.7826066897347174,0.3891118800461361], + [0.996078431372549,0.7874048442906574,0.3942791234140715], + [0.996078431372549,0.7922029988465974,0.39944636678200696], + [0.996078431372549,0.7970011534025373,0.4046136101499422], + [0.996078431372549,0.8017993079584775,0.40978085351787774], + [0.996078431372549,0.8065974625144176,0.41494809688581313], + [0.996078431372549,0.8113956170703576,0.4201153402537486], + [0.996078431372549,0.8161937716262976,0.42528258362168403], + [0.996078431372549,0.8209919261822376,0.4304498269896194], + [0.996078431372549,0.8257900807381776,0.4356170703575548], + [0.996078431372549,0.8305882352941176,0.4407843137254902], + [0.996078431372549,0.8353863898500576,0.4459515570934256], + [0.996078431372549,0.8401845444059977,0.45111880046136105], + [0.996078431372549,0.8449826989619377,0.45628604382929644], + [0.996078431372549,0.8497808535178777,0.4614532871972319], + [0.9961707035755479,0.8528258362168396,0.4666205305651673], + [0.9962937331795464,0.8552864282968089,0.47178777393310267], + [0.9964167627835449,0.8577470203767782,0.47695501730103806], + [0.9965397923875433,0.8602076124567474,0.4821222606689735], + [0.9966628219915418,0.8626682045367166,0.48728950403690874], + [0.9967858515955402,0.8651287966166858,0.4924567474048443], + [0.9969088811995387,0.8675893886966551,0.49762399077277975], + [0.9970319108035371,0.8700499807766243,0.5027912341407151], + [0.9971549404075356,0.8725105728565936,0.5079584775086505], + [0.9972779700115341,0.8749711649365629,0.5131257208765859], + [0.9974009996155325,0.8774317570165321,0.5182929642445213], + [0.997524029219531,0.8798923490965014,0.5234602076124568], + [0.9976470588235294,0.8823529411764706,0.5286274509803922], + [0.9977700884275279,0.8848135332564399,0.5337946943483276], + [0.9978931180315264,0.887274125336409,0.538961937716263], + [0.9980161476355248,0.8897347174163783,0.5441291810841984], + [0.9981391772395233,0.8921953094963475,0.5492964244521338], + [0.9982622068435217,0.8946559015763168,0.5544636678200692], + [0.9983852364475202,0.8971164936562861,0.5596309111880047], + [0.9985082660515187,0.8995770857362553,0.5647981545559401], + [0.9986312956555171,0.9020376778162245,0.5699653979238752], + [0.9987543252595156,0.9044982698961938,0.5751326412918109], + [0.998877354863514,0.906958861976163,0.5802998846597462], + [0.9990003844675125,0.9094194540561322,0.5854671280276816], + [0.999123414071511,0.9118800461361015,0.590634371395617], + [0.9992464436755094,0.9143406382160708,0.5958016147635525], + [0.9993694732795079,0.91680123029604,0.6009688581314879], + [0.9994925028835063,0.9192618223760093,0.6061361014994233], + [0.9996155324875048,0.9217224144559785,0.6113033448673587], + [0.9997385620915032,0.9241830065359478,0.6164705882352941], + [0.9998615916955017,0.9266435986159169,0.6216378316032295], + [0.9999846212995002,0.9291041906958862,0.6268050749711649], + [1.0,0.9313494809688582,0.6321876201460976], + [1.0,0.9335640138408304,0.63760092272203], + [1.0,0.9357785467128028,0.6430142252979624], + [1.0,0.9379930795847751,0.6484275278738947], + [1.0,0.9402076124567473,0.6538408304498269], + [1.0,0.9424221453287197,0.6592541330257593], + [1.0,0.9446366782006921,0.6646674356016916], + [1.0,0.9468512110726643,0.670080738177624], + [1.0,0.9490657439446367,0.6754940407535563], + [1.0,0.951280276816609,0.6809073433294887], + [1.0,0.9534948096885814,0.686320645905421], + [1.0,0.9557093425605536,0.6917339484813534], + [1.0,0.957923875432526,0.6971472510572857], + [1.0,0.9601384083044983,0.702560553633218], + [1.0,0.9623529411764706,0.7079738562091503], + [1.0,0.9645674740484429,0.7133871587850826], + [1.0,0.9667820069204153,0.718800461361015], + [1.0,0.9689965397923875,0.7242137639369474], + [1.0,0.9712110726643599,0.7296270665128797], + [1.0,0.9734256055363322,0.735040369088812], + [1.0,0.9756401384083044,0.7404536716647442], + [1.0,0.9778546712802768,0.7458669742406767], + [1.0,0.9800692041522492,0.751280276816609], + [1.0,0.9822837370242214,0.7566935793925413], + [1.0,0.9844982698961938,0.7621068819684738], + [1.0,0.9867128027681661,0.7675201845444061], + [1.0,0.9889273356401385,0.7729334871203384], + [1.0,0.9911418685121107,0.7783467896962707], + [1.0,0.993356401384083,0.783760092272203], + [1.0,0.9955709342560554,0.7891733948481354], + [1.0,0.9977854671280277,0.7945866974240677], + [1.0,1.0,0.8] ], + afmhot: [ + [0.0,0.0,0.0], + [0.00784313725490196,0.0,0.0], + [0.01568627450980392,0.0,0.0], + [0.023529411764705882,0.0,0.0], + [0.03137254901960784,0.0,0.0], + [0.0392156862745098,0.0,0.0], + [0.047058823529411764,0.0,0.0], + [0.054901960784313725,0.0,0.0], + [0.06274509803921569,0.0,0.0], + [0.07058823529411765,0.0,0.0], + [0.0784313725490196,0.0,0.0], + [0.08627450980392157,0.0,0.0], + [0.09411764705882353,0.0,0.0], + [0.10196078431372549,0.0,0.0], + [0.10980392156862745,0.0,0.0], + [0.11764705882352941,0.0,0.0], + [0.12549019607843137,0.0,0.0], + [0.13333333333333333,0.0,0.0], + [0.1411764705882353,0.0,0.0], + [0.14901960784313725,0.0,0.0], + [0.1568627450980392,0.0,0.0], + [0.16470588235294117,0.0,0.0], + [0.17254901960784313,0.0,0.0], + [0.1803921568627451,0.0,0.0], + [0.18823529411764706,0.0,0.0], + [0.19607843137254902,0.0,0.0], + [0.20392156862745098,0.0,0.0], + [0.21176470588235294,0.0,0.0], + [0.2196078431372549,0.0,0.0], + [0.22745098039215686,0.0,0.0], + [0.23529411764705882,0.0,0.0], + [0.24313725490196078,0.0,0.0], + [0.25098039215686274,0.0,0.0], + [0.2588235294117647,0.0,0.0], + [0.26666666666666666,0.0,0.0], + [0.27450980392156865,0.0,0.0], + [0.2823529411764706,0.0,0.0], + [0.2901960784313725,0.0,0.0], + [0.2980392156862745,0.0,0.0], + [0.3058823529411765,0.0,0.0], + [0.3137254901960784,0.0,0.0], + [0.32156862745098036,0.0,0.0], + [0.32941176470588235,0.0,0.0], + [0.33725490196078434,0.0,0.0], + [0.34509803921568627,0.0,0.0], + [0.3529411764705882,0.0,0.0], + [0.3607843137254902,0.0,0.0], + [0.3686274509803922,0.0,0.0], + [0.3764705882352941,0.0,0.0], + [0.38431372549019605,0.0,0.0], + [0.39215686274509803,0.0,0.0], + [0.4,0.0,0.0], + [0.40784313725490196,0.0,0.0], + [0.4156862745098039,0.0,0.0], + [0.4235294117647059,0.0,0.0], + [0.43137254901960786,0.0,0.0], + [0.4392156862745098,0.0,0.0], + [0.44705882352941173,0.0,0.0], + [0.4549019607843137,0.0,0.0], + [0.4627450980392157,0.0,0.0], + [0.47058823529411764,0.0,0.0], + [0.4784313725490196,0.0,0.0], + [0.48627450980392156,0.0,0.0], + [0.49411764705882355,0.0,0.0], + [0.5019607843137255,0.0019607843137254832,0.0], + [0.5098039215686274,0.009803921568627416,0.0], + [0.5176470588235293,0.01764705882352935,0.0], + [0.5254901960784314,0.025490196078431393,0.0], + [0.5333333333333333,0.033333333333333326,0.0], + [0.5411764705882353,0.04117647058823526,0.0], + [0.5490196078431373,0.0490196078431373,0.0], + [0.5568627450980392,0.056862745098039236,0.0], + [0.5647058823529412,0.06470588235294117,0.0], + [0.5725490196078431,0.0725490196078431,0.0], + [0.580392156862745,0.08039215686274503,0.0], + [0.5882352941176471,0.08823529411764708,0.0], + [0.596078431372549,0.09607843137254901,0.0], + [0.6039215686274509,0.10392156862745094,0.0], + [0.611764705882353,0.11176470588235299,0.0], + [0.6196078431372549,0.11960784313725492,0.0], + [0.6274509803921569,0.12745098039215685,0.0], + [0.6352941176470588,0.1352941176470588,0.0], + [0.6431372549019607,0.14313725490196072,0.0], + [0.6509803921568628,0.15098039215686276,0.0], + [0.6588235294117647,0.1588235294117647,0.0], + [0.6666666666666666,0.16666666666666663,0.0], + [0.6745098039215687,0.17450980392156867,0.0], + [0.6823529411764706,0.1823529411764706,0.0], + [0.6901960784313725,0.19019607843137254,0.0], + [0.6980392156862745,0.19803921568627447,0.0], + [0.7058823529411764,0.2058823529411764,0.0], + [0.7137254901960784,0.21372549019607845,0.0], + [0.7215686274509804,0.22156862745098038,0.0], + [0.7294117647058823,0.22941176470588232,0.0], + [0.7372549019607844,0.23725490196078436,0.0], + [0.7450980392156863,0.2450980392156863,0.0], + [0.7529411764705882,0.2529411764705882,0.0], + [0.7607843137254902,0.26078431372549016,0.0], + [0.7686274509803921,0.2686274509803921,0.0], + [0.7764705882352941,0.27647058823529413,0.0], + [0.7843137254901961,0.28431372549019607,0.0], + [0.792156862745098,0.292156862745098,0.0], + [0.8,0.30000000000000004,0.0], + [0.807843137254902,0.307843137254902,0.0], + [0.8156862745098039,0.3156862745098039,0.0], + [0.8235294117647058,0.32352941176470584,0.0], + [0.8313725490196078,0.3313725490196078,0.0], + [0.8392156862745098,0.3392156862745098,0.0], + [0.8470588235294118,0.34705882352941175,0.0], + [0.8549019607843137,0.3549019607843137,0.0], + [0.8627450980392157,0.36274509803921573,0.0], + [0.8705882352941177,0.37058823529411766,0.0], + [0.8784313725490196,0.3784313725490196,0.0], + [0.8862745098039215,0.38627450980392153,0.0], + [0.8941176470588235,0.39411764705882346,0.0], + [0.9019607843137255,0.4019607843137255,0.0], + [0.9098039215686274,0.40980392156862744,0.0], + [0.9176470588235294,0.41764705882352937,0.0], + [0.9254901960784314,0.4254901960784314,0.0], + [0.9333333333333333,0.43333333333333335,0.0], + [0.9411764705882353,0.4411764705882353,0.0], + [0.9490196078431372,0.4490196078431372,0.0], + [0.9568627450980391,0.45686274509803915,0.0], + [0.9647058823529412,0.4647058823529412,0.0], + [0.9725490196078431,0.4725490196078431,0.0], + [0.9803921568627451,0.48039215686274506,0.0], + [0.9882352941176471,0.4882352941176471,0.0], + [0.996078431372549,0.49607843137254903,0.0], + [1.0,0.503921568627451,0.0039215686274509665], + [1.0,0.5117647058823529,0.0117647058823529], + [1.0,0.5196078431372548,0.019607843137254832], + [1.0,0.5274509803921568,0.027450980392156765], + [1.0,0.5352941176470587,0.0352941176470587], + [1.0,0.5431372549019609,0.04313725490196085], + [1.0,0.5509803921568628,0.050980392156862786], + [1.0,0.5588235294117647,0.05882352941176472], + [1.0,0.5666666666666667,0.06666666666666665], + [1.0,0.5745098039215686,0.07450980392156858], + [1.0,0.5823529411764705,0.08235294117647052], + [1.0,0.5901960784313725,0.09019607843137245], + [1.0,0.5980392156862746,0.0980392156862746], + [1.0,0.6058823529411765,0.10588235294117654], + [1.0,0.6137254901960785,0.11372549019607847], + [1.0,0.6215686274509804,0.1215686274509804], + [1.0,0.6294117647058823,0.12941176470588234], + [1.0,0.6372549019607843,0.13725490196078427], + [1.0,0.6450980392156862,0.1450980392156862], + [1.0,0.6529411764705881,0.15294117647058814], + [1.0,0.6607843137254901,0.16078431372549007], + [1.0,0.6686274509803922,0.16862745098039222], + [1.0,0.6764705882352942,0.17647058823529416], + [1.0,0.6843137254901961,0.1843137254901961], + [1.0,0.692156862745098,0.19215686274509802], + [1.0,0.7,0.19999999999999996], + [1.0,0.7078431372549019,0.2078431372549019], + [1.0,0.7156862745098038,0.21568627450980382], + [1.0,0.723529411764706,0.22352941176470598], + [1.0,0.7313725490196079,0.2313725490196079], + [1.0,0.7392156862745098,0.23921568627450984], + [1.0,0.7470588235294118,0.24705882352941178], + [1.0,0.7549019607843137,0.2549019607843137], + [1.0,0.7627450980392156,0.26274509803921564], + [1.0,0.7705882352941176,0.2705882352941176], + [1.0,0.7784313725490195,0.2784313725490195], + [1.0,0.7862745098039214,0.28627450980392144], + [1.0,0.7941176470588236,0.2941176470588236], + [1.0,0.8019607843137255,0.3019607843137255], + [1.0,0.8098039215686275,0.30980392156862746], + [1.0,0.8176470588235294,0.3176470588235294], + [1.0,0.8254901960784313,0.3254901960784313], + [1.0,0.8333333333333333,0.33333333333333326], + [1.0,0.8411764705882352,0.3411764705882352], + [1.0,0.8490196078431373,0.34901960784313735], + [1.0,0.8568627450980393,0.3568627450980393], + [1.0,0.8647058823529412,0.3647058823529412], + [1.0,0.8725490196078431,0.37254901960784315], + [1.0,0.8803921568627451,0.3803921568627451], + [1.0,0.888235294117647,0.388235294117647], + [1.0,0.896078431372549,0.39607843137254894], + [1.0,0.9039215686274509,0.4039215686274509], + [1.0,0.9117647058823528,0.4117647058823528], + [1.0,0.919607843137255,0.41960784313725497], + [1.0,0.9274509803921569,0.4274509803921569], + [1.0,0.9352941176470588,0.43529411764705883], + [1.0,0.9431372549019608,0.44313725490196076], + [1.0,0.9509803921568627,0.4509803921568627], + [1.0,0.9588235294117646,0.45882352941176463], + [1.0,0.9666666666666666,0.46666666666666656], + [1.0,0.9745098039215687,0.4745098039215687], + [1.0,0.9823529411764707,0.48235294117647065], + [1.0,0.9901960784313726,0.4901960784313726], + [1.0,0.9980392156862745,0.4980392156862745], + [1.0,1.0,0.5058823529411764], + [1.0,1.0,0.5137254901960784], + [1.0,1.0,0.5215686274509803], + [1.0,1.0,0.5294117647058822], + [1.0,1.0,0.5372549019607842], + [1.0,1.0,0.5450980392156863], + [1.0,1.0,0.5529411764705883], + [1.0,1.0,0.5607843137254902], + [1.0,1.0,0.5686274509803921], + [1.0,1.0,0.5764705882352941], + [1.0,1.0,0.584313725490196], + [1.0,1.0,0.5921568627450979], + [1.0,1.0,0.6000000000000001], + [1.0,1.0,0.607843137254902], + [1.0,1.0,0.615686274509804], + [1.0,1.0,0.6235294117647059], + [1.0,1.0,0.6313725490196078], + [1.0,1.0,0.6392156862745098], + [1.0,1.0,0.6470588235294117], + [1.0,1.0,0.6549019607843136], + [1.0,1.0,0.6627450980392156], + [1.0,1.0,0.6705882352941177], + [1.0,1.0,0.6784313725490196], + [1.0,1.0,0.6862745098039216], + [1.0,1.0,0.6941176470588235], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.7098039215686274], + [1.0,1.0,0.7176470588235293], + [1.0,1.0,0.7254901960784315], + [1.0,1.0,0.7333333333333334], + [1.0,1.0,0.7411764705882353], + [1.0,1.0,0.7490196078431373], + [1.0,1.0,0.7568627450980392], + [1.0,1.0,0.7647058823529411], + [1.0,1.0,0.7725490196078431], + [1.0,1.0,0.780392156862745], + [1.0,1.0,0.7882352941176469], + [1.0,1.0,0.7960784313725491], + [1.0,1.0,0.803921568627451], + [1.0,1.0,0.8117647058823529], + [1.0,1.0,0.8196078431372549], + [1.0,1.0,0.8274509803921568], + [1.0,1.0,0.8352941176470587], + [1.0,1.0,0.8431372549019607], + [1.0,1.0,0.8509803921568628], + [1.0,1.0,0.8588235294117648], + [1.0,1.0,0.8666666666666667], + [1.0,1.0,0.8745098039215686], + [1.0,1.0,0.8823529411764706], + [1.0,1.0,0.8901960784313725], + [1.0,1.0,0.8980392156862744], + [1.0,1.0,0.9058823529411764], + [1.0,1.0,0.9137254901960783], + [1.0,1.0,0.9215686274509804], + [1.0,1.0,0.9294117647058824], + [1.0,1.0,0.9372549019607843], + [1.0,1.0,0.9450980392156862], + [1.0,1.0,0.9529411764705882], + [1.0,1.0,0.9607843137254901], + [1.0,1.0,0.968627450980392], + [1.0,1.0,0.9764705882352942], + [1.0,1.0,0.9843137254901961], + [1.0,1.0,0.9921568627450981], + [1.0,1.0,1.0] ], + afmhot_r: [ + [1.0,1.0,1.0], + [1.0,1.0,0.9921568627450981], + [1.0,1.0,0.9843137254901961], + [1.0,1.0,0.9764705882352942], + [1.0,1.0,0.9686274509803923], + [1.0,1.0,0.9607843137254901], + [1.0,1.0,0.9529411764705882], + [1.0,1.0,0.9450980392156862], + [1.0,1.0,0.9372549019607843], + [1.0,1.0,0.9294117647058824], + [1.0,1.0,0.9215686274509804], + [1.0,1.0,0.9137254901960785], + [1.0,1.0,0.9058823529411764], + [1.0,1.0,0.8980392156862744], + [1.0,1.0,0.8901960784313725], + [1.0,1.0,0.8823529411764706], + [1.0,1.0,0.8745098039215686], + [1.0,1.0,0.8666666666666667], + [1.0,1.0,0.8588235294117648], + [1.0,1.0,0.8509803921568628], + [1.0,1.0,0.8431372549019609], + [1.0,1.0,0.8352941176470587], + [1.0,1.0,0.8274509803921568], + [1.0,1.0,0.8196078431372549], + [1.0,1.0,0.8117647058823529], + [1.0,1.0,0.803921568627451], + [1.0,1.0,0.7960784313725491], + [1.0,1.0,0.7882352941176471], + [1.0,1.0,0.780392156862745], + [1.0,1.0,0.7725490196078431], + [1.0,1.0,0.7647058823529411], + [1.0,1.0,0.7568627450980392], + [1.0,1.0,0.7490196078431373], + [1.0,1.0,0.7411764705882353], + [1.0,1.0,0.7333333333333334], + [1.0,1.0,0.7254901960784315], + [1.0,1.0,0.7176470588235295], + [1.0,1.0,0.7098039215686276], + [1.0,1.0,0.7019607843137254], + [1.0,1.0,0.6941176470588235], + [1.0,1.0,0.6862745098039216], + [1.0,1.0,0.6784313725490196], + [1.0,1.0,0.6705882352941177], + [1.0,1.0,0.6627450980392156], + [1.0,1.0,0.6549019607843136], + [1.0,1.0,0.6470588235294117], + [1.0,1.0,0.6392156862745098], + [1.0,1.0,0.6313725490196078], + [1.0,1.0,0.6235294117647059], + [1.0,1.0,0.615686274509804], + [1.0,1.0,0.607843137254902], + [1.0,1.0,0.6000000000000001], + [1.0,1.0,0.5921568627450982], + [1.0,1.0,0.5843137254901962], + [1.0,1.0,0.5764705882352941], + [1.0,1.0,0.5686274509803921], + [1.0,1.0,0.5607843137254902], + [1.0,1.0,0.5529411764705883], + [1.0,1.0,0.5450980392156863], + [1.0,1.0,0.5372549019607842], + [1.0,1.0,0.5294117647058822], + [1.0,1.0,0.5215686274509803], + [1.0,1.0,0.5137254901960784], + [1.0,1.0,0.5058823529411764], + [1.0,0.9980392156862745,0.4980392156862745], + [1.0,0.9901960784313726,0.4901960784313726], + [1.0,0.9823529411764707,0.48235294117647065], + [1.0,0.9745098039215687,0.4745098039215687], + [1.0,0.9666666666666668,0.4666666666666668], + [1.0,0.9588235294117649,0.45882352941176485], + [1.0,0.9509803921568627,0.4509803921568627], + [1.0,0.9431372549019608,0.44313725490196076], + [1.0,0.9352941176470588,0.43529411764705883], + [1.0,0.9274509803921569,0.4274509803921569], + [1.0,0.919607843137255,0.41960784313725497], + [1.0,0.9117647058823528,0.4117647058823528], + [1.0,0.9039215686274509,0.4039215686274509], + [1.0,0.896078431372549,0.39607843137254894], + [1.0,0.888235294117647,0.388235294117647], + [1.0,0.8803921568627451,0.3803921568627451], + [1.0,0.8725490196078431,0.37254901960784315], + [1.0,0.8647058823529412,0.3647058823529412], + [1.0,0.8568627450980393,0.3568627450980393], + [1.0,0.8490196078431373,0.34901960784313735], + [1.0,0.8411764705882354,0.3411764705882354], + [1.0,0.8333333333333335,0.3333333333333335], + [1.0,0.8254901960784313,0.3254901960784313], + [1.0,0.8176470588235294,0.3176470588235294], + [1.0,0.8098039215686275,0.30980392156862746], + [1.0,0.8019607843137255,0.3019607843137255], + [1.0,0.7941176470588236,0.2941176470588236], + [1.0,0.7862745098039214,0.28627450980392144], + [1.0,0.7784313725490195,0.2784313725490195], + [1.0,0.7705882352941176,0.2705882352941176], + [1.0,0.7627450980392156,0.26274509803921564], + [1.0,0.7549019607843137,0.2549019607843137], + [1.0,0.7470588235294118,0.24705882352941178], + [1.0,0.7392156862745098,0.23921568627450984], + [1.0,0.7313725490196079,0.2313725490196079], + [1.0,0.723529411764706,0.22352941176470598], + [1.0,0.715686274509804,0.21568627450980404], + [1.0,0.7078431372549021,0.2078431372549021], + [1.0,0.7,0.19999999999999996], + [1.0,0.692156862745098,0.19215686274509802], + [1.0,0.6843137254901961,0.1843137254901961], + [1.0,0.6764705882352942,0.17647058823529416], + [1.0,0.6686274509803922,0.16862745098039222], + [1.0,0.6607843137254901,0.16078431372549007], + [1.0,0.6529411764705881,0.15294117647058814], + [1.0,0.6450980392156862,0.1450980392156862], + [1.0,0.6372549019607843,0.13725490196078427], + [1.0,0.6294117647058823,0.12941176470588234], + [1.0,0.6215686274509804,0.1215686274509804], + [1.0,0.6137254901960785,0.11372549019607847], + [1.0,0.6058823529411765,0.10588235294117654], + [1.0,0.5980392156862746,0.0980392156862746], + [1.0,0.5901960784313727,0.09019607843137267], + [1.0,0.5823529411764707,0.08235294117647074], + [1.0,0.5745098039215686,0.07450980392156858], + [1.0,0.5666666666666667,0.06666666666666665], + [1.0,0.5588235294117647,0.05882352941176472], + [1.0,0.5509803921568628,0.050980392156862786], + [1.0,0.5431372549019609,0.04313725490196085], + [1.0,0.5352941176470587,0.0352941176470587], + [1.0,0.5274509803921568,0.027450980392156765], + [1.0,0.5196078431372548,0.019607843137254832], + [1.0,0.5117647058823529,0.0117647058823529], + [1.0,0.503921568627451,0.0039215686274509665], + [0.996078431372549,0.49607843137254903,0.0], + [0.9882352941176471,0.4882352941176471,0.0], + [0.9803921568627452,0.48039215686274517,0.0], + [0.9725490196078432,0.47254901960784323,0.0], + [0.9647058823529413,0.4647058823529413,0.0], + [0.9568627450980391,0.45686274509803915,0.0], + [0.9490196078431372,0.4490196078431372,0.0], + [0.9411764705882353,0.4411764705882353,0.0], + [0.9333333333333333,0.43333333333333335,0.0], + [0.9254901960784314,0.4254901960784314,0.0], + [0.9176470588235295,0.4176470588235295,0.0], + [0.9098039215686275,0.40980392156862755,0.0], + [0.9019607843137254,0.4019607843137254,0.0], + [0.8941176470588235,0.39411764705882346,0.0], + [0.8862745098039215,0.38627450980392153,0.0], + [0.8784313725490196,0.3784313725490196,0.0], + [0.8705882352941177,0.37058823529411766,0.0], + [0.8627450980392157,0.36274509803921573,0.0], + [0.8549019607843138,0.3549019607843138,0.0], + [0.8470588235294119,0.34705882352941186,0.0], + [0.8392156862745099,0.33921568627450993,0.0], + [0.8313725490196078,0.3313725490196078,0.0], + [0.8235294117647058,0.32352941176470584,0.0], + [0.8156862745098039,0.3156862745098039,0.0], + [0.807843137254902,0.307843137254902,0.0], + [0.8,0.30000000000000004,0.0], + [0.7921568627450981,0.2921568627450981,0.0], + [0.7843137254901962,0.2843137254901962,0.0], + [0.776470588235294,0.276470588235294,0.0], + [0.7686274509803921,0.2686274509803921,0.0], + [0.7607843137254902,0.26078431372549016,0.0], + [0.7529411764705882,0.2529411764705882,0.0], + [0.7450980392156863,0.2450980392156863,0.0], + [0.7372549019607844,0.23725490196078436,0.0], + [0.7294117647058824,0.22941176470588243,0.0], + [0.7215686274509805,0.2215686274509805,0.0], + [0.7137254901960786,0.21372549019607856,0.0], + [0.7058823529411764,0.2058823529411764,0.0], + [0.6980392156862745,0.19803921568627447,0.0], + [0.6901960784313725,0.19019607843137254,0.0], + [0.6823529411764706,0.1823529411764706,0.0], + [0.6745098039215687,0.17450980392156867,0.0], + [0.6666666666666667,0.16666666666666674,0.0], + [0.6588235294117648,0.1588235294117648,0.0], + [0.6509803921568627,0.15098039215686265,0.0], + [0.6431372549019607,0.14313725490196072,0.0], + [0.6352941176470588,0.1352941176470588,0.0], + [0.6274509803921569,0.12745098039215685,0.0], + [0.6196078431372549,0.11960784313725492,0.0], + [0.611764705882353,0.11176470588235299,0.0], + [0.603921568627451,0.10392156862745106,0.0], + [0.5960784313725491,0.09607843137254912,0.0], + [0.5882352941176472,0.08823529411764719,0.0], + [0.580392156862745,0.08039215686274503,0.0], + [0.5725490196078431,0.0725490196078431,0.0], + [0.5647058823529412,0.06470588235294117,0.0], + [0.5568627450980392,0.056862745098039236,0.0], + [0.5490196078431373,0.0490196078431373,0.0], + [0.5411764705882354,0.04117647058823537,0.0], + [0.5333333333333334,0.03333333333333344,0.0], + [0.5254901960784313,0.025490196078431282,0.0], + [0.5176470588235293,0.01764705882352935,0.0], + [0.5098039215686274,0.009803921568627416,0.0], + [0.5019607843137255,0.0019607843137254832,0.0], + [0.49411764705882355,0.0,0.0], + [0.4862745098039216,0.0,0.0], + [0.4784313725490197,0.0,0.0], + [0.47058823529411775,0.0,0.0], + [0.4627450980392158,0.0,0.0], + [0.45490196078431366,0.0,0.0], + [0.44705882352941173,0.0,0.0], + [0.4392156862745098,0.0,0.0], + [0.43137254901960786,0.0,0.0], + [0.42352941176470593,0.0,0.0], + [0.415686274509804,0.0,0.0], + [0.40784313725490207,0.0,0.0], + [0.3999999999999999,0.0,0.0], + [0.392156862745098,0.0,0.0], + [0.38431372549019605,0.0,0.0], + [0.3764705882352941,0.0,0.0], + [0.3686274509803922,0.0,0.0], + [0.36078431372549025,0.0,0.0], + [0.3529411764705883,0.0,0.0], + [0.3450980392156864,0.0,0.0], + [0.33725490196078445,0.0,0.0], + [0.3294117647058823,0.0,0.0], + [0.32156862745098036,0.0,0.0], + [0.3137254901960784,0.0,0.0], + [0.3058823529411765,0.0,0.0], + [0.29803921568627456,0.0,0.0], + [0.29019607843137263,0.0,0.0], + [0.2823529411764707,0.0,0.0], + [0.27450980392156854,0.0,0.0], + [0.2666666666666666,0.0,0.0], + [0.2588235294117647,0.0,0.0], + [0.25098039215686274,0.0,0.0], + [0.2431372549019608,0.0,0.0], + [0.23529411764705888,0.0,0.0], + [0.22745098039215694,0.0,0.0], + [0.219607843137255,0.0,0.0], + [0.21176470588235308,0.0,0.0], + [0.20392156862745092,0.0,0.0], + [0.196078431372549,0.0,0.0], + [0.18823529411764706,0.0,0.0], + [0.18039215686274512,0.0,0.0], + [0.1725490196078432,0.0,0.0], + [0.16470588235294126,0.0,0.0], + [0.15686274509803932,0.0,0.0], + [0.14901960784313717,0.0,0.0], + [0.14117647058823524,0.0,0.0], + [0.1333333333333333,0.0,0.0], + [0.12549019607843137,0.0,0.0], + [0.11764705882352944,0.0,0.0], + [0.1098039215686275,0.0,0.0], + [0.10196078431372557,0.0,0.0], + [0.09411764705882364,0.0,0.0], + [0.0862745098039217,0.0,0.0], + [0.07843137254901955,0.0,0.0], + [0.07058823529411762,0.0,0.0], + [0.06274509803921569,0.0,0.0], + [0.05490196078431375,0.0,0.0], + [0.04705882352941182,0.0,0.0], + [0.03921568627450989,0.0,0.0], + [0.031372549019607954,0.0,0.0], + [0.0235294117647058,0.0,0.0], + [0.015686274509803866,0.0,0.0], + [0.007843137254901933,0.0,0.0], + [0.0,0.0,0.0] ], + autumn: [ + [1.0,0.0,0.0], + [1.0,0.00392156862745098,0.0], + [1.0,0.00784313725490196,0.0], + [1.0,0.011764705882352941,0.0], + [1.0,0.01568627450980392,0.0], + [1.0,0.0196078431372549,0.0], + [1.0,0.023529411764705882,0.0], + [1.0,0.027450980392156862,0.0], + [1.0,0.03137254901960784,0.0], + [1.0,0.03529411764705882,0.0], + [1.0,0.0392156862745098,0.0], + [1.0,0.043137254901960784,0.0], + [1.0,0.047058823529411764,0.0], + [1.0,0.050980392156862744,0.0], + [1.0,0.054901960784313725,0.0], + [1.0,0.058823529411764705,0.0], + [1.0,0.06274509803921569,0.0], + [1.0,0.06666666666666667,0.0], + [1.0,0.07058823529411765,0.0], + [1.0,0.07450980392156863,0.0], + [1.0,0.0784313725490196,0.0], + [1.0,0.08235294117647059,0.0], + [1.0,0.08627450980392157,0.0], + [1.0,0.09019607843137255,0.0], + [1.0,0.09411764705882353,0.0], + [1.0,0.09803921568627451,0.0], + [1.0,0.10196078431372549,0.0], + [1.0,0.10588235294117647,0.0], + [1.0,0.10980392156862745,0.0], + [1.0,0.11372549019607843,0.0], + [1.0,0.11764705882352941,0.0], + [1.0,0.12156862745098039,0.0], + [1.0,0.12549019607843137,0.0], + [1.0,0.12941176470588234,0.0], + [1.0,0.13333333333333333,0.0], + [1.0,0.13725490196078433,0.0], + [1.0,0.1411764705882353,0.0], + [1.0,0.14509803921568626,0.0], + [1.0,0.14901960784313725,0.0], + [1.0,0.15294117647058825,0.0], + [1.0,0.1568627450980392,0.0], + [1.0,0.16078431372549018,0.0], + [1.0,0.16470588235294117,0.0], + [1.0,0.16862745098039217,0.0], + [1.0,0.17254901960784313,0.0], + [1.0,0.1764705882352941,0.0], + [1.0,0.1803921568627451,0.0], + [1.0,0.1843137254901961,0.0], + [1.0,0.18823529411764706,0.0], + [1.0,0.19215686274509802,0.0], + [1.0,0.19607843137254902,0.0], + [1.0,0.2,0.0], + [1.0,0.20392156862745098,0.0], + [1.0,0.20784313725490194,0.0], + [1.0,0.21176470588235294,0.0], + [1.0,0.21568627450980393,0.0], + [1.0,0.2196078431372549,0.0], + [1.0,0.22352941176470587,0.0], + [1.0,0.22745098039215686,0.0], + [1.0,0.23137254901960785,0.0], + [1.0,0.23529411764705882,0.0], + [1.0,0.2392156862745098,0.0], + [1.0,0.24313725490196078,0.0], + [1.0,0.24705882352941178,0.0], + [1.0,0.25098039215686274,0.0], + [1.0,0.2549019607843137,0.0], + [1.0,0.2588235294117647,0.0], + [1.0,0.2627450980392157,0.0], + [1.0,0.26666666666666666,0.0], + [1.0,0.27058823529411763,0.0], + [1.0,0.27450980392156865,0.0], + [1.0,0.2784313725490196,0.0], + [1.0,0.2823529411764706,0.0], + [1.0,0.28627450980392155,0.0], + [1.0,0.2901960784313725,0.0], + [1.0,0.29411764705882354,0.0], + [1.0,0.2980392156862745,0.0], + [1.0,0.30196078431372547,0.0], + [1.0,0.3058823529411765,0.0], + [1.0,0.30980392156862746,0.0], + [1.0,0.3137254901960784,0.0], + [1.0,0.3176470588235294,0.0], + [1.0,0.32156862745098036,0.0], + [1.0,0.3254901960784314,0.0], + [1.0,0.32941176470588235,0.0], + [1.0,0.3333333333333333,0.0], + [1.0,0.33725490196078434,0.0], + [1.0,0.3411764705882353,0.0], + [1.0,0.34509803921568627,0.0], + [1.0,0.34901960784313724,0.0], + [1.0,0.3529411764705882,0.0], + [1.0,0.3568627450980392,0.0], + [1.0,0.3607843137254902,0.0], + [1.0,0.36470588235294116,0.0], + [1.0,0.3686274509803922,0.0], + [1.0,0.37254901960784315,0.0], + [1.0,0.3764705882352941,0.0], + [1.0,0.3803921568627451,0.0], + [1.0,0.38431372549019605,0.0], + [1.0,0.38823529411764707,0.0], + [1.0,0.39215686274509803,0.0], + [1.0,0.396078431372549,0.0], + [1.0,0.4,0.0], + [1.0,0.403921568627451,0.0], + [1.0,0.40784313725490196,0.0], + [1.0,0.4117647058823529,0.0], + [1.0,0.4156862745098039,0.0], + [1.0,0.4196078431372549,0.0], + [1.0,0.4235294117647059,0.0], + [1.0,0.42745098039215684,0.0], + [1.0,0.43137254901960786,0.0], + [1.0,0.43529411764705883,0.0], + [1.0,0.4392156862745098,0.0], + [1.0,0.44313725490196076,0.0], + [1.0,0.44705882352941173,0.0], + [1.0,0.45098039215686275,0.0], + [1.0,0.4549019607843137,0.0], + [1.0,0.4588235294117647,0.0], + [1.0,0.4627450980392157,0.0], + [1.0,0.4666666666666667,0.0], + [1.0,0.47058823529411764,0.0], + [1.0,0.4745098039215686,0.0], + [1.0,0.4784313725490196,0.0], + [1.0,0.4823529411764706,0.0], + [1.0,0.48627450980392156,0.0], + [1.0,0.49019607843137253,0.0], + [1.0,0.49411764705882355,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.5019607843137255,0.0], + [1.0,0.5058823529411764,0.0], + [1.0,0.5098039215686274,0.0], + [1.0,0.5137254901960784,0.0], + [1.0,0.5176470588235293,0.0], + [1.0,0.5215686274509804,0.0], + [1.0,0.5254901960784314,0.0], + [1.0,0.5294117647058824,0.0], + [1.0,0.5333333333333333,0.0], + [1.0,0.5372549019607843,0.0], + [1.0,0.5411764705882353,0.0], + [1.0,0.5450980392156862,0.0], + [1.0,0.5490196078431373,0.0], + [1.0,0.5529411764705883,0.0], + [1.0,0.5568627450980392,0.0], + [1.0,0.5607843137254902,0.0], + [1.0,0.5647058823529412,0.0], + [1.0,0.5686274509803921,0.0], + [1.0,0.5725490196078431,0.0], + [1.0,0.5764705882352941,0.0], + [1.0,0.580392156862745,0.0], + [1.0,0.5843137254901961,0.0], + [1.0,0.5882352941176471,0.0], + [1.0,0.592156862745098,0.0], + [1.0,0.596078431372549,0.0], + [1.0,0.6,0.0], + [1.0,0.6039215686274509,0.0], + [1.0,0.6078431372549019,0.0], + [1.0,0.611764705882353,0.0], + [1.0,0.615686274509804,0.0], + [1.0,0.6196078431372549,0.0], + [1.0,0.6235294117647059,0.0], + [1.0,0.6274509803921569,0.0], + [1.0,0.6313725490196078,0.0], + [1.0,0.6352941176470588,0.0], + [1.0,0.6392156862745098,0.0], + [1.0,0.6431372549019607,0.0], + [1.0,0.6470588235294118,0.0], + [1.0,0.6509803921568628,0.0], + [1.0,0.6549019607843137,0.0], + [1.0,0.6588235294117647,0.0], + [1.0,0.6627450980392157,0.0], + [1.0,0.6666666666666666,0.0], + [1.0,0.6705882352941176,0.0], + [1.0,0.6745098039215687,0.0], + [1.0,0.6784313725490196,0.0], + [1.0,0.6823529411764706,0.0], + [1.0,0.6862745098039216,0.0], + [1.0,0.6901960784313725,0.0], + [1.0,0.6941176470588235,0.0], + [1.0,0.6980392156862745,0.0], + [1.0,0.7019607843137254,0.0], + [1.0,0.7058823529411764,0.0], + [1.0,0.7098039215686275,0.0], + [1.0,0.7137254901960784,0.0], + [1.0,0.7176470588235294,0.0], + [1.0,0.7215686274509804,0.0], + [1.0,0.7254901960784313,0.0], + [1.0,0.7294117647058823,0.0], + [1.0,0.7333333333333333,0.0], + [1.0,0.7372549019607844,0.0], + [1.0,0.7411764705882353,0.0], + [1.0,0.7450980392156863,0.0], + [1.0,0.7490196078431373,0.0], + [1.0,0.7529411764705882,0.0], + [1.0,0.7568627450980392,0.0], + [1.0,0.7607843137254902,0.0], + [1.0,0.7647058823529411,0.0], + [1.0,0.7686274509803921,0.0], + [1.0,0.7725490196078432,0.0], + [1.0,0.7764705882352941,0.0], + [1.0,0.7803921568627451,0.0], + [1.0,0.7843137254901961,0.0], + [1.0,0.788235294117647,0.0], + [1.0,0.792156862745098,0.0], + [1.0,0.796078431372549,0.0], + [1.0,0.8,0.0], + [1.0,0.803921568627451,0.0], + [1.0,0.807843137254902,0.0], + [1.0,0.8117647058823529,0.0], + [1.0,0.8156862745098039,0.0], + [1.0,0.8196078431372549,0.0], + [1.0,0.8235294117647058,0.0], + [1.0,0.8274509803921568,0.0], + [1.0,0.8313725490196078,0.0], + [1.0,0.8352941176470589,0.0], + [1.0,0.8392156862745098,0.0], + [1.0,0.8431372549019608,0.0], + [1.0,0.8470588235294118,0.0], + [1.0,0.8509803921568627,0.0], + [1.0,0.8549019607843137,0.0], + [1.0,0.8588235294117647,0.0], + [1.0,0.8627450980392157,0.0], + [1.0,0.8666666666666667,0.0], + [1.0,0.8705882352941177,0.0], + [1.0,0.8745098039215686,0.0], + [1.0,0.8784313725490196,0.0], + [1.0,0.8823529411764706,0.0], + [1.0,0.8862745098039215,0.0], + [1.0,0.8901960784313725,0.0], + [1.0,0.8941176470588235,0.0], + [1.0,0.8980392156862745,0.0], + [1.0,0.9019607843137255,0.0], + [1.0,0.9058823529411765,0.0], + [1.0,0.9098039215686274,0.0], + [1.0,0.9137254901960784,0.0], + [1.0,0.9176470588235294,0.0], + [1.0,0.9215686274509803,0.0], + [1.0,0.9254901960784314,0.0], + [1.0,0.9294117647058824,0.0], + [1.0,0.9333333333333333,0.0], + [1.0,0.9372549019607843,0.0], + [1.0,0.9411764705882353,0.0], + [1.0,0.9450980392156862,0.0], + [1.0,0.9490196078431372,0.0], + [1.0,0.9529411764705882,0.0], + [1.0,0.9568627450980391,0.0], + [1.0,0.9607843137254902,0.0], + [1.0,0.9647058823529412,0.0], + [1.0,0.9686274509803922,0.0], + [1.0,0.9725490196078431,0.0], + [1.0,0.9764705882352941,0.0], + [1.0,0.9803921568627451,0.0], + [1.0,0.984313725490196,0.0], + [1.0,0.9882352941176471,0.0], + [1.0,0.9921568627450981,0.0], + [1.0,0.996078431372549,0.0], + [1.0,1.0,0.0] ], + autumn_r: [ + [1.0,1.0,0.0], + [1.0,0.996078431372549,0.0], + [1.0,0.9921568627450981,0.0], + [1.0,0.9882352941176471,0.0], + [1.0,0.9843137254901961,0.0], + [1.0,0.9803921568627451,0.0], + [1.0,0.9764705882352941,0.0], + [1.0,0.9725490196078431,0.0], + [1.0,0.9686274509803922,0.0], + [1.0,0.9647058823529412,0.0], + [1.0,0.9607843137254902,0.0], + [1.0,0.9568627450980393,0.0], + [1.0,0.9529411764705882,0.0], + [1.0,0.9490196078431372,0.0], + [1.0,0.9450980392156862,0.0], + [1.0,0.9411764705882353,0.0], + [1.0,0.9372549019607843,0.0], + [1.0,0.9333333333333333,0.0], + [1.0,0.9294117647058824,0.0], + [1.0,0.9254901960784314,0.0], + [1.0,0.9215686274509804,0.0], + [1.0,0.9176470588235294,0.0], + [1.0,0.9137254901960784,0.0], + [1.0,0.9098039215686274,0.0], + [1.0,0.9058823529411765,0.0], + [1.0,0.9019607843137255,0.0], + [1.0,0.8980392156862745,0.0], + [1.0,0.8941176470588236,0.0], + [1.0,0.8901960784313725,0.0], + [1.0,0.8862745098039215,0.0], + [1.0,0.8823529411764706,0.0], + [1.0,0.8784313725490196,0.0], + [1.0,0.8745098039215686,0.0], + [1.0,0.8705882352941177,0.0], + [1.0,0.8666666666666667,0.0], + [1.0,0.8627450980392157,0.0], + [1.0,0.8588235294117648,0.0], + [1.0,0.8549019607843138,0.0], + [1.0,0.8509803921568627,0.0], + [1.0,0.8470588235294118,0.0], + [1.0,0.8431372549019608,0.0], + [1.0,0.8392156862745098,0.0], + [1.0,0.8352941176470589,0.0], + [1.0,0.8313725490196078,0.0], + [1.0,0.8274509803921568,0.0], + [1.0,0.8235294117647058,0.0], + [1.0,0.8196078431372549,0.0], + [1.0,0.8156862745098039,0.0], + [1.0,0.8117647058823529,0.0], + [1.0,0.807843137254902,0.0], + [1.0,0.803921568627451,0.0], + [1.0,0.8,0.0], + [1.0,0.7960784313725491,0.0], + [1.0,0.7921568627450981,0.0], + [1.0,0.788235294117647,0.0], + [1.0,0.7843137254901961,0.0], + [1.0,0.7803921568627451,0.0], + [1.0,0.7764705882352941,0.0], + [1.0,0.7725490196078432,0.0], + [1.0,0.7686274509803921,0.0], + [1.0,0.7647058823529411,0.0], + [1.0,0.7607843137254902,0.0], + [1.0,0.7568627450980392,0.0], + [1.0,0.7529411764705882,0.0], + [1.0,0.7490196078431373,0.0], + [1.0,0.7450980392156863,0.0], + [1.0,0.7411764705882353,0.0], + [1.0,0.7372549019607844,0.0], + [1.0,0.7333333333333334,0.0], + [1.0,0.7294117647058824,0.0], + [1.0,0.7254901960784313,0.0], + [1.0,0.7215686274509804,0.0], + [1.0,0.7176470588235294,0.0], + [1.0,0.7137254901960784,0.0], + [1.0,0.7098039215686275,0.0], + [1.0,0.7058823529411764,0.0], + [1.0,0.7019607843137254,0.0], + [1.0,0.6980392156862745,0.0], + [1.0,0.6941176470588235,0.0], + [1.0,0.6901960784313725,0.0], + [1.0,0.6862745098039216,0.0], + [1.0,0.6823529411764706,0.0], + [1.0,0.6784313725490196,0.0], + [1.0,0.6745098039215687,0.0], + [1.0,0.6705882352941177,0.0], + [1.0,0.6666666666666667,0.0], + [1.0,0.6627450980392157,0.0], + [1.0,0.6588235294117647,0.0], + [1.0,0.6549019607843137,0.0], + [1.0,0.6509803921568628,0.0], + [1.0,0.6470588235294118,0.0], + [1.0,0.6431372549019607,0.0], + [1.0,0.6392156862745098,0.0], + [1.0,0.6352941176470588,0.0], + [1.0,0.6313725490196078,0.0], + [1.0,0.6274509803921569,0.0], + [1.0,0.6235294117647059,0.0], + [1.0,0.6196078431372549,0.0], + [1.0,0.615686274509804,0.0], + [1.0,0.611764705882353,0.0], + [1.0,0.607843137254902,0.0], + [1.0,0.603921568627451,0.0], + [1.0,0.6,0.0], + [1.0,0.596078431372549,0.0], + [1.0,0.592156862745098,0.0], + [1.0,0.5882352941176471,0.0], + [1.0,0.5843137254901961,0.0], + [1.0,0.580392156862745,0.0], + [1.0,0.5764705882352941,0.0], + [1.0,0.5725490196078431,0.0], + [1.0,0.5686274509803921,0.0], + [1.0,0.5647058823529412,0.0], + [1.0,0.5607843137254902,0.0], + [1.0,0.5568627450980392,0.0], + [1.0,0.5529411764705883,0.0], + [1.0,0.5490196078431373,0.0], + [1.0,0.5450980392156863,0.0], + [1.0,0.5411764705882354,0.0], + [1.0,0.5372549019607843,0.0], + [1.0,0.5333333333333333,0.0], + [1.0,0.5294117647058824,0.0], + [1.0,0.5254901960784314,0.0], + [1.0,0.5215686274509804,0.0], + [1.0,0.5176470588235293,0.0], + [1.0,0.5137254901960784,0.0], + [1.0,0.5098039215686274,0.0], + [1.0,0.5058823529411764,0.0], + [1.0,0.5019607843137255,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.49411764705882355,0.0], + [1.0,0.4901960784313726,0.0], + [1.0,0.4862745098039216,0.0], + [1.0,0.48235294117647065,0.0], + [1.0,0.4784313725490196,0.0], + [1.0,0.4745098039215686,0.0], + [1.0,0.47058823529411764,0.0], + [1.0,0.4666666666666667,0.0], + [1.0,0.4627450980392157,0.0], + [1.0,0.45882352941176474,0.0], + [1.0,0.4549019607843138,0.0], + [1.0,0.4509803921568627,0.0], + [1.0,0.44705882352941173,0.0], + [1.0,0.44313725490196076,0.0], + [1.0,0.4392156862745098,0.0], + [1.0,0.43529411764705883,0.0], + [1.0,0.43137254901960786,0.0], + [1.0,0.4274509803921569,0.0], + [1.0,0.42352941176470593,0.0], + [1.0,0.41960784313725497,0.0], + [1.0,0.4156862745098039,0.0], + [1.0,0.4117647058823529,0.0], + [1.0,0.40784313725490196,0.0], + [1.0,0.403921568627451,0.0], + [1.0,0.4,0.0], + [1.0,0.39607843137254906,0.0], + [1.0,0.3921568627450981,0.0], + [1.0,0.388235294117647,0.0], + [1.0,0.38431372549019605,0.0], + [1.0,0.3803921568627451,0.0], + [1.0,0.3764705882352941,0.0], + [1.0,0.37254901960784315,0.0], + [1.0,0.3686274509803922,0.0], + [1.0,0.3647058823529412,0.0], + [1.0,0.36078431372549025,0.0], + [1.0,0.3568627450980393,0.0], + [1.0,0.3529411764705882,0.0], + [1.0,0.34901960784313724,0.0], + [1.0,0.34509803921568627,0.0], + [1.0,0.3411764705882353,0.0], + [1.0,0.33725490196078434,0.0], + [1.0,0.33333333333333337,0.0], + [1.0,0.3294117647058824,0.0], + [1.0,0.3254901960784313,0.0], + [1.0,0.32156862745098036,0.0], + [1.0,0.3176470588235294,0.0], + [1.0,0.3137254901960784,0.0], + [1.0,0.30980392156862746,0.0], + [1.0,0.3058823529411765,0.0], + [1.0,0.3019607843137255,0.0], + [1.0,0.29803921568627456,0.0], + [1.0,0.2941176470588236,0.0], + [1.0,0.2901960784313725,0.0], + [1.0,0.28627450980392155,0.0], + [1.0,0.2823529411764706,0.0], + [1.0,0.2784313725490196,0.0], + [1.0,0.27450980392156865,0.0], + [1.0,0.2705882352941177,0.0], + [1.0,0.2666666666666667,0.0], + [1.0,0.26274509803921564,0.0], + [1.0,0.2588235294117647,0.0], + [1.0,0.2549019607843137,0.0], + [1.0,0.25098039215686274,0.0], + [1.0,0.24705882352941178,0.0], + [1.0,0.2431372549019608,0.0], + [1.0,0.23921568627450984,0.0], + [1.0,0.23529411764705888,0.0], + [1.0,0.2313725490196079,0.0], + [1.0,0.22745098039215683,0.0], + [1.0,0.22352941176470587,0.0], + [1.0,0.2196078431372549,0.0], + [1.0,0.21568627450980393,0.0], + [1.0,0.21176470588235297,0.0], + [1.0,0.207843137254902,0.0], + [1.0,0.20392156862745103,0.0], + [1.0,0.19999999999999996,0.0], + [1.0,0.196078431372549,0.0], + [1.0,0.19215686274509802,0.0], + [1.0,0.18823529411764706,0.0], + [1.0,0.1843137254901961,0.0], + [1.0,0.18039215686274512,0.0], + [1.0,0.17647058823529416,0.0], + [1.0,0.1725490196078432,0.0], + [1.0,0.16862745098039222,0.0], + [1.0,0.16470588235294115,0.0], + [1.0,0.16078431372549018,0.0], + [1.0,0.1568627450980392,0.0], + [1.0,0.15294117647058825,0.0], + [1.0,0.14901960784313728,0.0], + [1.0,0.14509803921568631,0.0], + [1.0,0.14117647058823535,0.0], + [1.0,0.13725490196078427,0.0], + [1.0,0.1333333333333333,0.0], + [1.0,0.12941176470588234,0.0], + [1.0,0.12549019607843137,0.0], + [1.0,0.1215686274509804,0.0], + [1.0,0.11764705882352944,0.0], + [1.0,0.11372549019607847,0.0], + [1.0,0.1098039215686275,0.0], + [1.0,0.10588235294117654,0.0], + [1.0,0.10196078431372546,0.0], + [1.0,0.0980392156862745,0.0], + [1.0,0.09411764705882353,0.0], + [1.0,0.09019607843137256,0.0], + [1.0,0.0862745098039216,0.0], + [1.0,0.08235294117647063,0.0], + [1.0,0.07843137254901966,0.0], + [1.0,0.07450980392156858,0.0], + [1.0,0.07058823529411762,0.0], + [1.0,0.06666666666666665,0.0], + [1.0,0.06274509803921569,0.0], + [1.0,0.05882352941176472,0.0], + [1.0,0.05490196078431375,0.0], + [1.0,0.050980392156862786,0.0], + [1.0,0.04705882352941182,0.0], + [1.0,0.04313725490196085,0.0], + [1.0,0.039215686274509776,0.0], + [1.0,0.03529411764705881,0.0], + [1.0,0.03137254901960784,0.0], + [1.0,0.027450980392156876,0.0], + [1.0,0.02352941176470591,0.0], + [1.0,0.019607843137254943,0.0], + [1.0,0.015686274509803977,0.0], + [1.0,0.0117647058823529,0.0], + [1.0,0.007843137254901933,0.0], + [1.0,0.0039215686274509665,0.0], + [1.0,0.0,0.0] ], + binary: [ + [1.0,1.0,1.0], + [0.996078431372549,0.996078431372549,0.996078431372549], + [0.9921568627450981,0.9921568627450981,0.9921568627450981], + [0.9882352941176471,0.9882352941176471,0.9882352941176471], + [0.9843137254901961,0.9843137254901961,0.9843137254901961], + [0.9803921568627451,0.9803921568627451,0.9803921568627451], + [0.9764705882352941,0.9764705882352941,0.9764705882352941], + [0.9725490196078431,0.9725490196078431,0.9725490196078431], + [0.9686274509803922,0.9686274509803922,0.9686274509803922], + [0.9647058823529412,0.9647058823529412,0.9647058823529412], + [0.9607843137254902,0.9607843137254902,0.9607843137254902], + [0.9568627450980393,0.9568627450980393,0.9568627450980393], + [0.9529411764705882,0.9529411764705882,0.9529411764705882], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9450980392156862,0.9450980392156862,0.9450980392156862], + [0.9411764705882353,0.9411764705882353,0.9411764705882353], + [0.9372549019607843,0.9372549019607843,0.9372549019607843], + [0.9333333333333333,0.9333333333333333,0.9333333333333333], + [0.9294117647058824,0.9294117647058824,0.9294117647058824], + [0.9254901960784314,0.9254901960784314,0.9254901960784314], + [0.9215686274509804,0.9215686274509804,0.9215686274509804], + [0.9176470588235294,0.9176470588235294,0.9176470588235294], + [0.9137254901960784,0.9137254901960784,0.9137254901960784], + [0.9098039215686274,0.9098039215686274,0.9098039215686274], + [0.9058823529411765,0.9058823529411765,0.9058823529411765], + [0.9019607843137255,0.9019607843137255,0.9019607843137255], + [0.8980392156862745,0.8980392156862745,0.8980392156862745], + [0.8941176470588236,0.8941176470588236,0.8941176470588236], + [0.8901960784313725,0.8901960784313725,0.8901960784313725], + [0.8862745098039215,0.8862745098039215,0.8862745098039215], + [0.8823529411764706,0.8823529411764706,0.8823529411764706], + [0.8784313725490196,0.8784313725490196,0.8784313725490196], + [0.8745098039215686,0.8745098039215686,0.8745098039215686], + [0.8705882352941177,0.8705882352941177,0.8705882352941177], + [0.8666666666666667,0.8666666666666667,0.8666666666666667], + [0.8627450980392157,0.8627450980392157,0.8627450980392157], + [0.8588235294117648,0.8588235294117648,0.8588235294117648], + [0.8549019607843138,0.8549019607843138,0.8549019607843138], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8470588235294118,0.8470588235294118,0.8470588235294118], + [0.8431372549019608,0.8431372549019608,0.8431372549019608], + [0.8392156862745098,0.8392156862745098,0.8392156862745098], + [0.8352941176470589,0.8352941176470589,0.8352941176470589], + [0.8313725490196078,0.8313725490196078,0.8313725490196078], + [0.8274509803921568,0.8274509803921568,0.8274509803921568], + [0.8235294117647058,0.8235294117647058,0.8235294117647058], + [0.8196078431372549,0.8196078431372549,0.8196078431372549], + [0.8156862745098039,0.8156862745098039,0.8156862745098039], + [0.8117647058823529,0.8117647058823529,0.8117647058823529], + [0.807843137254902,0.807843137254902,0.807843137254902], + [0.803921568627451,0.803921568627451,0.803921568627451], + [0.8,0.8,0.8], + [0.7960784313725491,0.7960784313725491,0.7960784313725491], + [0.7921568627450981,0.7921568627450981,0.7921568627450981], + [0.788235294117647,0.788235294117647,0.788235294117647], + [0.7843137254901961,0.7843137254901961,0.7843137254901961], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7764705882352941,0.7764705882352941,0.7764705882352941], + [0.7725490196078432,0.7725490196078432,0.7725490196078432], + [0.7686274509803921,0.7686274509803921,0.7686274509803921], + [0.7647058823529411,0.7647058823529411,0.7647058823529411], + [0.7607843137254902,0.7607843137254902,0.7607843137254902], + [0.7568627450980392,0.7568627450980392,0.7568627450980392], + [0.7529411764705882,0.7529411764705882,0.7529411764705882], + [0.7490196078431373,0.7490196078431373,0.7490196078431373], + [0.7450980392156863,0.7450980392156863,0.7450980392156863], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7372549019607844,0.7372549019607844,0.7372549019607844], + [0.7333333333333334,0.7333333333333334,0.7333333333333334], + [0.7294117647058824,0.7294117647058824,0.7294117647058824], + [0.7254901960784313,0.7254901960784313,0.7254901960784313], + [0.7215686274509804,0.7215686274509804,0.7215686274509804], + [0.7176470588235294,0.7176470588235294,0.7176470588235294], + [0.7137254901960784,0.7137254901960784,0.7137254901960784], + [0.7098039215686275,0.7098039215686275,0.7098039215686275], + [0.7058823529411764,0.7058823529411764,0.7058823529411764], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.6980392156862745,0.6980392156862745,0.6980392156862745], + [0.6941176470588235,0.6941176470588235,0.6941176470588235], + [0.6901960784313725,0.6901960784313725,0.6901960784313725], + [0.6862745098039216,0.6862745098039216,0.6862745098039216], + [0.6823529411764706,0.6823529411764706,0.6823529411764706], + [0.6784313725490196,0.6784313725490196,0.6784313725490196], + [0.6745098039215687,0.6745098039215687,0.6745098039215687], + [0.6705882352941177,0.6705882352941177,0.6705882352941177], + [0.6666666666666667,0.6666666666666667,0.6666666666666667], + [0.6627450980392157,0.6627450980392157,0.6627450980392157], + [0.6588235294117647,0.6588235294117647,0.6588235294117647], + [0.6549019607843137,0.6549019607843137,0.6549019607843137], + [0.6509803921568628,0.6509803921568628,0.6509803921568628], + [0.6470588235294118,0.6470588235294118,0.6470588235294118], + [0.6431372549019607,0.6431372549019607,0.6431372549019607], + [0.6392156862745098,0.6392156862745098,0.6392156862745098], + [0.6352941176470588,0.6352941176470588,0.6352941176470588], + [0.6313725490196078,0.6313725490196078,0.6313725490196078], + [0.6274509803921569,0.6274509803921569,0.6274509803921569], + [0.6235294117647059,0.6235294117647059,0.6235294117647059], + [0.6196078431372549,0.6196078431372549,0.6196078431372549], + [0.615686274509804,0.615686274509804,0.615686274509804], + [0.611764705882353,0.611764705882353,0.611764705882353], + [0.607843137254902,0.607843137254902,0.607843137254902], + [0.603921568627451,0.603921568627451,0.603921568627451], + [0.6,0.6,0.6], + [0.596078431372549,0.596078431372549,0.596078431372549], + [0.592156862745098,0.592156862745098,0.592156862745098], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5843137254901961,0.5843137254901961,0.5843137254901961], + [0.580392156862745,0.580392156862745,0.580392156862745], + [0.5764705882352941,0.5764705882352941,0.5764705882352941], + [0.5725490196078431,0.5725490196078431,0.5725490196078431], + [0.5686274509803921,0.5686274509803921,0.5686274509803921], + [0.5647058823529412,0.5647058823529412,0.5647058823529412], + [0.5607843137254902,0.5607843137254902,0.5607843137254902], + [0.5568627450980392,0.5568627450980392,0.5568627450980392], + [0.5529411764705883,0.5529411764705883,0.5529411764705883], + [0.5490196078431373,0.5490196078431373,0.5490196078431373], + [0.5450980392156863,0.5450980392156863,0.5450980392156863], + [0.5411764705882354,0.5411764705882354,0.5411764705882354], + [0.5372549019607843,0.5372549019607843,0.5372549019607843], + [0.5333333333333333,0.5333333333333333,0.5333333333333333], + [0.5294117647058824,0.5294117647058824,0.5294117647058824], + [0.5254901960784314,0.5254901960784314,0.5254901960784314], + [0.5215686274509804,0.5215686274509804,0.5215686274509804], + [0.5176470588235293,0.5176470588235293,0.5176470588235293], + [0.5137254901960784,0.5137254901960784,0.5137254901960784], + [0.5098039215686274,0.5098039215686274,0.5098039215686274], + [0.5058823529411764,0.5058823529411764,0.5058823529411764], + [0.5019607843137255,0.5019607843137255,0.5019607843137255], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.49411764705882355,0.49411764705882355,0.49411764705882355], + [0.4901960784313726,0.4901960784313726,0.4901960784313726], + [0.4862745098039216,0.4862745098039216,0.4862745098039216], + [0.48235294117647065,0.48235294117647065,0.48235294117647065], + [0.4784313725490196,0.4784313725490196,0.4784313725490196], + [0.4745098039215686,0.4745098039215686,0.4745098039215686], + [0.47058823529411764,0.47058823529411764,0.47058823529411764], + [0.4666666666666667,0.4666666666666667,0.4666666666666667], + [0.4627450980392157,0.4627450980392157,0.4627450980392157], + [0.45882352941176474,0.45882352941176474,0.45882352941176474], + [0.4549019607843138,0.4549019607843138,0.4549019607843138], + [0.4509803921568627,0.4509803921568627,0.4509803921568627], + [0.44705882352941173,0.44705882352941173,0.44705882352941173], + [0.44313725490196076,0.44313725490196076,0.44313725490196076], + [0.4392156862745098,0.4392156862745098,0.4392156862745098], + [0.43529411764705883,0.43529411764705883,0.43529411764705883], + [0.43137254901960786,0.43137254901960786,0.43137254901960786], + [0.4274509803921569,0.4274509803921569,0.4274509803921569], + [0.42352941176470593,0.42352941176470593,0.42352941176470593], + [0.41960784313725497,0.41960784313725497,0.41960784313725497], + [0.4156862745098039,0.4156862745098039,0.4156862745098039], + [0.4117647058823529,0.4117647058823529,0.4117647058823529], + [0.40784313725490196,0.40784313725490196,0.40784313725490196], + [0.403921568627451,0.403921568627451,0.403921568627451], + [0.4,0.4,0.4], + [0.39607843137254906,0.39607843137254906,0.39607843137254906], + [0.3921568627450981,0.3921568627450981,0.3921568627450981], + [0.388235294117647,0.388235294117647,0.388235294117647], + [0.38431372549019605,0.38431372549019605,0.38431372549019605], + [0.3803921568627451,0.3803921568627451,0.3803921568627451], + [0.3764705882352941,0.3764705882352941,0.3764705882352941], + [0.37254901960784315,0.37254901960784315,0.37254901960784315], + [0.3686274509803922,0.3686274509803922,0.3686274509803922], + [0.3647058823529412,0.3647058823529412,0.3647058823529412], + [0.36078431372549025,0.36078431372549025,0.36078431372549025], + [0.3568627450980393,0.3568627450980393,0.3568627450980393], + [0.3529411764705882,0.3529411764705882,0.3529411764705882], + [0.34901960784313724,0.34901960784313724,0.34901960784313724], + [0.34509803921568627,0.34509803921568627,0.34509803921568627], + [0.3411764705882353,0.3411764705882353,0.3411764705882353], + [0.33725490196078434,0.33725490196078434,0.33725490196078434], + [0.33333333333333337,0.33333333333333337,0.33333333333333337], + [0.3294117647058824,0.3294117647058824,0.3294117647058824], + [0.3254901960784313,0.3254901960784313,0.3254901960784313], + [0.32156862745098036,0.32156862745098036,0.32156862745098036], + [0.3176470588235294,0.3176470588235294,0.3176470588235294], + [0.3137254901960784,0.3137254901960784,0.3137254901960784], + [0.30980392156862746,0.30980392156862746,0.30980392156862746], + [0.3058823529411765,0.3058823529411765,0.3058823529411765], + [0.3019607843137255,0.3019607843137255,0.3019607843137255], + [0.29803921568627456,0.29803921568627456,0.29803921568627456], + [0.2941176470588236,0.2941176470588236,0.2941176470588236], + [0.2901960784313725,0.2901960784313725,0.2901960784313725], + [0.28627450980392155,0.28627450980392155,0.28627450980392155], + [0.2823529411764706,0.2823529411764706,0.2823529411764706], + [0.2784313725490196,0.2784313725490196,0.2784313725490196], + [0.27450980392156865,0.27450980392156865,0.27450980392156865], + [0.2705882352941177,0.2705882352941177,0.2705882352941177], + [0.2666666666666667,0.2666666666666667,0.2666666666666667], + [0.26274509803921564,0.26274509803921564,0.26274509803921564], + [0.2588235294117647,0.2588235294117647,0.2588235294117647], + [0.2549019607843137,0.2549019607843137,0.2549019607843137], + [0.25098039215686274,0.25098039215686274,0.25098039215686274], + [0.24705882352941178,0.24705882352941178,0.24705882352941178], + [0.2431372549019608,0.2431372549019608,0.2431372549019608], + [0.23921568627450984,0.23921568627450984,0.23921568627450984], + [0.23529411764705888,0.23529411764705888,0.23529411764705888], + [0.2313725490196079,0.2313725490196079,0.2313725490196079], + [0.22745098039215683,0.22745098039215683,0.22745098039215683], + [0.22352941176470587,0.22352941176470587,0.22352941176470587], + [0.2196078431372549,0.2196078431372549,0.2196078431372549], + [0.21568627450980393,0.21568627450980393,0.21568627450980393], + [0.21176470588235297,0.21176470588235297,0.21176470588235297], + [0.207843137254902,0.207843137254902,0.207843137254902], + [0.20392156862745103,0.20392156862745103,0.20392156862745103], + [0.19999999999999996,0.19999999999999996,0.19999999999999996], + [0.196078431372549,0.196078431372549,0.196078431372549], + [0.19215686274509802,0.19215686274509802,0.19215686274509802], + [0.18823529411764706,0.18823529411764706,0.18823529411764706], + [0.1843137254901961,0.1843137254901961,0.1843137254901961], + [0.18039215686274512,0.18039215686274512,0.18039215686274512], + [0.17647058823529416,0.17647058823529416,0.17647058823529416], + [0.1725490196078432,0.1725490196078432,0.1725490196078432], + [0.16862745098039222,0.16862745098039222,0.16862745098039222], + [0.16470588235294115,0.16470588235294115,0.16470588235294115], + [0.16078431372549018,0.16078431372549018,0.16078431372549018], + [0.1568627450980392,0.1568627450980392,0.1568627450980392], + [0.15294117647058825,0.15294117647058825,0.15294117647058825], + [0.14901960784313728,0.14901960784313728,0.14901960784313728], + [0.14509803921568631,0.14509803921568631,0.14509803921568631], + [0.14117647058823535,0.14117647058823535,0.14117647058823535], + [0.13725490196078427,0.13725490196078427,0.13725490196078427], + [0.1333333333333333,0.1333333333333333,0.1333333333333333], + [0.12941176470588234,0.12941176470588234,0.12941176470588234], + [0.12549019607843137,0.12549019607843137,0.12549019607843137], + [0.1215686274509804,0.1215686274509804,0.1215686274509804], + [0.11764705882352944,0.11764705882352944,0.11764705882352944], + [0.11372549019607847,0.11372549019607847,0.11372549019607847], + [0.1098039215686275,0.1098039215686275,0.1098039215686275], + [0.10588235294117654,0.10588235294117654,0.10588235294117654], + [0.10196078431372546,0.10196078431372546,0.10196078431372546], + [0.0980392156862745,0.0980392156862745,0.0980392156862745], + [0.09411764705882353,0.09411764705882353,0.09411764705882353], + [0.09019607843137256,0.09019607843137256,0.09019607843137256], + [0.0862745098039216,0.0862745098039216,0.0862745098039216], + [0.08235294117647063,0.08235294117647063,0.08235294117647063], + [0.07843137254901966,0.07843137254901966,0.07843137254901966], + [0.07450980392156858,0.07450980392156858,0.07450980392156858], + [0.07058823529411762,0.07058823529411762,0.07058823529411762], + [0.06666666666666665,0.06666666666666665,0.06666666666666665], + [0.06274509803921569,0.06274509803921569,0.06274509803921569], + [0.05882352941176472,0.05882352941176472,0.05882352941176472], + [0.05490196078431375,0.05490196078431375,0.05490196078431375], + [0.050980392156862786,0.050980392156862786,0.050980392156862786], + [0.04705882352941182,0.04705882352941182,0.04705882352941182], + [0.04313725490196085,0.04313725490196085,0.04313725490196085], + [0.039215686274509776,0.039215686274509776,0.039215686274509776], + [0.03529411764705881,0.03529411764705881,0.03529411764705881], + [0.03137254901960784,0.03137254901960784,0.03137254901960784], + [0.027450980392156876,0.027450980392156876,0.027450980392156876], + [0.02352941176470591,0.02352941176470591,0.02352941176470591], + [0.019607843137254943,0.019607843137254943,0.019607843137254943], + [0.015686274509803977,0.015686274509803977,0.015686274509803977], + [0.0117647058823529,0.0117647058823529,0.0117647058823529], + [0.007843137254901933,0.007843137254901933,0.007843137254901933], + [0.0039215686274509665,0.0039215686274509665,0.0039215686274509665], + [0.0,0.0,0.0] ], + binary_r: [ + [0.0,0.0,0.0], + [0.00392156862745098,0.00392156862745098,0.00392156862745098], + [0.00784313725490196,0.00784313725490196,0.00784313725490196], + [0.011764705882352941,0.011764705882352941,0.011764705882352941], + [0.01568627450980392,0.01568627450980392,0.01568627450980392], + [0.0196078431372549,0.0196078431372549,0.0196078431372549], + [0.023529411764705882,0.023529411764705882,0.023529411764705882], + [0.027450980392156862,0.027450980392156862,0.027450980392156862], + [0.03137254901960784,0.03137254901960784,0.03137254901960784], + [0.03529411764705882,0.03529411764705882,0.03529411764705882], + [0.0392156862745098,0.0392156862745098,0.0392156862745098], + [0.043137254901960784,0.043137254901960784,0.043137254901960784], + [0.047058823529411764,0.047058823529411764,0.047058823529411764], + [0.050980392156862744,0.050980392156862744,0.050980392156862744], + [0.054901960784313725,0.054901960784313725,0.054901960784313725], + [0.058823529411764705,0.058823529411764705,0.058823529411764705], + [0.06274509803921569,0.06274509803921569,0.06274509803921569], + [0.06666666666666667,0.06666666666666667,0.06666666666666667], + [0.07058823529411765,0.07058823529411765,0.07058823529411765], + [0.07450980392156863,0.07450980392156863,0.07450980392156863], + [0.0784313725490196,0.0784313725490196,0.0784313725490196], + [0.08235294117647059,0.08235294117647059,0.08235294117647059], + [0.08627450980392157,0.08627450980392157,0.08627450980392157], + [0.09019607843137255,0.09019607843137255,0.09019607843137255], + [0.09411764705882353,0.09411764705882353,0.09411764705882353], + [0.09803921568627451,0.09803921568627451,0.09803921568627451], + [0.10196078431372549,0.10196078431372549,0.10196078431372549], + [0.10588235294117647,0.10588235294117647,0.10588235294117647], + [0.10980392156862745,0.10980392156862745,0.10980392156862745], + [0.11372549019607843,0.11372549019607843,0.11372549019607843], + [0.11764705882352941,0.11764705882352941,0.11764705882352941], + [0.12156862745098039,0.12156862745098039,0.12156862745098039], + [0.12549019607843137,0.12549019607843137,0.12549019607843137], + [0.12941176470588234,0.12941176470588234,0.12941176470588234], + [0.13333333333333333,0.13333333333333333,0.13333333333333333], + [0.13725490196078433,0.13725490196078433,0.13725490196078433], + [0.1411764705882353,0.1411764705882353,0.1411764705882353], + [0.14509803921568626,0.14509803921568626,0.14509803921568626], + [0.14901960784313725,0.14901960784313725,0.14901960784313725], + [0.15294117647058825,0.15294117647058825,0.15294117647058825], + [0.1568627450980392,0.1568627450980392,0.1568627450980392], + [0.16078431372549018,0.16078431372549018,0.16078431372549018], + [0.16470588235294117,0.16470588235294117,0.16470588235294117], + [0.16862745098039217,0.16862745098039217,0.16862745098039217], + [0.17254901960784313,0.17254901960784313,0.17254901960784313], + [0.1764705882352941,0.1764705882352941,0.1764705882352941], + [0.1803921568627451,0.1803921568627451,0.1803921568627451], + [0.1843137254901961,0.1843137254901961,0.1843137254901961], + [0.18823529411764706,0.18823529411764706,0.18823529411764706], + [0.19215686274509802,0.19215686274509802,0.19215686274509802], + [0.19607843137254902,0.19607843137254902,0.19607843137254902], + [0.2,0.2,0.2], + [0.20392156862745098,0.20392156862745098,0.20392156862745098], + [0.20784313725490194,0.20784313725490194,0.20784313725490194], + [0.21176470588235294,0.21176470588235294,0.21176470588235294], + [0.21568627450980393,0.21568627450980393,0.21568627450980393], + [0.2196078431372549,0.2196078431372549,0.2196078431372549], + [0.22352941176470587,0.22352941176470587,0.22352941176470587], + [0.22745098039215686,0.22745098039215686,0.22745098039215686], + [0.23137254901960785,0.23137254901960785,0.23137254901960785], + [0.23529411764705882,0.23529411764705882,0.23529411764705882], + [0.2392156862745098,0.2392156862745098,0.2392156862745098], + [0.24313725490196078,0.24313725490196078,0.24313725490196078], + [0.24705882352941178,0.24705882352941178,0.24705882352941178], + [0.25098039215686274,0.25098039215686274,0.25098039215686274], + [0.2549019607843137,0.2549019607843137,0.2549019607843137], + [0.2588235294117647,0.2588235294117647,0.2588235294117647], + [0.2627450980392157,0.2627450980392157,0.2627450980392157], + [0.26666666666666666,0.26666666666666666,0.26666666666666666], + [0.27058823529411763,0.27058823529411763,0.27058823529411763], + [0.27450980392156865,0.27450980392156865,0.27450980392156865], + [0.2784313725490196,0.2784313725490196,0.2784313725490196], + [0.2823529411764706,0.2823529411764706,0.2823529411764706], + [0.28627450980392155,0.28627450980392155,0.28627450980392155], + [0.2901960784313725,0.2901960784313725,0.2901960784313725], + [0.29411764705882354,0.29411764705882354,0.29411764705882354], + [0.2980392156862745,0.2980392156862745,0.2980392156862745], + [0.30196078431372547,0.30196078431372547,0.30196078431372547], + [0.3058823529411765,0.3058823529411765,0.3058823529411765], + [0.30980392156862746,0.30980392156862746,0.30980392156862746], + [0.3137254901960784,0.3137254901960784,0.3137254901960784], + [0.3176470588235294,0.3176470588235294,0.3176470588235294], + [0.32156862745098036,0.32156862745098036,0.32156862745098036], + [0.3254901960784314,0.3254901960784314,0.3254901960784314], + [0.32941176470588235,0.32941176470588235,0.32941176470588235], + [0.3333333333333333,0.3333333333333333,0.3333333333333333], + [0.33725490196078434,0.33725490196078434,0.33725490196078434], + [0.3411764705882353,0.3411764705882353,0.3411764705882353], + [0.34509803921568627,0.34509803921568627,0.34509803921568627], + [0.34901960784313724,0.34901960784313724,0.34901960784313724], + [0.3529411764705882,0.3529411764705882,0.3529411764705882], + [0.3568627450980392,0.3568627450980392,0.3568627450980392], + [0.3607843137254902,0.3607843137254902,0.3607843137254902], + [0.36470588235294116,0.36470588235294116,0.36470588235294116], + [0.3686274509803922,0.3686274509803922,0.3686274509803922], + [0.37254901960784315,0.37254901960784315,0.37254901960784315], + [0.3764705882352941,0.3764705882352941,0.3764705882352941], + [0.3803921568627451,0.3803921568627451,0.3803921568627451], + [0.38431372549019605,0.38431372549019605,0.38431372549019605], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.39215686274509803,0.39215686274509803,0.39215686274509803], + [0.396078431372549,0.396078431372549,0.396078431372549], + [0.4,0.4,0.4], + [0.403921568627451,0.403921568627451,0.403921568627451], + [0.40784313725490196,0.40784313725490196,0.40784313725490196], + [0.4117647058823529,0.4117647058823529,0.4117647058823529], + [0.4156862745098039,0.4156862745098039,0.4156862745098039], + [0.4196078431372549,0.4196078431372549,0.4196078431372549], + [0.4235294117647059,0.4235294117647059,0.4235294117647059], + [0.42745098039215684,0.42745098039215684,0.42745098039215684], + [0.43137254901960786,0.43137254901960786,0.43137254901960786], + [0.43529411764705883,0.43529411764705883,0.43529411764705883], + [0.4392156862745098,0.4392156862745098,0.4392156862745098], + [0.44313725490196076,0.44313725490196076,0.44313725490196076], + [0.44705882352941173,0.44705882352941173,0.44705882352941173], + [0.45098039215686275,0.45098039215686275,0.45098039215686275], + [0.4549019607843137,0.4549019607843137,0.4549019607843137], + [0.4588235294117647,0.4588235294117647,0.4588235294117647], + [0.4627450980392157,0.4627450980392157,0.4627450980392157], + [0.4666666666666667,0.4666666666666667,0.4666666666666667], + [0.47058823529411764,0.47058823529411764,0.47058823529411764], + [0.4745098039215686,0.4745098039215686,0.4745098039215686], + [0.4784313725490196,0.4784313725490196,0.4784313725490196], + [0.4823529411764706,0.4823529411764706,0.4823529411764706], + [0.48627450980392156,0.48627450980392156,0.48627450980392156], + [0.49019607843137253,0.49019607843137253,0.49019607843137253], + [0.49411764705882355,0.49411764705882355,0.49411764705882355], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.5019607843137255,0.5019607843137255,0.5019607843137255], + [0.5058823529411764,0.5058823529411764,0.5058823529411764], + [0.5098039215686274,0.5098039215686274,0.5098039215686274], + [0.5137254901960784,0.5137254901960784,0.5137254901960784], + [0.5176470588235293,0.5176470588235293,0.5176470588235293], + [0.5215686274509804,0.5215686274509804,0.5215686274509804], + [0.5254901960784314,0.5254901960784314,0.5254901960784314], + [0.5294117647058824,0.5294117647058824,0.5294117647058824], + [0.5333333333333333,0.5333333333333333,0.5333333333333333], + [0.5372549019607843,0.5372549019607843,0.5372549019607843], + [0.5411764705882353,0.5411764705882353,0.5411764705882353], + [0.5450980392156862,0.5450980392156862,0.5450980392156862], + [0.5490196078431373,0.5490196078431373,0.5490196078431373], + [0.5529411764705883,0.5529411764705883,0.5529411764705883], + [0.5568627450980392,0.5568627450980392,0.5568627450980392], + [0.5607843137254902,0.5607843137254902,0.5607843137254902], + [0.5647058823529412,0.5647058823529412,0.5647058823529412], + [0.5686274509803921,0.5686274509803921,0.5686274509803921], + [0.5725490196078431,0.5725490196078431,0.5725490196078431], + [0.5764705882352941,0.5764705882352941,0.5764705882352941], + [0.580392156862745,0.580392156862745,0.580392156862745], + [0.5843137254901961,0.5843137254901961,0.5843137254901961], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.592156862745098,0.592156862745098,0.592156862745098], + [0.596078431372549,0.596078431372549,0.596078431372549], + [0.6,0.6,0.6], + [0.6039215686274509,0.6039215686274509,0.6039215686274509], + [0.6078431372549019,0.6078431372549019,0.6078431372549019], + [0.611764705882353,0.611764705882353,0.611764705882353], + [0.615686274509804,0.615686274509804,0.615686274509804], + [0.6196078431372549,0.6196078431372549,0.6196078431372549], + [0.6235294117647059,0.6235294117647059,0.6235294117647059], + [0.6274509803921569,0.6274509803921569,0.6274509803921569], + [0.6313725490196078,0.6313725490196078,0.6313725490196078], + [0.6352941176470588,0.6352941176470588,0.6352941176470588], + [0.6392156862745098,0.6392156862745098,0.6392156862745098], + [0.6431372549019607,0.6431372549019607,0.6431372549019607], + [0.6470588235294118,0.6470588235294118,0.6470588235294118], + [0.6509803921568628,0.6509803921568628,0.6509803921568628], + [0.6549019607843137,0.6549019607843137,0.6549019607843137], + [0.6588235294117647,0.6588235294117647,0.6588235294117647], + [0.6627450980392157,0.6627450980392157,0.6627450980392157], + [0.6666666666666666,0.6666666666666666,0.6666666666666666], + [0.6705882352941176,0.6705882352941176,0.6705882352941176], + [0.6745098039215687,0.6745098039215687,0.6745098039215687], + [0.6784313725490196,0.6784313725490196,0.6784313725490196], + [0.6823529411764706,0.6823529411764706,0.6823529411764706], + [0.6862745098039216,0.6862745098039216,0.6862745098039216], + [0.6901960784313725,0.6901960784313725,0.6901960784313725], + [0.6941176470588235,0.6941176470588235,0.6941176470588235], + [0.6980392156862745,0.6980392156862745,0.6980392156862745], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7058823529411764,0.7058823529411764,0.7058823529411764], + [0.7098039215686275,0.7098039215686275,0.7098039215686275], + [0.7137254901960784,0.7137254901960784,0.7137254901960784], + [0.7176470588235294,0.7176470588235294,0.7176470588235294], + [0.7215686274509804,0.7215686274509804,0.7215686274509804], + [0.7254901960784313,0.7254901960784313,0.7254901960784313], + [0.7294117647058823,0.7294117647058823,0.7294117647058823], + [0.7333333333333333,0.7333333333333333,0.7333333333333333], + [0.7372549019607844,0.7372549019607844,0.7372549019607844], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7450980392156863,0.7450980392156863,0.7450980392156863], + [0.7490196078431373,0.7490196078431373,0.7490196078431373], + [0.7529411764705882,0.7529411764705882,0.7529411764705882], + [0.7568627450980392,0.7568627450980392,0.7568627450980392], + [0.7607843137254902,0.7607843137254902,0.7607843137254902], + [0.7647058823529411,0.7647058823529411,0.7647058823529411], + [0.7686274509803921,0.7686274509803921,0.7686274509803921], + [0.7725490196078432,0.7725490196078432,0.7725490196078432], + [0.7764705882352941,0.7764705882352941,0.7764705882352941], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7843137254901961,0.7843137254901961,0.7843137254901961], + [0.788235294117647,0.788235294117647,0.788235294117647], + [0.792156862745098,0.792156862745098,0.792156862745098], + [0.796078431372549,0.796078431372549,0.796078431372549], + [0.8,0.8,0.8], + [0.803921568627451,0.803921568627451,0.803921568627451], + [0.807843137254902,0.807843137254902,0.807843137254902], + [0.8117647058823529,0.8117647058823529,0.8117647058823529], + [0.8156862745098039,0.8156862745098039,0.8156862745098039], + [0.8196078431372549,0.8196078431372549,0.8196078431372549], + [0.8235294117647058,0.8235294117647058,0.8235294117647058], + [0.8274509803921568,0.8274509803921568,0.8274509803921568], + [0.8313725490196078,0.8313725490196078,0.8313725490196078], + [0.8352941176470589,0.8352941176470589,0.8352941176470589], + [0.8392156862745098,0.8392156862745098,0.8392156862745098], + [0.8431372549019608,0.8431372549019608,0.8431372549019608], + [0.8470588235294118,0.8470588235294118,0.8470588235294118], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8549019607843137,0.8549019607843137,0.8549019607843137], + [0.8588235294117647,0.8588235294117647,0.8588235294117647], + [0.8627450980392157,0.8627450980392157,0.8627450980392157], + [0.8666666666666667,0.8666666666666667,0.8666666666666667], + [0.8705882352941177,0.8705882352941177,0.8705882352941177], + [0.8745098039215686,0.8745098039215686,0.8745098039215686], + [0.8784313725490196,0.8784313725490196,0.8784313725490196], + [0.8823529411764706,0.8823529411764706,0.8823529411764706], + [0.8862745098039215,0.8862745098039215,0.8862745098039215], + [0.8901960784313725,0.8901960784313725,0.8901960784313725], + [0.8941176470588235,0.8941176470588235,0.8941176470588235], + [0.8980392156862745,0.8980392156862745,0.8980392156862745], + [0.9019607843137255,0.9019607843137255,0.9019607843137255], + [0.9058823529411765,0.9058823529411765,0.9058823529411765], + [0.9098039215686274,0.9098039215686274,0.9098039215686274], + [0.9137254901960784,0.9137254901960784,0.9137254901960784], + [0.9176470588235294,0.9176470588235294,0.9176470588235294], + [0.9215686274509803,0.9215686274509803,0.9215686274509803], + [0.9254901960784314,0.9254901960784314,0.9254901960784314], + [0.9294117647058824,0.9294117647058824,0.9294117647058824], + [0.9333333333333333,0.9333333333333333,0.9333333333333333], + [0.9372549019607843,0.9372549019607843,0.9372549019607843], + [0.9411764705882353,0.9411764705882353,0.9411764705882353], + [0.9450980392156862,0.9450980392156862,0.9450980392156862], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9529411764705882,0.9529411764705882,0.9529411764705882], + [0.9568627450980391,0.9568627450980391,0.9568627450980391], + [0.9607843137254902,0.9607843137254902,0.9607843137254902], + [0.9647058823529412,0.9647058823529412,0.9647058823529412], + [0.9686274509803922,0.9686274509803922,0.9686274509803922], + [0.9725490196078431,0.9725490196078431,0.9725490196078431], + [0.9764705882352941,0.9764705882352941,0.9764705882352941], + [0.9803921568627451,0.9803921568627451,0.9803921568627451], + [0.984313725490196,0.984313725490196,0.984313725490196], + [0.9882352941176471,0.9882352941176471,0.9882352941176471], + [0.9921568627450981,0.9921568627450981,0.9921568627450981], + [0.996078431372549,0.996078431372549,0.996078431372549], + [1.0,1.0,1.0] ], + bone: [ + [0.0,0.0,0.0], + [0.003431372549019608,0.0034313712063072676,0.004774083546462063], + [0.006862745098039216,0.006862742412614535,0.009548167092924126], + [0.010294117647058823,0.010294113618921803,0.01432225063938619], + [0.013725490196078431,0.01372548482522907,0.019096334185848253], + [0.01715686274509804,0.017156856031536338,0.023870417732310314], + [0.020588235294117647,0.020588227237843607,0.02864450127877238], + [0.024019607843137256,0.024019598444150872,0.03341858482523444], + [0.027450980392156862,0.02745096965045814,0.038192668371696506], + [0.030882352941176472,0.030882340856765406,0.04296675191815857], + [0.03431372549019608,0.034313712063072675,0.04774083546462063], + [0.037745098039215684,0.03774508326937995,0.0525149190110827], + [0.041176470588235294,0.04117645447568721,0.05728900255754476], + [0.0446078431372549,0.04460782568199448,0.062063086104006814], + [0.04803921568627451,0.048039196888301744,0.06683716965046888], + [0.051470588235294115,0.051470568094609016,0.07161125319693094], + [0.054901960784313725,0.05490193930091628,0.07638533674339301], + [0.058333333333333334,0.058333310507223554,0.08115942028985508], + [0.061764705882352944,0.06176468171353081,0.08593350383631713], + [0.06519607843137255,0.06519605291983809,0.09070758738277919], + [0.06862745098039216,0.06862742412614535,0.09548167092924126], + [0.07205882352941176,0.07205879533245263,0.10025575447570333], + [0.07549019607843137,0.0754901665387599,0.1050298380221654], + [0.07892156862745098,0.07892153774506715,0.10980392156862745], + [0.08235294117647059,0.08235290895137443,0.11457800511508952], + [0.08578431372549018,0.08578428015768168,0.11935208866155156], + [0.0892156862745098,0.08921565136398896,0.12412617220801363], + [0.0926470588235294,0.09264702257029622,0.1289002557544757], + [0.09607843137254903,0.09607839377660349,0.13367433930093775], + [0.09950980392156862,0.09950976498291077,0.13844842284739983], + [0.10294117647058823,0.10294113618921803,0.1432225063938619], + [0.10637254901960784,0.1063725073955253,0.14799658994032397], + [0.10980392156862745,0.10980387860183256,0.15277067348678602], + [0.11323529411764703,0.1132352498081398,0.15754475703324805], + [0.11666666666666667,0.11666662101444711,0.16231884057971016], + [0.12009803921568628,0.12009799222075436,0.1670929241261722], + [0.12352941176470589,0.12352936342706163,0.17186700767263427], + [0.12696078431372546,0.12696073463336888,0.1766410912190963], + [0.1303921568627451,0.13039210583967617,0.18141517476555838], + [0.1338235294117647,0.13382347704598344,0.18618925831202046], + [0.13725490196078433,0.1372548482522907,0.19096334185848252], + [0.1406862745098039,0.14068621945859794,0.19573742540494454], + [0.14411764705882352,0.14411759066490526,0.20051150895140665], + [0.14754901960784314,0.14754896187121253,0.2052855924978687], + [0.15098039215686274,0.1509803330775198,0.2100596760443308], + [0.15441176470588233,0.15441170428382703,0.2148337595907928], + [0.15784313725490196,0.1578430754901343,0.2196078431372549], + [0.16127450980392158,0.1612744466964416,0.22438192668371695], + [0.16470588235294117,0.16470581790274885,0.22915601023017904], + [0.16813725490196074,0.1681371891090561,0.23393009377664103], + [0.17156862745098037,0.17156856031536336,0.23870417732310312], + [0.17500000000000002,0.17499993152167065,0.24347826086956523], + [0.1784313725490196,0.17843130272797791,0.24825234441602725], + [0.18186274509803918,0.18186267393428515,0.2530264279624893], + [0.1852941176470588,0.18529404514059244,0.2578005115089514], + [0.18872549019607843,0.18872541634689974,0.2625745950554135], + [0.19215686274509805,0.19215678755320698,0.2673486786018755], + [0.19558823529411762,0.19558815875951424,0.2721227621483376], + [0.19901960784313724,0.19901952996582153,0.27689684569479966], + [0.20245098039215687,0.2024509011721288,0.28167092924126175], + [0.20588235294117646,0.20588227237843607,0.2864450127877238], + [0.20931372549019606,0.2093136435847433,0.2912190963341858], + [0.21274509803921568,0.2127450147910506,0.29599317988064794], + [0.21617647058823528,0.21617638599735786,0.30076726342710997], + [0.2196078431372549,0.21960775720366513,0.30554134697357205], + [0.2230392156862745,0.2230391284099724,0.3103154305200341], + [0.22647058823529406,0.2264704996162796,0.3150895140664961], + [0.2299019607843137,0.22990187082258692,0.31986359761295824], + [0.23333333333333334,0.23333324202889422,0.3246376811594203], + [0.23676470588235293,0.23676461323520148,0.32941176470588235], + [0.24019607843137256,0.24019598444150872,0.3341858482523444], + [0.24362745098039215,0.243627355647816,0.33895993179880646], + [0.24705882352941178,0.24705872685412325,0.34373401534526854], + [0.25049019607843137,0.25049009806043054,0.3485080988917306], + [0.2539215686274509,0.25392146926673775,0.3532821824381926], + [0.2573529411764706,0.2573528404730451,0.35805626598465473], + [0.2607843137254902,0.26078421167935234,0.36283034953111676], + [0.2642156862745098,0.2642155828856596,0.3676044330775789], + [0.2676470588235294,0.26764695409196687,0.3723785166240409], + [0.271078431372549,0.27107832529827414,0.37715260017050295], + [0.27450980392156865,0.2745096965045814,0.38192668371696503], + [0.27794117647058825,0.27794106771088867,0.38670076726342706], + [0.2813725490196078,0.2813724389171959,0.3914748508098891], + [0.28480392156862744,0.2848038101235032,0.3962489343563512], + [0.28823529411764703,0.2882351813298105,0.4010230179028133], + [0.2916666666666667,0.29166655253611773,0.40579710144927533], + [0.2950980392156863,0.29509792374242505,0.4105711849957374], + [0.2985294117647059,0.29852929494873226,0.4153452685421995], + [0.30196078431372547,0.3019606661550396,0.4201193520886616], + [0.30539215686274507,0.30539203736134685,0.4248934356351236], + [0.30882352941176466,0.30882340856765406,0.4296675191815856], + [0.3122549019607843,0.3122547797739614,0.4344416027280477], + [0.3156862745098039,0.3156861509802686,0.4392156862745098], + [0.3191176470588235,0.3191175221865759,0.4439897698209719], + [0.32254901960784316,0.32371322935807584,0.44754889530644404], + [0.32598039215686275,0.32843136580875115,0.450980268627522], + [0.32941176470588235,0.33314950225942647,0.4544116419486], + [0.33284313725490194,0.3378676387101018,0.45784301526967797], + [0.3362745098039215,0.34258577516077704,0.4612743885907559], + [0.33970588235294114,0.34730391161145246,0.46470576191183394], + [0.34313725490196073,0.3520220480621278,0.46813713523291195], + [0.3465686274509803,0.3567401845128031,0.4715685085539899], + [0.35000000000000003,0.3614583209634784,0.4749998818750679], + [0.35343137254901963,0.3661764574141538,0.47843125519614593], + [0.3568627450980392,0.3708945938648291,0.4818626285172239], + [0.3602941176470588,0.3756127303155044,0.48529400183830185], + [0.36372549019607836,0.38033086676617966,0.4887253751593798], + [0.367156862745098,0.3850490032168551,0.4921567484804579], + [0.3705882352941176,0.3897671396675304,0.49558812180153583], + [0.3740196078431372,0.3944852761182057,0.49901949512261384], + [0.37745098039215685,0.39920341256888103,0.5024508684436918], + [0.3808823529411765,0.40392154901955635,0.5058822417647698], + [0.3843137254901961,0.40863968547023166,0.5093136150858478], + [0.3877450980392157,0.41335782192090703,0.5127449884069257], + [0.39117647058823524,0.4180759583715823,0.5161763617280037], + [0.3946078431372549,0.42279409482225766,0.5196077350490818], + [0.3980392156862745,0.42751223127293303,0.5230391083701598], + [0.4014705882352941,0.43223036772360834,0.5264704816912377], + [0.40490196078431373,0.43694850417428366,0.5299018550123157], + [0.4083333333333333,0.441666640624959,0.5333332283333937], + [0.4117647058823529,0.4463847770756343,0.5367646016544717], + [0.4151960784313726,0.45110291352630966,0.5401959749755497], + [0.4186274509803921,0.4558210499769849,0.5436273482966276], + [0.42205882352941176,0.4605391864276603,0.5470587216177056], + [0.42549019607843136,0.46525732287833566,0.5504900949387836], + [0.42892156862745096,0.46997545932901097,0.5539214682598617], + [0.43235294117647055,0.4746935957796863,0.5573528415809397], + [0.4357843137254902,0.4794117322303616,0.5607842149020176], + [0.4392156862745098,0.4841298686810369,0.5642155882230956], + [0.4426470588235294,0.4888480051317122,0.5676469615441736], + [0.446078431372549,0.49356614158238754,0.5710783348652515], + [0.44950980392156864,0.49828427803306286,0.5745097081863295], + [0.4529411764705881,0.5030024144837381,0.5779410815074074], + [0.45637254901960783,0.5077205509344136,0.5813724548284855], + [0.4598039215686274,0.5124386873850888,0.5848038281495636], + [0.4632352941176471,0.5171568238357642,0.5882352014706415], + [0.4666666666666667,0.5218749602864395,0.5916665747917195], + [0.47009803921568627,0.5265930967371149,0.5950979481127975], + [0.47352941176470587,0.5313112331877902,0.5985293214338755], + [0.47696078431372546,0.5360293696384655,0.6019606947549534], + [0.4803921568627451,0.5407475060891409,0.6053920680760314], + [0.4838235294117647,0.5454656425398161,0.6088234413971094], + [0.4872549019607843,0.5501837789904915,0.6122548147181874], + [0.49068627450980395,0.5549019154411668,0.6156861880392654], + [0.49411764705882355,0.5596200518918422,0.6191175613603433], + [0.49754901960784315,0.5643381883425175,0.6225489346814214], + [0.5009803921568627,0.5690563247931928,0.6259803080024994], + [0.5044117647058823,0.5737744612438682,0.6294116813235774], + [0.5078431372549018,0.5784925976945433,0.6328430546446553], + [0.5112745098039215,0.5832107341452187,0.6362744279657333], + [0.5147058823529412,0.587928870595894,0.6397058012868113], + [0.5181372549019608,0.5926470070465695,0.6431371746078893], + [0.5215686274509804,0.5973651434972447,0.6465685479289672], + [0.525,0.6020832799479201,0.6499999212500452], + [0.5284313725490196,0.6068014163985954,0.6534312945711233], + [0.5318627450980392,0.6115195528492707,0.6568626678922013], + [0.5352941176470588,0.6162376892999462,0.6602940412132792], + [0.5387254901960784,0.6209558257506214,0.6637254145343572], + [0.542156862745098,0.6256739622012967,0.6671567878554352], + [0.5455882352941177,0.630392098651972,0.6705881611765132], + [0.5490196078431373,0.6351102351026474,0.6740195344975912], + [0.5524509803921569,0.6398283715533226,0.6774509078186691], + [0.5558823529411765,0.644546508003998,0.6808822811397471], + [0.5593137254901961,0.6492646444546734,0.6843136544608251], + [0.5627450980392156,0.6539827809053486,0.687745027781903], + [0.5661764705882353,0.6587009173560241,0.6911764011029811], + [0.5696078431372549,0.6634190538066993,0.6946077744240591], + [0.5730392156862745,0.6681371902573746,0.6980391477451371], + [0.5764705882352941,0.6728553267080499,0.7014705210662151], + [0.5799019607843138,0.6775734631587254,0.7049018943872931], + [0.5833333333333334,0.6822915996094006,0.708333267708371], + [0.586764705882353,0.687009736060076,0.711764641029449], + [0.5901960784313726,0.6917278725107513,0.7151960143505269], + [0.5936274509803922,0.6964460089614266,0.718627387671605], + [0.5970588235294118,0.7011641454121019,0.722058760992683], + [0.6004901960784313,0.7058822818627772,0.725490134313761], + [0.6039215686274509,0.7106004183134526,0.728921507634839], + [0.6073529411764705,0.7153185547641279,0.732352880955917], + [0.6107843137254901,0.7200366912148033,0.735784254276995], + [0.6142156862745098,0.7247548276654785,0.739215627598073], + [0.6176470588235293,0.7294729641161537,0.7426470009191508], + [0.621078431372549,0.7341911005668292,0.7460783742402288], + [0.6245098039215686,0.7389092370175045,0.7495097475613068], + [0.6279411764705882,0.7436273734681799,0.7529411208823849], + [0.6313725490196078,0.7483455099188552,0.7563724942034629], + [0.6348039215686274,0.7530636463695306,0.7598038675245409], + [0.638235294117647,0.7577817828202058,0.7632352408456189], + [0.6416666666666666,0.7624999192708812,0.7666666141666969], + [0.6450980392156863,0.7672180557215565,0.7700979874877748], + [0.6485294117647059,0.7719361921722319,0.7735293608088528], + [0.6519607843137255,0.7766543286229072,0.7769607341299307], + [0.656862621568504,0.7803921568627451,0.7803921074510087], + [0.662224143106496,0.7838235294117647,0.7838234807720867], + [0.6675856646444882,0.7872549019607843,0.7872548540931648], + [0.6729471861824803,0.7906862745098039,0.7906862274142428], + [0.6783087077204725,0.7941176470588235,0.7941176007353208], + [0.6836702292584644,0.7975490196078431,0.7975489740563986], + [0.6890317507964567,0.8009803921568628,0.8009803473774767], + [0.6943932723344488,0.8044117647058824,0.8044117206985547], + [0.6997547938724409,0.807843137254902,0.8078430940196326], + [0.7051163154104331,0.8112745098039216,0.8112744673407106], + [0.7104778369484251,0.8147058823529412,0.8147058406617886], + [0.7158393584864173,0.8181372549019608,0.8181372139828667], + [0.7212008800244094,0.8215686274509804,0.8215685873039447], + [0.7265624015624016,0.825,0.8249999606250226], + [0.7319239231003937,0.8284313725490196,0.8284313339461006], + [0.7372854446383859,0.8318627450980393,0.8318627072671786], + [0.7426469661763779,0.8352941176470589,0.8352940805882566], + [0.7480084877143701,0.8387254901960784,0.8387254539093345], + [0.7533700092523622,0.842156862745098,0.8421568272304125], + [0.7587315307903544,0.8455882352941176,0.8455882005514905], + [0.7640930523283465,0.8490196078431372,0.8490195738725685], + [0.7694545738663384,0.8524509803921567,0.8524509471936463], + [0.7748160954043307,0.8558823529411764,0.8558823205147245], + [0.7801776169423228,0.8593137254901961,0.8593136938358025], + [0.785539138480315,0.8627450980392157,0.8627450671568805], + [0.7909006600183071,0.8661764705882353,0.8661764404779585], + [0.7962621815562992,0.8696078431372549,0.8696078137990364], + [0.8016237030942913,0.8730392156862745,0.8730391871201144], + [0.8069852246322835,0.8764705882352941,0.8764705604411924], + [0.8123467461702756,0.8799019607843137,0.8799019337622704], + [0.8177082677082677,0.8833333333333333,0.8833333070833483], + [0.8230697892462598,0.8867647058823529,0.8867646804044264], + [0.828431310784252,0.8901960784313725,0.8901960537255044], + [0.8337928323222441,0.8936274509803921,0.8936274270465824], + [0.8391543538602362,0.8970588235294118,0.8970588003676603], + [0.8445158753982284,0.9004901960784314,0.9004901736887383], + [0.8498773969362204,0.903921568627451,0.9039215470098163], + [0.8552389184742124,0.9073529411764705,0.9073529203308942], + [0.8606004400122047,0.9107843137254902,0.9107842936519723], + [0.8659619615501968,0.9142156862745098,0.9142156669730502], + [0.871323483088189,0.9176470588235295,0.9176470402941282], + [0.8766850046261812,0.9210784313725491,0.9210784136152063], + [0.8820465261641732,0.9245098039215687,0.9245097869362842], + [0.8874080477021653,0.9279411764705883,0.9279411602573622], + [0.8927695692401575,0.9313725490196079,0.9313725335784402], + [0.8981310907781497,0.9348039215686275,0.9348039068995182], + [0.9034926123161418,0.9382352941176471,0.9382352802205962], + [0.9088541338541338,0.9416666666666667,0.9416666535416742], + [0.914215655392126,0.9450980392156862,0.9450980268627522], + [0.9195771769301182,0.9485294117647058,0.9485294001838303], + [0.9249386984681103,0.9519607843137254,0.951960773504908], + [0.9303002200061024,0.955392156862745,0.955392146825986], + [0.9356617415440944,0.9588235294117647,0.9588235201470641], + [0.9410232630820865,0.9622549019607842,0.9622548934681421], + [0.9463847846200788,0.9656862745098039,0.9656862667892201], + [0.9517463061580709,0.9691176470588235,0.9691176401102981], + [0.957107827696063,0.9725490196078431,0.9725490134313761], + [0.9624693492340551,0.9759803921568627,0.9759803867524541], + [0.9678308707720472,0.9794117647058823,0.9794117600735319], + [0.9731923923100394,0.982843137254902,0.9828431333946099], + [0.9785539138480315,0.9862745098039216,0.986274506715688], + [0.9839154353860236,0.9897058823529412,0.989705880036766], + [0.9892769569240157,0.9931372549019608,0.993137253357844], + [0.9946384784620079,0.9965686274509804,0.996568626678922], + [1.0,1.0,1.0] ], + bone_r: [ + [1.0,1.0,1.0], + [0.9946384784620079,0.9965686274509804,0.996568626678922], + [0.9892769569240157,0.9931372549019608,0.993137253357844], + [0.9839154353860237,0.9897058823529412,0.9897058800367661], + [0.9785539138480315,0.9862745098039216,0.9862745067156881], + [0.9731923923100394,0.9828431372549019,0.98284313339461], + [0.9678308707720472,0.9794117647058823,0.979411760073532], + [0.9624693492340551,0.9759803921568627,0.9759803867524541], + [0.957107827696063,0.9725490196078431,0.9725490134313761], + [0.9517463061580709,0.9691176470588235,0.9691176401102981], + [0.9463847846200787,0.9656862745098039,0.9656862667892201], + [0.9410232630820866,0.9622549019607843,0.9622548934681422], + [0.9356617415440944,0.9588235294117647,0.9588235201470642], + [0.9303002200061024,0.955392156862745,0.9553921468259862], + [0.9249386984681103,0.9519607843137254,0.9519607735049082], + [0.9195771769301181,0.9485294117647058,0.9485294001838303], + [0.9142156553921259,0.9450980392156862,0.9450980268627522], + [0.9088541338541338,0.9416666666666667,0.9416666535416742], + [0.9034926123161418,0.9382352941176471,0.9382352802205962], + [0.8981310907781496,0.9348039215686275,0.9348039068995182], + [0.8927695692401575,0.9313725490196079,0.9313725335784403], + [0.8874080477021653,0.9279411764705883,0.9279411602573623], + [0.8820465261641732,0.9245098039215686,0.9245097869362843], + [0.876685004626181,0.921078431372549,0.9210784136152063], + [0.871323483088189,0.9176470588235294,0.9176470402941284], + [0.8659619615501968,0.9142156862745098,0.9142156669730503], + [0.8606004400122047,0.9107843137254902,0.9107842936519723], + [0.8552389184742125,0.9073529411764706,0.9073529203308943], + [0.8498773969362204,0.903921568627451,0.9039215470098164], + [0.8445158753982283,0.9004901960784314,0.9004901736887384], + [0.8391543538602362,0.8970588235294117,0.8970588003676604], + [0.8337928323222441,0.8936274509803921,0.8936274270465824], + [0.8284313107842519,0.8901960784313725,0.8901960537255045], + [0.8230697892462598,0.8867647058823529,0.8867646804044265], + [0.8177082677082677,0.8833333333333333,0.8833333070833485], + [0.8123467461702756,0.8799019607843137,0.8799019337622704], + [0.8069852246322834,0.8764705882352941,0.8764705604411924], + [0.8016237030942913,0.8730392156862745,0.8730391871201145], + [0.7962621815562991,0.8696078431372549,0.8696078137990365], + [0.7909006600183071,0.8661764705882352,0.8661764404779585], + [0.7855391384803149,0.8627450980392156,0.8627450671568806], + [0.7801776169423228,0.8593137254901961,0.8593136938358026], + [0.7748160954043306,0.8558823529411764,0.8558823205147246], + [0.7694545738663385,0.8524509803921568,0.8524509471936466], + [0.7640930523283465,0.8490196078431372,0.8490195738725685], + [0.7587315307903543,0.8455882352941176,0.8455882005514906], + [0.7533700092523622,0.842156862745098,0.8421568272304126], + [0.74800848771437,0.8387254901960783,0.8387254539093346], + [0.7426469661763779,0.8352941176470587,0.8352940805882566], + [0.7372854446383859,0.8318627450980391,0.8318627072671787], + [0.7319239231003936,0.8284313725490196,0.8284313339461007], + [0.7265624015624015,0.825,0.8249999606250227], + [0.7212008800244094,0.8215686274509804,0.8215685873039447], + [0.7158393584864173,0.8181372549019608,0.8181372139828668], + [0.710477836948425,0.8147058823529412,0.8147058406617887], + [0.705116315410433,0.8112745098039216,0.8112744673407107], + [0.6997547938724409,0.807843137254902,0.8078430940196327], + [0.6943932723344488,0.8044117647058824,0.8044117206985548], + [0.6890317507964566,0.8009803921568627,0.8009803473774768], + [0.6836702292584644,0.7975490196078431,0.7975489740563988], + [0.6783087077204724,0.7941176470588235,0.7941176007353208], + [0.6729471861824803,0.7906862745098039,0.7906862274142429], + [0.6675856646444881,0.7872549019607843,0.7872548540931648], + [0.6622241431064959,0.7838235294117646,0.7838234807720869], + [0.6568626215685038,0.780392156862745,0.7803921074510088], + [0.6519607843137254,0.7766543286229071,0.7769607341299309], + [0.6485294117647059,0.7719361921722319,0.7735293608088529], + [0.6450980392156862,0.7672180557215564,0.7700979874877749], + [0.6416666666666666,0.7624999192708811,0.7666666141666969], + [0.638235294117647,0.7577817828202058,0.7632352408456189], + [0.6348039215686274,0.7530636463695305,0.7598038675245409], + [0.6313725490196078,0.7483455099188552,0.756372494203463], + [0.6279411764705882,0.7436273734681799,0.752941120882385], + [0.6245098039215685,0.7389092370175045,0.7495097475613071], + [0.621078431372549,0.7341911005668292,0.746078374240229], + [0.6176470588235293,0.7294729641161538,0.742647000919151], + [0.6142156862745097,0.7247548276654785,0.739215627598073], + [0.6107843137254901,0.7200366912148032,0.735784254276995], + [0.6073529411764705,0.7153185547641279,0.732352880955917], + [0.6039215686274509,0.7106004183134526,0.728921507634839], + [0.6004901960784313,0.7058822818627772,0.7254901343137611], + [0.5970588235294118,0.7011641454121019,0.7220587609926832], + [0.5936274509803922,0.6964460089614266,0.7186273876716052], + [0.5901960784313725,0.6917278725107513,0.7151960143505272], + [0.5867647058823529,0.687009736060076,0.7117646410294491], + [0.5833333333333333,0.6822915996094006,0.7083332677083711], + [0.5799019607843137,0.6775734631587252,0.7049018943872931], + [0.5764705882352941,0.6728553267080499,0.7014705210662151], + [0.5730392156862745,0.6681371902573746,0.6980391477451371], + [0.5696078431372549,0.6634190538066993,0.6946077744240593], + [0.5661764705882353,0.6587009173560241,0.6911764011029813], + [0.5627450980392157,0.6539827809053487,0.6877450277819033], + [0.559313725490196,0.6492646444546734,0.6843136544608253], + [0.5558823529411764,0.644546508003998,0.6808822811397472], + [0.5524509803921568,0.6398283715533227,0.6774509078186692], + [0.5490196078431372,0.6351102351026474,0.6740195344975912], + [0.5455882352941176,0.630392098651972,0.6705881611765132], + [0.542156862745098,0.6256739622012968,0.6671567878554354], + [0.5387254901960784,0.6209558257506215,0.6637254145343574], + [0.5352941176470588,0.616237689299946,0.6602940412132794], + [0.5318627450980392,0.6115195528492707,0.6568626678922014], + [0.5284313725490195,0.6068014163985954,0.6534312945711234], + [0.5249999999999999,0.6020832799479201,0.6499999212500454], + [0.5215686274509803,0.5973651434972448,0.6465685479289673], + [0.5181372549019607,0.5926470070465695,0.6431371746078893], + [0.5147058823529411,0.587928870595894,0.6397058012868114], + [0.5112745098039215,0.5832107341452188,0.6362744279657335], + [0.5078431372549019,0.5784925976945434,0.6328430546446555], + [0.5044117647058823,0.5737744612438681,0.6294116813235775], + [0.5009803921568627,0.5690563247931928,0.6259803080024995], + [0.49754901960784303,0.5643381883425175,0.6225489346814215], + [0.49411764705882344,0.5596200518918422,0.6191175613603435], + [0.49068627450980384,0.5549019154411668,0.6156861880392654], + [0.48725490196078425,0.5501837789904915,0.6122548147181875], + [0.48382352941176465,0.5454656425398162,0.6088234413971096], + [0.48039215686274506,0.5407475060891409,0.6053920680760315], + [0.47696078431372546,0.5360293696384655,0.6019606947549536], + [0.4735294117647058,0.5313112331877903,0.5985293214338756], + [0.4700980392156862,0.5265930967371149,0.5950979481127976], + [0.4666666666666666,0.5218749602864396,0.5916665747917196], + [0.463235294117647,0.5171568238357642,0.5882352014706416], + [0.45980392156862737,0.5124386873850889,0.5848038281495637], + [0.4563725490196079,0.5077205509344137,0.5813724548284858], + [0.4529411764705882,0.5030024144837383,0.5779410815074076], + [0.4495098039215686,0.49828427803306297,0.5745097081863296], + [0.446078431372549,0.49356614158238765,0.5710783348652517], + [0.44264705882352934,0.4888480051317123,0.5676469615441737], + [0.43921568627450974,0.48412986868103697,0.5642155882230957], + [0.43578431372549015,0.47941173223036165,0.5607842149020177], + [0.43235294117647055,0.4746935957796863,0.5573528415809398], + [0.4289215686274509,0.469975459329011,0.5539214682598618], + [0.4254901960784313,0.4652573228783357,0.5504900949387838], + [0.4220588235294118,0.4605391864276605,0.5470587216177059], + [0.4186274509803921,0.455821049976985,0.5436273482966278], + [0.4151960784313725,0.4511029135263097,0.5401959749755498], + [0.4117647058823529,0.44638477707563434,0.5367646016544718], + [0.40833333333333327,0.4416666406249591,0.5333332283333938], + [0.4049019607843137,0.43694850417428377,0.5299018550123158], + [0.4014705882352941,0.4322303677236084,0.5264704816912379], + [0.3980392156862745,0.4275122312729331,0.5230391083701599], + [0.3946078431372549,0.42279409482225777,0.5196077350490819], + [0.39117647058823524,0.4180759583715824,0.516176361728004], + [0.38774509803921564,0.41335782192090714,0.512744988406926], + [0.38431372549019605,0.40863968547023183,0.5093136150858479], + [0.38088235294117645,0.40392154901955646,0.5058822417647699], + [0.3774509803921568,0.39920341256888114,0.5024508684436919], + [0.3740196078431372,0.39448527611820583,0.499019495122614], + [0.3705882352941176,0.38976713966753046,0.495588121801536], + [0.3671568627450981,0.3850490032168553,0.4921567484804581], + [0.3637254901960784,0.3803308667661799,0.48872537515937997], + [0.36029411764705876,0.3756127303155045,0.48529400183830207], + [0.35686274509803917,0.3708945938648292,0.48186262851722406], + [0.3534313725490196,0.3661764574141539,0.47843125519614604], + [0.35,0.3614583209634785,0.47499988187506803], + [0.3465686274509803,0.3567401845128032,0.47156850855399013], + [0.34313725490196073,0.3520220480621279,0.4681371352329121], + [0.33970588235294114,0.3473039116114526,0.4647057619118341], + [0.33627450980392154,0.34258577516077726,0.4612743885907561], + [0.3328431372549019,0.3378676387101019,0.4578430152696781], + [0.3294117647058823,0.3331495022594266,0.4544116419486002], + [0.3259803921568627,0.32843136580875126,0.45098026862752216], + [0.3225490196078431,0.32371322935807595,0.44754889530644415], + [0.3191176470588235,0.31911752218657596,0.443989769820972], + [0.31568627450980385,0.3156861509802687,0.4392156862745099], + [0.31225490196078437,0.31225477977396154,0.434441602728048], + [0.30882352941176466,0.30882340856765417,0.4296675191815858], + [0.30539215686274507,0.3053920373613469,0.4248934356351237], + [0.3019607843137254,0.30196066615503964,0.4201193520886617], + [0.2985294117647058,0.29852929494873237,0.4153452685421996], + [0.2950980392156862,0.2950979237424251,0.4105711849957375], + [0.29166666666666663,0.29166655253611784,0.4057971014492755], + [0.288235294117647,0.2882351813298106,0.4010230179028134], + [0.2848039215686274,0.2848038101235033,0.39624893435635133], + [0.2813725490196078,0.28137243891719604,0.3914748508098893], + [0.2779411764705882,0.2779410677108888,0.3867007672634272], + [0.2745098039215686,0.2745096965045815,0.38192668371696514], + [0.271078431372549,0.27107832529827425,0.3771526001705031], + [0.26764705882352935,0.2676469540919669,0.37237851662404103], + [0.26421568627450975,0.2642155828856597,0.36760443307757895], + [0.2607843137254901,0.2607842116793524,0.3628303495311169], + [0.2573529411764706,0.25735284047304524,0.358056265984655], + [0.2539215686274509,0.25392146926673786,0.35328218243819276], + [0.2504901960784313,0.2504900980604306,0.34850809889173073], + [0.24705882352941172,0.24705872685412333,0.34373401534526865], + [0.24362745098039212,0.24362735564781607,0.33895993179880657], + [0.24019607843137253,0.2401959844415088,0.33418584825234454], + [0.23676470588235288,0.23676461323520154,0.32941176470588246], + [0.23333333333333328,0.23333324202889427,0.3246376811594204], + [0.22990196078431363,0.229901870822587,0.31986359761295835], + [0.22647058823529403,0.22647049961627974,0.3150895140664962], + [0.22303921568627444,0.22303912840997248,0.3103154305200342], + [0.21960784313725484,0.2196077572036652,0.30554134697357216], + [0.21617647058823525,0.21617638599735792,0.30076726342711], + [0.21274509803921565,0.21274501479105065,0.295993179880648], + [0.20931372549019606,0.2093136435847434,0.2912190963341859], + [0.20588235294117646,0.20588227237843612,0.28644501278772383], + [0.20245098039215687,0.20245090117212894,0.2816709292412619], + [0.19901960784313727,0.1990195299658216,0.2768968456947998], + [0.19558823529411767,0.19558815875951432,0.2721227621483377], + [0.19215686274509808,0.19215678755320706,0.2673486786018756], + [0.18872549019607843,0.1887254163468998,0.2625745950554136], + [0.18529411764705883,0.18529404514059253,0.2578005115089515], + [0.18186274509803924,0.18186267393428523,0.2530264279624894], + [0.17843137254901958,0.17843130272797797,0.24825234441602737], + [0.175,0.1749999315216707,0.24347826086956528], + [0.1715686274509804,0.17156856031536344,0.23870417732310323], + [0.1681372549019608,0.16813718910905617,0.23393009377664117], + [0.1647058823529412,0.1647058179027489,0.2291560102301791], + [0.16127450980392155,0.16127444669644164,0.22438192668371704], + [0.15784313725490196,0.15784307549013435,0.21960784313725495], + [0.15441176470588236,0.1544117042838271,0.21483375959079293], + [0.15098039215686276,0.15098033307751982,0.21005967604433085], + [0.14754901960784306,0.14754896187121264,0.2052855924978689], + [0.14411764705882346,0.1441175906649053,0.2005115089514067], + [0.14068627450980387,0.14068621945859802,0.19573742540494465], + [0.13725490196078427,0.13725484825229076,0.19096334185848257], + [0.13382352941176467,0.1338234770459835,0.18618925831202054], + [0.13039215686274508,0.1303921058396762,0.18141517476555846], + [0.12696078431372548,0.12696073463336896,0.17664109121909638], + [0.12352941176470589,0.12352936342706167,0.1718670076726343], + [0.12009803921568629,0.1200979922207544,0.16709292412617227], + [0.1166666666666667,0.11666662101444714,0.1623188405797102], + [0.11323529411764699,0.11323524980813987,0.15754475703324816], + [0.1098039215686274,0.10980387860183258,0.15277067348678602], + [0.1063725490196078,0.10637250739552534,0.147996589940324], + [0.1029411764705882,0.10294113618921805,0.14322250639386191], + [0.09950980392156861,0.09950976498291081,0.1384484228473999], + [0.09607843137254901,0.09607839377660352,0.1336743393009378], + [0.09264705882352942,0.09264702257029636,0.1289002557544759], + [0.08921568627450982,0.08921565136398896,0.12412617220801364], + [0.08578431372549022,0.08578428015768172,0.11935208866155161], + [0.08235294117647052,0.08235290895137443,0.11457800511508953], + [0.07892156862745092,0.07892153774506719,0.1098039215686275], + [0.07549019607843133,0.07549016653875992,0.10502983802216542], + [0.07205882352941173,0.07205879533245263,0.10025575447570334], + [0.06862745098039214,0.06862742412614536,0.09548167092924131], + [0.06519607843137254,0.0651960529198381,0.09070758738277923], + [0.061764705882352944,0.061764681713530833,0.0859335038363172], + [0.05833333333333335,0.05833331050722357,0.08115942028985507], + [0.05490196078431375,0.0549019393009163,0.07638533674339304], + [0.05147058823529416,0.05147056809460904,0.07161125319693096], + [0.04803921568627445,0.04803919688830177,0.06683716965046893], + [0.044607843137254855,0.044607825681994506,0.06206308610400685], + [0.04117647058823526,0.04117645447568724,0.057289002557544766], + [0.03774509803921566,0.03774508326938003,0.05251491901108285], + [0.03431372549019607,0.03431371206307271,0.04774083546462066], + [0.030882352941176472,0.03088234085676539,0.042966751918158574], + [0.027450980392156876,0.02745096965045818,0.03819266837169655], + [0.02401960784313728,0.024019598444150858,0.03341858482523441], + [0.020588235294117685,0.020588227237843593,0.028644501278772383], + [0.01715686274509809,0.017156856031536327,0.0238704177323103], + [0.013725490196078383,0.013725484825229062,0.019096334185848274], + [0.010294117647058787,0.010294113618921796,0.014322250639386191], + [0.006862745098039191,0.006862742412614531,0.00954816709292411], + [0.0034313725490195957,0.0034313712063072654,0.004774083546462027], + [0.0,0.0,0.0] ], + brg: [ + [0.0,0.0,1.0], + [0.00784313725490196,0.0,0.9921568627450981], + [0.01568627450980392,0.0,0.9843137254901961], + [0.023529411764705882,0.0,0.9764705882352941], + [0.03137254901960784,0.0,0.9686274509803922], + [0.0392156862745098,0.0,0.9607843137254902], + [0.047058823529411764,0.0,0.9529411764705882], + [0.054901960784313725,0.0,0.9450980392156862], + [0.06274509803921569,0.0,0.9372549019607843], + [0.07058823529411765,0.0,0.9294117647058824], + [0.0784313725490196,0.0,0.9215686274509804], + [0.08627450980392157,0.0,0.9137254901960784], + [0.09411764705882353,0.0,0.9058823529411765], + [0.10196078431372549,0.0,0.8980392156862745], + [0.10980392156862745,0.0,0.8901960784313725], + [0.11764705882352941,0.0,0.8823529411764706], + [0.12549019607843137,0.0,0.8745098039215686], + [0.13333333333333333,0.0,0.8666666666666667], + [0.1411764705882353,0.0,0.8588235294117648], + [0.14901960784313725,0.0,0.8509803921568627], + [0.1568627450980392,0.0,0.8431372549019608], + [0.16470588235294117,0.0,0.8352941176470589], + [0.17254901960784313,0.0,0.8274509803921568], + [0.1803921568627451,0.0,0.8196078431372549], + [0.18823529411764706,0.0,0.8117647058823529], + [0.19607843137254902,0.0,0.803921568627451], + [0.20392156862745098,0.0,0.7960784313725491], + [0.21176470588235294,0.0,0.788235294117647], + [0.2196078431372549,0.0,0.7803921568627451], + [0.22745098039215686,0.0,0.7725490196078432], + [0.23529411764705882,0.0,0.7647058823529411], + [0.24313725490196078,0.0,0.7568627450980392], + [0.25098039215686274,0.0,0.7490196078431373], + [0.2588235294117647,0.0,0.7411764705882353], + [0.26666666666666666,0.0,0.7333333333333334], + [0.27450980392156865,0.0,0.7254901960784313], + [0.2823529411764706,0.0,0.7176470588235294], + [0.2901960784313725,0.0,0.7098039215686275], + [0.2980392156862745,0.0,0.7019607843137254], + [0.3058823529411765,0.0,0.6941176470588235], + [0.3137254901960784,0.0,0.6862745098039216], + [0.32156862745098036,0.0,0.6784313725490196], + [0.32941176470588235,0.0,0.6705882352941177], + [0.33725490196078434,0.0,0.6627450980392157], + [0.34509803921568627,0.0,0.6549019607843137], + [0.3529411764705882,0.0,0.6470588235294118], + [0.3607843137254902,0.0,0.6392156862745098], + [0.3686274509803922,0.0,0.6313725490196078], + [0.3764705882352941,0.0,0.6235294117647059], + [0.38431372549019605,0.0,0.615686274509804], + [0.39215686274509803,0.0,0.607843137254902], + [0.4,0.0,0.6], + [0.40784313725490196,0.0,0.592156862745098], + [0.4156862745098039,0.0,0.5843137254901961], + [0.4235294117647059,0.0,0.5764705882352941], + [0.43137254901960786,0.0,0.5686274509803921], + [0.4392156862745098,0.0,0.5607843137254902], + [0.44705882352941173,0.0,0.5529411764705883], + [0.4549019607843137,0.0,0.5450980392156863], + [0.4627450980392157,0.0,0.5372549019607843], + [0.47058823529411764,0.0,0.5294117647058824], + [0.4784313725490196,0.0,0.5215686274509804], + [0.48627450980392156,0.0,0.5137254901960784], + [0.49411764705882355,0.0,0.5058823529411764], + [0.5019607843137255,0.0,0.4980392156862745], + [0.5098039215686274,0.0,0.4901960784313726], + [0.5176470588235293,0.0,0.48235294117647065], + [0.5254901960784314,0.0,0.4745098039215686], + [0.5333333333333333,0.0,0.4666666666666667], + [0.5411764705882353,0.0,0.45882352941176474], + [0.5490196078431373,0.0,0.4509803921568627], + [0.5568627450980392,0.0,0.44313725490196076], + [0.5647058823529412,0.0,0.43529411764705883], + [0.5725490196078431,0.0,0.4274509803921569], + [0.580392156862745,0.0,0.41960784313725497], + [0.5882352941176471,0.0,0.4117647058823529], + [0.596078431372549,0.0,0.403921568627451], + [0.6039215686274509,0.0,0.39607843137254906], + [0.611764705882353,0.0,0.388235294117647], + [0.6196078431372549,0.0,0.3803921568627451], + [0.6274509803921569,0.0,0.37254901960784315], + [0.6352941176470588,0.0,0.3647058823529412], + [0.6431372549019607,0.0,0.3568627450980393], + [0.6509803921568628,0.0,0.34901960784313724], + [0.6588235294117647,0.0,0.3411764705882353], + [0.6666666666666666,0.0,0.33333333333333337], + [0.6745098039215687,0.0,0.3254901960784313], + [0.6823529411764706,0.0,0.3176470588235294], + [0.6901960784313725,0.0,0.30980392156862746], + [0.6980392156862745,0.0,0.3019607843137255], + [0.7058823529411764,0.0,0.2941176470588236], + [0.7137254901960784,0.0,0.28627450980392155], + [0.7215686274509804,0.0,0.2784313725490196], + [0.7294117647058823,0.0,0.2705882352941177], + [0.7372549019607844,0.0,0.26274509803921564], + [0.7450980392156863,0.0,0.2549019607843137], + [0.7529411764705882,0.0,0.24705882352941178], + [0.7607843137254902,0.0,0.23921568627450984], + [0.7686274509803921,0.0,0.2313725490196079], + [0.7764705882352941,0.0,0.22352941176470587], + [0.7843137254901961,0.0,0.21568627450980393], + [0.792156862745098,0.0,0.207843137254902], + [0.8,0.0,0.19999999999999996], + [0.807843137254902,0.0,0.19215686274509802], + [0.8156862745098039,0.0,0.1843137254901961], + [0.8235294117647058,0.0,0.17647058823529416], + [0.8313725490196078,0.0,0.16862745098039222], + [0.8392156862745098,0.0,0.16078431372549018], + [0.8470588235294118,0.0,0.15294117647058825], + [0.8549019607843137,0.0,0.14509803921568631], + [0.8627450980392157,0.0,0.13725490196078427], + [0.8705882352941177,0.0,0.12941176470588234], + [0.8784313725490196,0.0,0.1215686274509804], + [0.8862745098039215,0.0,0.11372549019607847], + [0.8941176470588235,0.0,0.10588235294117654], + [0.9019607843137255,0.0,0.0980392156862745], + [0.9098039215686274,0.0,0.09019607843137256], + [0.9176470588235294,0.0,0.08235294117647063], + [0.9254901960784314,0.0,0.07450980392156858], + [0.9333333333333333,0.0,0.06666666666666665], + [0.9411764705882353,0.0,0.05882352941176472], + [0.9490196078431372,0.0,0.050980392156862786], + [0.9568627450980391,0.0,0.04313725490196085], + [0.9647058823529412,0.0,0.03529411764705881], + [0.9725490196078431,0.0,0.027450980392156876], + [0.9803921568627451,0.0,0.019607843137254943], + [0.9882352941176471,0.0,0.0117647058823529], + [0.996078431372549,0.0,0.0039215686274509665], + [0.996078431372549,0.00392156862745098,0.0], + [0.9882352941176471,0.011764705882352941,0.0], + [0.9803921568627451,0.0196078431372549,0.0], + [0.9725490196078431,0.027450980392156862,0.0], + [0.9647058823529414,0.0352941176470586,0.0], + [0.9568627450980393,0.043137254901960784,0.0], + [0.9490196078431372,0.050980392156862744,0.0], + [0.9411764705882353,0.058823529411764705,0.0], + [0.9333333333333333,0.06666666666666667,0.0], + [0.9254901960784314,0.07450980392156863,0.0], + [0.9176470588235294,0.08235294117647059,0.0], + [0.9098039215686274,0.09019607843137255,0.0], + [0.9019607843137255,0.09803921568627451,0.0], + [0.8941176470588236,0.10588235294117647,0.0], + [0.8862745098039215,0.11372549019607843,0.0], + [0.8784313725490196,0.12156862745098039,0.0], + [0.8705882352941177,0.12941176470588237,0.0], + [0.8627450980392157,0.13725490196078433,0.0], + [0.8549019607843137,0.1450980392156863,0.0], + [0.8470588235294118,0.15294117647058825,0.0], + [0.83921568627451,0.16078431372548999,0.0], + [0.8313725490196078,0.16862745098039217,0.0], + [0.8235294117647058,0.17647058823529413,0.0], + [0.8156862745098039,0.1843137254901961,0.0], + [0.807843137254902,0.19215686274509805,0.0], + [0.8,0.2,0.0], + [0.792156862745098,0.20784313725490197,0.0], + [0.7843137254901961,0.21568627450980393,0.0], + [0.7764705882352941,0.2235294117647059,0.0], + [0.7686274509803921,0.23137254901960785,0.0], + [0.7607843137254902,0.23921568627450981,0.0], + [0.7529411764705882,0.24705882352941178,0.0], + [0.7450980392156863,0.2549019607843137,0.0], + [0.7372549019607844,0.2627450980392157,0.0], + [0.7294117647058824,0.27058823529411763,0.0], + [0.7215686274509804,0.2784313725490196,0.0], + [0.7137254901960787,0.28627450980392133,0.0], + [0.7058823529411764,0.29411764705882354,0.0], + [0.6980392156862745,0.30196078431372547,0.0], + [0.6901960784313725,0.30980392156862746,0.0], + [0.6823529411764706,0.3176470588235294,0.0], + [0.6745098039215687,0.3254901960784314,0.0], + [0.6666666666666667,0.3333333333333333,0.0], + [0.6588235294117647,0.3411764705882353,0.0], + [0.6509803921568628,0.34901960784313724,0.0], + [0.6431372549019607,0.3568627450980392,0.0], + [0.6352941176470588,0.36470588235294116,0.0], + [0.6274509803921569,0.37254901960784315,0.0], + [0.6196078431372549,0.3803921568627451,0.0], + [0.611764705882353,0.38823529411764707,0.0], + [0.603921568627451,0.396078431372549,0.0], + [0.596078431372549,0.403921568627451,0.0], + [0.5882352941176473,0.4117647058823527,0.0], + [0.580392156862745,0.4196078431372549,0.0], + [0.5725490196078431,0.42745098039215684,0.0], + [0.5647058823529412,0.43529411764705883,0.0], + [0.5568627450980392,0.44313725490196076,0.0], + [0.5490196078431373,0.45098039215686275,0.0], + [0.5411764705882354,0.4588235294117647,0.0], + [0.5333333333333333,0.4666666666666667,0.0], + [0.5254901960784314,0.4745098039215686,0.0], + [0.5176470588235293,0.4823529411764706,0.0], + [0.5098039215686274,0.49019607843137253,0.0], + [0.5019607843137255,0.4980392156862745,0.0], + [0.49411764705882355,0.5058823529411764,0.0], + [0.4862745098039216,0.5137254901960784,0.0], + [0.4784313725490196,0.5215686274509804,0.0], + [0.47058823529411764,0.5294117647058824,0.0], + [0.46274509803921593,0.5372549019607841,0.0], + [0.4549019607843138,0.5450980392156862,0.0], + [0.44705882352941173,0.5529411764705883,0.0], + [0.4392156862745098,0.5607843137254902,0.0], + [0.43137254901960786,0.5686274509803921,0.0], + [0.42352941176470593,0.5764705882352941,0.0], + [0.4156862745098039,0.5843137254901961,0.0], + [0.40784313725490196,0.592156862745098,0.0], + [0.4,0.6,0.0], + [0.3921568627450981,0.6078431372549019,0.0], + [0.38431372549019605,0.615686274509804,0.0], + [0.3764705882352941,0.6235294117647059,0.0], + [0.3686274509803922,0.6313725490196078,0.0], + [0.36078431372549025,0.6392156862745098,0.0], + [0.3529411764705882,0.6470588235294118,0.0], + [0.34509803921568627,0.6549019607843137,0.0], + [0.33725490196078456,0.6627450980392154,0.0], + [0.3294117647058824,0.6705882352941176,0.0], + [0.32156862745098036,0.6784313725490196,0.0], + [0.3137254901960784,0.6862745098039216,0.0], + [0.3058823529411765,0.6941176470588235,0.0], + [0.29803921568627456,0.7019607843137254,0.0], + [0.2901960784313725,0.7098039215686275,0.0], + [0.2823529411764706,0.7176470588235294,0.0], + [0.27450980392156865,0.7254901960784313,0.0], + [0.2666666666666667,0.7333333333333333,0.0], + [0.2588235294117647,0.7411764705882353,0.0], + [0.25098039215686274,0.7490196078431373,0.0], + [0.2431372549019608,0.7568627450980392,0.0], + [0.23529411764705888,0.7647058823529411,0.0], + [0.22745098039215683,0.7725490196078432,0.0], + [0.2196078431372549,0.7803921568627451,0.0], + [0.2117647058823532,0.7882352941176468,0.0], + [0.20392156862745103,0.796078431372549,0.0], + [0.196078431372549,0.803921568627451,0.0], + [0.18823529411764706,0.8117647058823529,0.0], + [0.18039215686274512,0.8196078431372549,0.0], + [0.1725490196078432,0.8274509803921568,0.0], + [0.16470588235294115,0.8352941176470589,0.0], + [0.1568627450980392,0.8431372549019608,0.0], + [0.14901960784313728,0.8509803921568627,0.0], + [0.14117647058823535,0.8588235294117647,0.0], + [0.1333333333333333,0.8666666666666667,0.0], + [0.12549019607843137,0.8745098039215686,0.0], + [0.11764705882352944,0.8823529411764706,0.0], + [0.1098039215686275,0.8901960784313725,0.0], + [0.10196078431372546,0.8980392156862745,0.0], + [0.09411764705882353,0.9058823529411765,0.0], + [0.08627450980392182,0.9137254901960782,0.0], + [0.07843137254901966,0.9215686274509803,0.0], + [0.07058823529411762,0.9294117647058824,0.0], + [0.06274509803921569,0.9372549019607843,0.0], + [0.05490196078431375,0.9450980392156862,0.0], + [0.04705882352941182,0.9529411764705882,0.0], + [0.039215686274509776,0.9607843137254902,0.0], + [0.03137254901960784,0.9686274509803922,0.0], + [0.02352941176470591,0.9764705882352941,0.0], + [0.015686274509803977,0.984313725490196,0.0], + [0.007843137254901933,0.9921568627450981,0.0], + [0.0,1.0,0.0] ], + brg_r: [ + [0.0,1.0,0.0], + [0.00784313725490196,0.9921568627450981,0.0], + [0.01568627450980392,0.9843137254901961,0.0], + [0.023529411764705882,0.9764705882352941,0.0], + [0.03137254901960784,0.9686274509803922,0.0], + [0.0392156862745098,0.9607843137254902,0.0], + [0.047058823529411764,0.9529411764705882,0.0], + [0.054901960784313725,0.9450980392156862,0.0], + [0.06274509803921569,0.9372549019607843,0.0], + [0.07058823529411765,0.9294117647058824,0.0], + [0.0784313725490196,0.9215686274509804,0.0], + [0.08627450980392157,0.9137254901960784,0.0], + [0.09411764705882353,0.9058823529411765,0.0], + [0.10196078431372549,0.8980392156862745,0.0], + [0.10980392156862745,0.8901960784313725,0.0], + [0.11764705882352941,0.8823529411764706,0.0], + [0.12549019607843137,0.8745098039215686,0.0], + [0.13333333333333333,0.8666666666666667,0.0], + [0.1411764705882353,0.8588235294117648,0.0], + [0.14901960784313725,0.8509803921568627,0.0], + [0.1568627450980392,0.8431372549019608,0.0], + [0.16470588235294117,0.8352941176470589,0.0], + [0.17254901960784313,0.8274509803921568,0.0], + [0.1803921568627451,0.8196078431372549,0.0], + [0.18823529411764706,0.8117647058823529,0.0], + [0.19607843137254902,0.803921568627451,0.0], + [0.20392156862745098,0.7960784313725491,0.0], + [0.21176470588235294,0.788235294117647,0.0], + [0.2196078431372549,0.7803921568627451,0.0], + [0.22745098039215686,0.7725490196078432,0.0], + [0.23529411764705882,0.7647058823529411,0.0], + [0.24313725490196078,0.7568627450980392,0.0], + [0.25098039215686274,0.7490196078431373,0.0], + [0.2588235294117647,0.7411764705882353,0.0], + [0.26666666666666666,0.7333333333333334,0.0], + [0.27450980392156865,0.7254901960784313,0.0], + [0.2823529411764706,0.7176470588235294,0.0], + [0.2901960784313725,0.7098039215686275,0.0], + [0.2980392156862745,0.7019607843137254,0.0], + [0.3058823529411765,0.6941176470588235,0.0], + [0.3137254901960784,0.6862745098039216,0.0], + [0.32156862745098036,0.6784313725490196,0.0], + [0.32941176470588235,0.6705882352941177,0.0], + [0.33725490196078434,0.6627450980392157,0.0], + [0.34509803921568627,0.6549019607843137,0.0], + [0.3529411764705882,0.6470588235294118,0.0], + [0.3607843137254902,0.6392156862745098,0.0], + [0.3686274509803922,0.6313725490196078,0.0], + [0.3764705882352941,0.6235294117647059,0.0], + [0.38431372549019605,0.615686274509804,0.0], + [0.39215686274509803,0.607843137254902,0.0], + [0.4,0.6,0.0], + [0.40784313725490196,0.592156862745098,0.0], + [0.4156862745098039,0.5843137254901961,0.0], + [0.4235294117647059,0.5764705882352941,0.0], + [0.43137254901960786,0.5686274509803921,0.0], + [0.4392156862745098,0.5607843137254902,0.0], + [0.44705882352941173,0.5529411764705883,0.0], + [0.4549019607843137,0.5450980392156863,0.0], + [0.4627450980392157,0.5372549019607843,0.0], + [0.47058823529411764,0.5294117647058824,0.0], + [0.4784313725490196,0.5215686274509804,0.0], + [0.48627450980392156,0.5137254901960784,0.0], + [0.49411764705882355,0.5058823529411764,0.0], + [0.5019607843137255,0.4980392156862745,0.0], + [0.5098039215686274,0.4901960784313726,0.0], + [0.5176470588235293,0.48235294117647065,0.0], + [0.5254901960784314,0.4745098039215686,0.0], + [0.5333333333333333,0.4666666666666667,0.0], + [0.5411764705882353,0.45882352941176474,0.0], + [0.5490196078431373,0.4509803921568627,0.0], + [0.5568627450980392,0.44313725490196076,0.0], + [0.5647058823529412,0.43529411764705883,0.0], + [0.5725490196078431,0.4274509803921569,0.0], + [0.580392156862745,0.41960784313725497,0.0], + [0.5882352941176471,0.4117647058823529,0.0], + [0.596078431372549,0.403921568627451,0.0], + [0.6039215686274509,0.39607843137254906,0.0], + [0.611764705882353,0.388235294117647,0.0], + [0.6196078431372549,0.3803921568627451,0.0], + [0.6274509803921569,0.37254901960784315,0.0], + [0.6352941176470588,0.3647058823529412,0.0], + [0.6431372549019607,0.3568627450980393,0.0], + [0.6509803921568628,0.34901960784313724,0.0], + [0.6588235294117647,0.3411764705882353,0.0], + [0.6666666666666666,0.33333333333333337,0.0], + [0.6745098039215687,0.3254901960784313,0.0], + [0.6823529411764706,0.3176470588235294,0.0], + [0.6901960784313725,0.30980392156862746,0.0], + [0.6980392156862745,0.3019607843137255,0.0], + [0.7058823529411764,0.2941176470588236,0.0], + [0.7137254901960784,0.28627450980392155,0.0], + [0.7215686274509804,0.2784313725490196,0.0], + [0.7294117647058823,0.2705882352941177,0.0], + [0.7372549019607844,0.26274509803921564,0.0], + [0.7450980392156863,0.2549019607843137,0.0], + [0.7529411764705882,0.24705882352941178,0.0], + [0.7607843137254902,0.23921568627450984,0.0], + [0.7686274509803921,0.2313725490196079,0.0], + [0.7764705882352941,0.22352941176470587,0.0], + [0.7843137254901961,0.21568627450980393,0.0], + [0.792156862745098,0.207843137254902,0.0], + [0.8,0.19999999999999996,0.0], + [0.807843137254902,0.19215686274509802,0.0], + [0.8156862745098039,0.1843137254901961,0.0], + [0.8235294117647058,0.17647058823529416,0.0], + [0.8313725490196078,0.16862745098039222,0.0], + [0.8392156862745098,0.16078431372549018,0.0], + [0.8470588235294118,0.15294117647058825,0.0], + [0.8549019607843137,0.14509803921568631,0.0], + [0.8627450980392157,0.13725490196078427,0.0], + [0.8705882352941177,0.12941176470588234,0.0], + [0.8784313725490196,0.1215686274509804,0.0], + [0.8862745098039215,0.11372549019607847,0.0], + [0.8941176470588235,0.10588235294117654,0.0], + [0.9019607843137255,0.0980392156862745,0.0], + [0.9098039215686274,0.09019607843137256,0.0], + [0.9176470588235294,0.08235294117647063,0.0], + [0.9254901960784314,0.07450980392156858,0.0], + [0.9333333333333333,0.06666666666666665,0.0], + [0.9411764705882353,0.05882352941176472,0.0], + [0.9490196078431372,0.050980392156862786,0.0], + [0.9568627450980391,0.04313725490196085,0.0], + [0.9647058823529412,0.03529411764705881,0.0], + [0.9725490196078431,0.027450980392156876,0.0], + [0.9803921568627451,0.019607843137254943,0.0], + [0.9882352941176471,0.0117647058823529,0.0], + [0.996078431372549,0.0039215686274509665,0.0], + [0.996078431372549,0.0,0.00392156862745098], + [0.9882352941176471,0.0,0.011764705882352941], + [0.9803921568627451,0.0,0.0196078431372549], + [0.9725490196078431,0.0,0.027450980392156862], + [0.9647058823529414,0.0,0.0352941176470586], + [0.9568627450980393,0.0,0.043137254901960784], + [0.9490196078431372,0.0,0.050980392156862744], + [0.9411764705882353,0.0,0.058823529411764705], + [0.9333333333333333,0.0,0.06666666666666667], + [0.9254901960784314,0.0,0.07450980392156863], + [0.9176470588235294,0.0,0.08235294117647059], + [0.9098039215686274,0.0,0.09019607843137255], + [0.9019607843137255,0.0,0.09803921568627451], + [0.8941176470588236,0.0,0.10588235294117647], + [0.8862745098039215,0.0,0.11372549019607843], + [0.8784313725490196,0.0,0.12156862745098039], + [0.8705882352941177,0.0,0.12941176470588237], + [0.8627450980392157,0.0,0.13725490196078433], + [0.8549019607843137,0.0,0.1450980392156863], + [0.8470588235294118,0.0,0.15294117647058825], + [0.83921568627451,0.0,0.16078431372548999], + [0.8313725490196078,0.0,0.16862745098039217], + [0.8235294117647058,0.0,0.17647058823529413], + [0.8156862745098039,0.0,0.1843137254901961], + [0.807843137254902,0.0,0.19215686274509805], + [0.8,0.0,0.2], + [0.792156862745098,0.0,0.20784313725490197], + [0.7843137254901961,0.0,0.21568627450980393], + [0.7764705882352941,0.0,0.2235294117647059], + [0.7686274509803921,0.0,0.23137254901960785], + [0.7607843137254902,0.0,0.23921568627450981], + [0.7529411764705882,0.0,0.24705882352941178], + [0.7450980392156863,0.0,0.2549019607843137], + [0.7372549019607844,0.0,0.2627450980392157], + [0.7294117647058824,0.0,0.27058823529411763], + [0.7215686274509804,0.0,0.2784313725490196], + [0.7137254901960787,0.0,0.28627450980392133], + [0.7058823529411764,0.0,0.29411764705882354], + [0.6980392156862745,0.0,0.30196078431372547], + [0.6901960784313725,0.0,0.30980392156862746], + [0.6823529411764706,0.0,0.3176470588235294], + [0.6745098039215687,0.0,0.3254901960784314], + [0.6666666666666667,0.0,0.3333333333333333], + [0.6588235294117647,0.0,0.3411764705882353], + [0.6509803921568628,0.0,0.34901960784313724], + [0.6431372549019607,0.0,0.3568627450980392], + [0.6352941176470588,0.0,0.36470588235294116], + [0.6274509803921569,0.0,0.37254901960784315], + [0.6196078431372549,0.0,0.3803921568627451], + [0.611764705882353,0.0,0.38823529411764707], + [0.603921568627451,0.0,0.396078431372549], + [0.596078431372549,0.0,0.403921568627451], + [0.5882352941176473,0.0,0.4117647058823527], + [0.580392156862745,0.0,0.4196078431372549], + [0.5725490196078431,0.0,0.42745098039215684], + [0.5647058823529412,0.0,0.43529411764705883], + [0.5568627450980392,0.0,0.44313725490196076], + [0.5490196078431373,0.0,0.45098039215686275], + [0.5411764705882354,0.0,0.4588235294117647], + [0.5333333333333333,0.0,0.4666666666666667], + [0.5254901960784314,0.0,0.4745098039215686], + [0.5176470588235293,0.0,0.4823529411764706], + [0.5098039215686274,0.0,0.49019607843137253], + [0.5019607843137255,0.0,0.4980392156862745], + [0.49411764705882355,0.0,0.5058823529411764], + [0.4862745098039216,0.0,0.5137254901960784], + [0.4784313725490196,0.0,0.5215686274509804], + [0.47058823529411764,0.0,0.5294117647058824], + [0.46274509803921593,0.0,0.5372549019607841], + [0.4549019607843138,0.0,0.5450980392156862], + [0.44705882352941173,0.0,0.5529411764705883], + [0.4392156862745098,0.0,0.5607843137254902], + [0.43137254901960786,0.0,0.5686274509803921], + [0.42352941176470593,0.0,0.5764705882352941], + [0.4156862745098039,0.0,0.5843137254901961], + [0.40784313725490196,0.0,0.592156862745098], + [0.4,0.0,0.6], + [0.3921568627450981,0.0,0.6078431372549019], + [0.38431372549019605,0.0,0.615686274509804], + [0.3764705882352941,0.0,0.6235294117647059], + [0.3686274509803922,0.0,0.6313725490196078], + [0.36078431372549025,0.0,0.6392156862745098], + [0.3529411764705882,0.0,0.6470588235294118], + [0.34509803921568627,0.0,0.6549019607843137], + [0.33725490196078456,0.0,0.6627450980392154], + [0.3294117647058824,0.0,0.6705882352941176], + [0.32156862745098036,0.0,0.6784313725490196], + [0.3137254901960784,0.0,0.6862745098039216], + [0.3058823529411765,0.0,0.6941176470588235], + [0.29803921568627456,0.0,0.7019607843137254], + [0.2901960784313725,0.0,0.7098039215686275], + [0.2823529411764706,0.0,0.7176470588235294], + [0.27450980392156865,0.0,0.7254901960784313], + [0.2666666666666667,0.0,0.7333333333333333], + [0.2588235294117647,0.0,0.7411764705882353], + [0.25098039215686274,0.0,0.7490196078431373], + [0.2431372549019608,0.0,0.7568627450980392], + [0.23529411764705888,0.0,0.7647058823529411], + [0.22745098039215683,0.0,0.7725490196078432], + [0.2196078431372549,0.0,0.7803921568627451], + [0.2117647058823532,0.0,0.7882352941176468], + [0.20392156862745103,0.0,0.796078431372549], + [0.196078431372549,0.0,0.803921568627451], + [0.18823529411764706,0.0,0.8117647058823529], + [0.18039215686274512,0.0,0.8196078431372549], + [0.1725490196078432,0.0,0.8274509803921568], + [0.16470588235294115,0.0,0.8352941176470589], + [0.1568627450980392,0.0,0.8431372549019608], + [0.14901960784313728,0.0,0.8509803921568627], + [0.14117647058823535,0.0,0.8588235294117647], + [0.1333333333333333,0.0,0.8666666666666667], + [0.12549019607843137,0.0,0.8745098039215686], + [0.11764705882352944,0.0,0.8823529411764706], + [0.1098039215686275,0.0,0.8901960784313725], + [0.10196078431372546,0.0,0.8980392156862745], + [0.09411764705882353,0.0,0.9058823529411765], + [0.08627450980392182,0.0,0.9137254901960782], + [0.07843137254901966,0.0,0.9215686274509803], + [0.07058823529411762,0.0,0.9294117647058824], + [0.06274509803921569,0.0,0.9372549019607843], + [0.05490196078431375,0.0,0.9450980392156862], + [0.04705882352941182,0.0,0.9529411764705882], + [0.039215686274509776,0.0,0.9607843137254902], + [0.03137254901960784,0.0,0.9686274509803922], + [0.02352941176470591,0.0,0.9764705882352941], + [0.015686274509803977,0.0,0.984313725490196], + [0.007843137254901933,0.0,0.9921568627450981], + [0.0,0.0,1.0] ], + bwr: [ + [0.0,0.0,1.0], + [0.00784313725490196,0.00784313725490196,1.0], + [0.01568627450980392,0.01568627450980392,1.0], + [0.023529411764705882,0.023529411764705882,1.0], + [0.03137254901960784,0.03137254901960784,1.0], + [0.0392156862745098,0.0392156862745098,1.0], + [0.047058823529411764,0.047058823529411764,1.0], + [0.054901960784313725,0.054901960784313725,1.0], + [0.06274509803921569,0.06274509803921569,1.0], + [0.07058823529411765,0.07058823529411765,1.0], + [0.0784313725490196,0.0784313725490196,1.0], + [0.08627450980392157,0.08627450980392157,1.0], + [0.09411764705882353,0.09411764705882353,1.0], + [0.10196078431372549,0.10196078431372549,1.0], + [0.10980392156862745,0.10980392156862745,1.0], + [0.11764705882352941,0.11764705882352941,1.0], + [0.12549019607843137,0.12549019607843137,1.0], + [0.13333333333333333,0.13333333333333333,1.0], + [0.1411764705882353,0.1411764705882353,1.0], + [0.14901960784313725,0.14901960784313725,1.0], + [0.1568627450980392,0.1568627450980392,1.0], + [0.16470588235294117,0.16470588235294117,1.0], + [0.17254901960784313,0.17254901960784313,1.0], + [0.1803921568627451,0.1803921568627451,1.0], + [0.18823529411764706,0.18823529411764706,1.0], + [0.19607843137254902,0.19607843137254902,1.0], + [0.20392156862745098,0.20392156862745098,1.0], + [0.21176470588235294,0.21176470588235294,1.0], + [0.2196078431372549,0.2196078431372549,1.0], + [0.22745098039215686,0.22745098039215686,1.0], + [0.23529411764705882,0.23529411764705882,1.0], + [0.24313725490196078,0.24313725490196078,1.0], + [0.25098039215686274,0.25098039215686274,1.0], + [0.2588235294117647,0.2588235294117647,1.0], + [0.26666666666666666,0.26666666666666666,1.0], + [0.27450980392156865,0.27450980392156865,1.0], + [0.2823529411764706,0.2823529411764706,1.0], + [0.2901960784313725,0.2901960784313725,1.0], + [0.2980392156862745,0.2980392156862745,1.0], + [0.3058823529411765,0.3058823529411765,1.0], + [0.3137254901960784,0.3137254901960784,1.0], + [0.32156862745098036,0.32156862745098036,1.0], + [0.32941176470588235,0.32941176470588235,1.0], + [0.33725490196078434,0.33725490196078434,1.0], + [0.34509803921568627,0.34509803921568627,1.0], + [0.3529411764705882,0.3529411764705882,1.0], + [0.3607843137254902,0.3607843137254902,1.0], + [0.3686274509803922,0.3686274509803922,1.0], + [0.3764705882352941,0.3764705882352941,1.0], + [0.38431372549019605,0.38431372549019605,1.0], + [0.39215686274509803,0.39215686274509803,1.0], + [0.4,0.4,1.0], + [0.40784313725490196,0.40784313725490196,1.0], + [0.4156862745098039,0.4156862745098039,1.0], + [0.4235294117647059,0.4235294117647059,1.0], + [0.43137254901960786,0.43137254901960786,1.0], + [0.4392156862745098,0.4392156862745098,1.0], + [0.44705882352941173,0.44705882352941173,1.0], + [0.4549019607843137,0.4549019607843137,1.0], + [0.4627450980392157,0.4627450980392157,1.0], + [0.47058823529411764,0.47058823529411764,1.0], + [0.4784313725490196,0.4784313725490196,1.0], + [0.48627450980392156,0.48627450980392156,1.0], + [0.49411764705882355,0.49411764705882355,1.0], + [0.5019607843137255,0.5019607843137255,1.0], + [0.5098039215686274,0.5098039215686274,1.0], + [0.5176470588235293,0.5176470588235293,1.0], + [0.5254901960784314,0.5254901960784314,1.0], + [0.5333333333333333,0.5333333333333333,1.0], + [0.5411764705882353,0.5411764705882353,1.0], + [0.5490196078431373,0.5490196078431373,1.0], + [0.5568627450980392,0.5568627450980392,1.0], + [0.5647058823529412,0.5647058823529412,1.0], + [0.5725490196078431,0.5725490196078431,1.0], + [0.580392156862745,0.580392156862745,1.0], + [0.5882352941176471,0.5882352941176471,1.0], + [0.596078431372549,0.596078431372549,1.0], + [0.6039215686274509,0.6039215686274509,1.0], + [0.611764705882353,0.611764705882353,1.0], + [0.6196078431372549,0.6196078431372549,1.0], + [0.6274509803921569,0.6274509803921569,1.0], + [0.6352941176470588,0.6352941176470588,1.0], + [0.6431372549019607,0.6431372549019607,1.0], + [0.6509803921568628,0.6509803921568628,1.0], + [0.6588235294117647,0.6588235294117647,1.0], + [0.6666666666666666,0.6666666666666666,1.0], + [0.6745098039215687,0.6745098039215687,1.0], + [0.6823529411764706,0.6823529411764706,1.0], + [0.6901960784313725,0.6901960784313725,1.0], + [0.6980392156862745,0.6980392156862745,1.0], + [0.7058823529411764,0.7058823529411764,1.0], + [0.7137254901960784,0.7137254901960784,1.0], + [0.7215686274509804,0.7215686274509804,1.0], + [0.7294117647058823,0.7294117647058823,1.0], + [0.7372549019607844,0.7372549019607844,1.0], + [0.7450980392156863,0.7450980392156863,1.0], + [0.7529411764705882,0.7529411764705882,1.0], + [0.7607843137254902,0.7607843137254902,1.0], + [0.7686274509803921,0.7686274509803921,1.0], + [0.7764705882352941,0.7764705882352941,1.0], + [0.7843137254901961,0.7843137254901961,1.0], + [0.792156862745098,0.792156862745098,1.0], + [0.8,0.8,1.0], + [0.807843137254902,0.807843137254902,1.0], + [0.8156862745098039,0.8156862745098039,1.0], + [0.8235294117647058,0.8235294117647058,1.0], + [0.8313725490196078,0.8313725490196078,1.0], + [0.8392156862745098,0.8392156862745098,1.0], + [0.8470588235294118,0.8470588235294118,1.0], + [0.8549019607843137,0.8549019607843137,1.0], + [0.8627450980392157,0.8627450980392157,1.0], + [0.8705882352941177,0.8705882352941177,1.0], + [0.8784313725490196,0.8784313725490196,1.0], + [0.8862745098039215,0.8862745098039215,1.0], + [0.8941176470588235,0.8941176470588235,1.0], + [0.9019607843137255,0.9019607843137255,1.0], + [0.9098039215686274,0.9098039215686274,1.0], + [0.9176470588235294,0.9176470588235294,1.0], + [0.9254901960784314,0.9254901960784314,1.0], + [0.9333333333333333,0.9333333333333333,1.0], + [0.9411764705882353,0.9411764705882353,1.0], + [0.9490196078431372,0.9490196078431372,1.0], + [0.9568627450980391,0.9568627450980391,1.0], + [0.9647058823529412,0.9647058823529412,1.0], + [0.9725490196078431,0.9725490196078431,1.0], + [0.9803921568627451,0.9803921568627451,1.0], + [0.9882352941176471,0.9882352941176471,1.0], + [0.996078431372549,0.996078431372549,1.0], + [1.0,0.996078431372549,0.996078431372549], + [1.0,0.9882352941176471,0.9882352941176471], + [1.0,0.9803921568627451,0.9803921568627451], + [1.0,0.9725490196078431,0.9725490196078431], + [1.0,0.9647058823529414,0.9647058823529414], + [1.0,0.9568627450980393,0.9568627450980393], + [1.0,0.9490196078431372,0.9490196078431372], + [1.0,0.9411764705882353,0.9411764705882353], + [1.0,0.9333333333333333,0.9333333333333333], + [1.0,0.9254901960784314,0.9254901960784314], + [1.0,0.9176470588235294,0.9176470588235294], + [1.0,0.9098039215686274,0.9098039215686274], + [1.0,0.9019607843137255,0.9019607843137255], + [1.0,0.8941176470588236,0.8941176470588236], + [1.0,0.8862745098039215,0.8862745098039215], + [1.0,0.8784313725490196,0.8784313725490196], + [1.0,0.8705882352941177,0.8705882352941177], + [1.0,0.8627450980392157,0.8627450980392157], + [1.0,0.8549019607843137,0.8549019607843137], + [1.0,0.8470588235294118,0.8470588235294118], + [1.0,0.83921568627451,0.83921568627451], + [1.0,0.8313725490196078,0.8313725490196078], + [1.0,0.8235294117647058,0.8235294117647058], + [1.0,0.8156862745098039,0.8156862745098039], + [1.0,0.807843137254902,0.807843137254902], + [1.0,0.8,0.8], + [1.0,0.792156862745098,0.792156862745098], + [1.0,0.7843137254901961,0.7843137254901961], + [1.0,0.7764705882352941,0.7764705882352941], + [1.0,0.7686274509803921,0.7686274509803921], + [1.0,0.7607843137254902,0.7607843137254902], + [1.0,0.7529411764705882,0.7529411764705882], + [1.0,0.7450980392156863,0.7450980392156863], + [1.0,0.7372549019607844,0.7372549019607844], + [1.0,0.7294117647058824,0.7294117647058824], + [1.0,0.7215686274509804,0.7215686274509804], + [1.0,0.7137254901960787,0.7137254901960787], + [1.0,0.7058823529411764,0.7058823529411764], + [1.0,0.6980392156862745,0.6980392156862745], + [1.0,0.6901960784313725,0.6901960784313725], + [1.0,0.6823529411764706,0.6823529411764706], + [1.0,0.6745098039215687,0.6745098039215687], + [1.0,0.6666666666666667,0.6666666666666667], + [1.0,0.6588235294117647,0.6588235294117647], + [1.0,0.6509803921568628,0.6509803921568628], + [1.0,0.6431372549019607,0.6431372549019607], + [1.0,0.6352941176470588,0.6352941176470588], + [1.0,0.6274509803921569,0.6274509803921569], + [1.0,0.6196078431372549,0.6196078431372549], + [1.0,0.611764705882353,0.611764705882353], + [1.0,0.603921568627451,0.603921568627451], + [1.0,0.596078431372549,0.596078431372549], + [1.0,0.5882352941176473,0.5882352941176473], + [1.0,0.580392156862745,0.580392156862745], + [1.0,0.5725490196078431,0.5725490196078431], + [1.0,0.5647058823529412,0.5647058823529412], + [1.0,0.5568627450980392,0.5568627450980392], + [1.0,0.5490196078431373,0.5490196078431373], + [1.0,0.5411764705882354,0.5411764705882354], + [1.0,0.5333333333333333,0.5333333333333333], + [1.0,0.5254901960784314,0.5254901960784314], + [1.0,0.5176470588235293,0.5176470588235293], + [1.0,0.5098039215686274,0.5098039215686274], + [1.0,0.5019607843137255,0.5019607843137255], + [1.0,0.49411764705882355,0.49411764705882355], + [1.0,0.4862745098039216,0.4862745098039216], + [1.0,0.4784313725490196,0.4784313725490196], + [1.0,0.47058823529411764,0.47058823529411764], + [1.0,0.46274509803921593,0.46274509803921593], + [1.0,0.4549019607843138,0.4549019607843138], + [1.0,0.44705882352941173,0.44705882352941173], + [1.0,0.4392156862745098,0.4392156862745098], + [1.0,0.43137254901960786,0.43137254901960786], + [1.0,0.42352941176470593,0.42352941176470593], + [1.0,0.4156862745098039,0.4156862745098039], + [1.0,0.40784313725490196,0.40784313725490196], + [1.0,0.4,0.4], + [1.0,0.3921568627450981,0.3921568627450981], + [1.0,0.38431372549019605,0.38431372549019605], + [1.0,0.3764705882352941,0.3764705882352941], + [1.0,0.3686274509803922,0.3686274509803922], + [1.0,0.36078431372549025,0.36078431372549025], + [1.0,0.3529411764705882,0.3529411764705882], + [1.0,0.34509803921568627,0.34509803921568627], + [1.0,0.33725490196078456,0.33725490196078456], + [1.0,0.3294117647058824,0.3294117647058824], + [1.0,0.32156862745098036,0.32156862745098036], + [1.0,0.3137254901960784,0.3137254901960784], + [1.0,0.3058823529411765,0.3058823529411765], + [1.0,0.29803921568627456,0.29803921568627456], + [1.0,0.2901960784313725,0.2901960784313725], + [1.0,0.2823529411764706,0.2823529411764706], + [1.0,0.27450980392156865,0.27450980392156865], + [1.0,0.2666666666666667,0.2666666666666667], + [1.0,0.2588235294117647,0.2588235294117647], + [1.0,0.25098039215686274,0.25098039215686274], + [1.0,0.2431372549019608,0.2431372549019608], + [1.0,0.23529411764705888,0.23529411764705888], + [1.0,0.22745098039215683,0.22745098039215683], + [1.0,0.2196078431372549,0.2196078431372549], + [1.0,0.2117647058823532,0.2117647058823532], + [1.0,0.20392156862745103,0.20392156862745103], + [1.0,0.196078431372549,0.196078431372549], + [1.0,0.18823529411764706,0.18823529411764706], + [1.0,0.18039215686274512,0.18039215686274512], + [1.0,0.1725490196078432,0.1725490196078432], + [1.0,0.16470588235294115,0.16470588235294115], + [1.0,0.1568627450980392,0.1568627450980392], + [1.0,0.14901960784313728,0.14901960784313728], + [1.0,0.14117647058823535,0.14117647058823535], + [1.0,0.1333333333333333,0.1333333333333333], + [1.0,0.12549019607843137,0.12549019607843137], + [1.0,0.11764705882352944,0.11764705882352944], + [1.0,0.1098039215686275,0.1098039215686275], + [1.0,0.10196078431372546,0.10196078431372546], + [1.0,0.09411764705882353,0.09411764705882353], + [1.0,0.08627450980392182,0.08627450980392182], + [1.0,0.07843137254901966,0.07843137254901966], + [1.0,0.07058823529411762,0.07058823529411762], + [1.0,0.06274509803921569,0.06274509803921569], + [1.0,0.05490196078431375,0.05490196078431375], + [1.0,0.04705882352941182,0.04705882352941182], + [1.0,0.039215686274509776,0.039215686274509776], + [1.0,0.03137254901960784,0.03137254901960784], + [1.0,0.02352941176470591,0.02352941176470591], + [1.0,0.015686274509803977,0.015686274509803977], + [1.0,0.007843137254901933,0.007843137254901933], + [1.0,0.0,0.0] ], + bwr_r: [ + [1.0,0.0,0.0], + [1.0,0.00784313725490196,0.00784313725490196], + [1.0,0.01568627450980392,0.01568627450980392], + [1.0,0.023529411764705882,0.023529411764705882], + [1.0,0.03137254901960784,0.03137254901960784], + [1.0,0.0392156862745098,0.0392156862745098], + [1.0,0.047058823529411764,0.047058823529411764], + [1.0,0.054901960784313725,0.054901960784313725], + [1.0,0.06274509803921569,0.06274509803921569], + [1.0,0.07058823529411765,0.07058823529411765], + [1.0,0.0784313725490196,0.0784313725490196], + [1.0,0.08627450980392157,0.08627450980392157], + [1.0,0.09411764705882353,0.09411764705882353], + [1.0,0.10196078431372549,0.10196078431372549], + [1.0,0.10980392156862745,0.10980392156862745], + [1.0,0.11764705882352941,0.11764705882352941], + [1.0,0.12549019607843137,0.12549019607843137], + [1.0,0.13333333333333333,0.13333333333333333], + [1.0,0.1411764705882353,0.1411764705882353], + [1.0,0.14901960784313725,0.14901960784313725], + [1.0,0.1568627450980392,0.1568627450980392], + [1.0,0.16470588235294117,0.16470588235294117], + [1.0,0.17254901960784313,0.17254901960784313], + [1.0,0.1803921568627451,0.1803921568627451], + [1.0,0.18823529411764706,0.18823529411764706], + [1.0,0.19607843137254902,0.19607843137254902], + [1.0,0.20392156862745098,0.20392156862745098], + [1.0,0.21176470588235294,0.21176470588235294], + [1.0,0.2196078431372549,0.2196078431372549], + [1.0,0.22745098039215686,0.22745098039215686], + [1.0,0.23529411764705882,0.23529411764705882], + [1.0,0.24313725490196078,0.24313725490196078], + [1.0,0.25098039215686274,0.25098039215686274], + [1.0,0.2588235294117647,0.2588235294117647], + [1.0,0.26666666666666666,0.26666666666666666], + [1.0,0.27450980392156865,0.27450980392156865], + [1.0,0.2823529411764706,0.2823529411764706], + [1.0,0.2901960784313725,0.2901960784313725], + [1.0,0.2980392156862745,0.2980392156862745], + [1.0,0.3058823529411765,0.3058823529411765], + [1.0,0.3137254901960784,0.3137254901960784], + [1.0,0.32156862745098036,0.32156862745098036], + [1.0,0.32941176470588235,0.32941176470588235], + [1.0,0.33725490196078434,0.33725490196078434], + [1.0,0.34509803921568627,0.34509803921568627], + [1.0,0.3529411764705882,0.3529411764705882], + [1.0,0.3607843137254902,0.3607843137254902], + [1.0,0.3686274509803922,0.3686274509803922], + [1.0,0.3764705882352941,0.3764705882352941], + [1.0,0.38431372549019605,0.38431372549019605], + [1.0,0.39215686274509803,0.39215686274509803], + [1.0,0.4,0.4], + [1.0,0.40784313725490196,0.40784313725490196], + [1.0,0.4156862745098039,0.4156862745098039], + [1.0,0.4235294117647059,0.4235294117647059], + [1.0,0.43137254901960786,0.43137254901960786], + [1.0,0.4392156862745098,0.4392156862745098], + [1.0,0.44705882352941173,0.44705882352941173], + [1.0,0.4549019607843137,0.4549019607843137], + [1.0,0.4627450980392157,0.4627450980392157], + [1.0,0.47058823529411764,0.47058823529411764], + [1.0,0.4784313725490196,0.4784313725490196], + [1.0,0.48627450980392156,0.48627450980392156], + [1.0,0.49411764705882355,0.49411764705882355], + [1.0,0.5019607843137255,0.5019607843137255], + [1.0,0.5098039215686274,0.5098039215686274], + [1.0,0.5176470588235293,0.5176470588235293], + [1.0,0.5254901960784314,0.5254901960784314], + [1.0,0.5333333333333333,0.5333333333333333], + [1.0,0.5411764705882353,0.5411764705882353], + [1.0,0.5490196078431373,0.5490196078431373], + [1.0,0.5568627450980392,0.5568627450980392], + [1.0,0.5647058823529412,0.5647058823529412], + [1.0,0.5725490196078431,0.5725490196078431], + [1.0,0.580392156862745,0.580392156862745], + [1.0,0.5882352941176471,0.5882352941176471], + [1.0,0.596078431372549,0.596078431372549], + [1.0,0.6039215686274509,0.6039215686274509], + [1.0,0.611764705882353,0.611764705882353], + [1.0,0.6196078431372549,0.6196078431372549], + [1.0,0.6274509803921569,0.6274509803921569], + [1.0,0.6352941176470588,0.6352941176470588], + [1.0,0.6431372549019607,0.6431372549019607], + [1.0,0.6509803921568628,0.6509803921568628], + [1.0,0.6588235294117647,0.6588235294117647], + [1.0,0.6666666666666666,0.6666666666666666], + [1.0,0.6745098039215687,0.6745098039215687], + [1.0,0.6823529411764706,0.6823529411764706], + [1.0,0.6901960784313725,0.6901960784313725], + [1.0,0.6980392156862745,0.6980392156862745], + [1.0,0.7058823529411764,0.7058823529411764], + [1.0,0.7137254901960784,0.7137254901960784], + [1.0,0.7215686274509804,0.7215686274509804], + [1.0,0.7294117647058823,0.7294117647058823], + [1.0,0.7372549019607844,0.7372549019607844], + [1.0,0.7450980392156863,0.7450980392156863], + [1.0,0.7529411764705882,0.7529411764705882], + [1.0,0.7607843137254902,0.7607843137254902], + [1.0,0.7686274509803921,0.7686274509803921], + [1.0,0.7764705882352941,0.7764705882352941], + [1.0,0.7843137254901961,0.7843137254901961], + [1.0,0.792156862745098,0.792156862745098], + [1.0,0.8,0.8], + [1.0,0.807843137254902,0.807843137254902], + [1.0,0.8156862745098039,0.8156862745098039], + [1.0,0.8235294117647058,0.8235294117647058], + [1.0,0.8313725490196078,0.8313725490196078], + [1.0,0.8392156862745098,0.8392156862745098], + [1.0,0.8470588235294118,0.8470588235294118], + [1.0,0.8549019607843137,0.8549019607843137], + [1.0,0.8627450980392157,0.8627450980392157], + [1.0,0.8705882352941177,0.8705882352941177], + [1.0,0.8784313725490196,0.8784313725490196], + [1.0,0.8862745098039215,0.8862745098039215], + [1.0,0.8941176470588235,0.8941176470588235], + [1.0,0.9019607843137255,0.9019607843137255], + [1.0,0.9098039215686274,0.9098039215686274], + [1.0,0.9176470588235294,0.9176470588235294], + [1.0,0.9254901960784314,0.9254901960784314], + [1.0,0.9333333333333333,0.9333333333333333], + [1.0,0.9411764705882353,0.9411764705882353], + [1.0,0.9490196078431372,0.9490196078431372], + [1.0,0.9568627450980391,0.9568627450980391], + [1.0,0.9647058823529412,0.9647058823529412], + [1.0,0.9725490196078431,0.9725490196078431], + [1.0,0.9803921568627451,0.9803921568627451], + [1.0,0.9882352941176471,0.9882352941176471], + [1.0,0.996078431372549,0.996078431372549], + [0.996078431372549,0.996078431372549,1.0], + [0.9882352941176471,0.9882352941176471,1.0], + [0.9803921568627451,0.9803921568627451,1.0], + [0.9725490196078431,0.9725490196078431,1.0], + [0.9647058823529414,0.9647058823529414,1.0], + [0.9568627450980393,0.9568627450980393,1.0], + [0.9490196078431372,0.9490196078431372,1.0], + [0.9411764705882353,0.9411764705882353,1.0], + [0.9333333333333333,0.9333333333333333,1.0], + [0.9254901960784314,0.9254901960784314,1.0], + [0.9176470588235294,0.9176470588235294,1.0], + [0.9098039215686274,0.9098039215686274,1.0], + [0.9019607843137255,0.9019607843137255,1.0], + [0.8941176470588236,0.8941176470588236,1.0], + [0.8862745098039215,0.8862745098039215,1.0], + [0.8784313725490196,0.8784313725490196,1.0], + [0.8705882352941177,0.8705882352941177,1.0], + [0.8627450980392157,0.8627450980392157,1.0], + [0.8549019607843137,0.8549019607843137,1.0], + [0.8470588235294118,0.8470588235294118,1.0], + [0.83921568627451,0.83921568627451,1.0], + [0.8313725490196078,0.8313725490196078,1.0], + [0.8235294117647058,0.8235294117647058,1.0], + [0.8156862745098039,0.8156862745098039,1.0], + [0.807843137254902,0.807843137254902,1.0], + [0.8,0.8,1.0], + [0.792156862745098,0.792156862745098,1.0], + [0.7843137254901961,0.7843137254901961,1.0], + [0.7764705882352941,0.7764705882352941,1.0], + [0.7686274509803921,0.7686274509803921,1.0], + [0.7607843137254902,0.7607843137254902,1.0], + [0.7529411764705882,0.7529411764705882,1.0], + [0.7450980392156863,0.7450980392156863,1.0], + [0.7372549019607844,0.7372549019607844,1.0], + [0.7294117647058824,0.7294117647058824,1.0], + [0.7215686274509804,0.7215686274509804,1.0], + [0.7137254901960787,0.7137254901960787,1.0], + [0.7058823529411764,0.7058823529411764,1.0], + [0.6980392156862745,0.6980392156862745,1.0], + [0.6901960784313725,0.6901960784313725,1.0], + [0.6823529411764706,0.6823529411764706,1.0], + [0.6745098039215687,0.6745098039215687,1.0], + [0.6666666666666667,0.6666666666666667,1.0], + [0.6588235294117647,0.6588235294117647,1.0], + [0.6509803921568628,0.6509803921568628,1.0], + [0.6431372549019607,0.6431372549019607,1.0], + [0.6352941176470588,0.6352941176470588,1.0], + [0.6274509803921569,0.6274509803921569,1.0], + [0.6196078431372549,0.6196078431372549,1.0], + [0.611764705882353,0.611764705882353,1.0], + [0.603921568627451,0.603921568627451,1.0], + [0.596078431372549,0.596078431372549,1.0], + [0.5882352941176473,0.5882352941176473,1.0], + [0.580392156862745,0.580392156862745,1.0], + [0.5725490196078431,0.5725490196078431,1.0], + [0.5647058823529412,0.5647058823529412,1.0], + [0.5568627450980392,0.5568627450980392,1.0], + [0.5490196078431373,0.5490196078431373,1.0], + [0.5411764705882354,0.5411764705882354,1.0], + [0.5333333333333333,0.5333333333333333,1.0], + [0.5254901960784314,0.5254901960784314,1.0], + [0.5176470588235293,0.5176470588235293,1.0], + [0.5098039215686274,0.5098039215686274,1.0], + [0.5019607843137255,0.5019607843137255,1.0], + [0.49411764705882355,0.49411764705882355,1.0], + [0.4862745098039216,0.4862745098039216,1.0], + [0.4784313725490196,0.4784313725490196,1.0], + [0.47058823529411764,0.47058823529411764,1.0], + [0.46274509803921593,0.46274509803921593,1.0], + [0.4549019607843138,0.4549019607843138,1.0], + [0.44705882352941173,0.44705882352941173,1.0], + [0.4392156862745098,0.4392156862745098,1.0], + [0.43137254901960786,0.43137254901960786,1.0], + [0.42352941176470593,0.42352941176470593,1.0], + [0.4156862745098039,0.4156862745098039,1.0], + [0.40784313725490196,0.40784313725490196,1.0], + [0.4,0.4,1.0], + [0.3921568627450981,0.3921568627450981,1.0], + [0.38431372549019605,0.38431372549019605,1.0], + [0.3764705882352941,0.3764705882352941,1.0], + [0.3686274509803922,0.3686274509803922,1.0], + [0.36078431372549025,0.36078431372549025,1.0], + [0.3529411764705882,0.3529411764705882,1.0], + [0.34509803921568627,0.34509803921568627,1.0], + [0.33725490196078456,0.33725490196078456,1.0], + [0.3294117647058824,0.3294117647058824,1.0], + [0.32156862745098036,0.32156862745098036,1.0], + [0.3137254901960784,0.3137254901960784,1.0], + [0.3058823529411765,0.3058823529411765,1.0], + [0.29803921568627456,0.29803921568627456,1.0], + [0.2901960784313725,0.2901960784313725,1.0], + [0.2823529411764706,0.2823529411764706,1.0], + [0.27450980392156865,0.27450980392156865,1.0], + [0.2666666666666667,0.2666666666666667,1.0], + [0.2588235294117647,0.2588235294117647,1.0], + [0.25098039215686274,0.25098039215686274,1.0], + [0.2431372549019608,0.2431372549019608,1.0], + [0.23529411764705888,0.23529411764705888,1.0], + [0.22745098039215683,0.22745098039215683,1.0], + [0.2196078431372549,0.2196078431372549,1.0], + [0.2117647058823532,0.2117647058823532,1.0], + [0.20392156862745103,0.20392156862745103,1.0], + [0.196078431372549,0.196078431372549,1.0], + [0.18823529411764706,0.18823529411764706,1.0], + [0.18039215686274512,0.18039215686274512,1.0], + [0.1725490196078432,0.1725490196078432,1.0], + [0.16470588235294115,0.16470588235294115,1.0], + [0.1568627450980392,0.1568627450980392,1.0], + [0.14901960784313728,0.14901960784313728,1.0], + [0.14117647058823535,0.14117647058823535,1.0], + [0.1333333333333333,0.1333333333333333,1.0], + [0.12549019607843137,0.12549019607843137,1.0], + [0.11764705882352944,0.11764705882352944,1.0], + [0.1098039215686275,0.1098039215686275,1.0], + [0.10196078431372546,0.10196078431372546,1.0], + [0.09411764705882353,0.09411764705882353,1.0], + [0.08627450980392182,0.08627450980392182,1.0], + [0.07843137254901966,0.07843137254901966,1.0], + [0.07058823529411762,0.07058823529411762,1.0], + [0.06274509803921569,0.06274509803921569,1.0], + [0.05490196078431375,0.05490196078431375,1.0], + [0.04705882352941182,0.04705882352941182,1.0], + [0.039215686274509776,0.039215686274509776,1.0], + [0.03137254901960784,0.03137254901960784,1.0], + [0.02352941176470591,0.02352941176470591,1.0], + [0.015686274509803977,0.015686274509803977,1.0], + [0.007843137254901933,0.007843137254901933,1.0], + [0.0,0.0,1.0] ], + cividis: [ + [0.0,0.135112,0.304751], + [0.0,0.138068,0.311105], + [0.0,0.141013,0.317579], + [0.0,0.143951,0.323982], + [0.0,0.146877,0.330479], + [0.0,0.149791,0.337065], + [0.0,0.152673,0.343704], + [0.0,0.155377,0.3505], + [0.0,0.157932,0.357521], + [0.0,0.160495,0.364534], + [0.0,0.163058,0.371608], + [0.0,0.165621,0.378769], + [0.0,0.168204,0.385902], + [0.0,0.1708,0.3931], + [0.0,0.17342,0.400353], + [0.0,0.176082,0.407577], + [0.0,0.178802,0.414764], + [0.0,0.18161,0.421859], + [0.0,0.18455,0.428802], + [0.0,0.186915,0.435532], + [0.0,0.188769,0.439563], + [0.0,0.19095,0.441085], + [0.0,0.193366,0.441561], + [0.003602,0.195911,0.441564], + [0.017852,0.198528,0.441248], + [0.03211,0.201199,0.440785], + [0.046205,0.203903,0.440196], + [0.058378,0.206629,0.439531], + [0.068968,0.209372,0.438863], + [0.078624,0.212122,0.438105], + [0.087465,0.214879,0.437342], + [0.095645,0.217643,0.436593], + [0.103401,0.220406,0.43579], + [0.110658,0.22317,0.435067], + [0.117612,0.225935,0.434308], + [0.124291,0.228697,0.433547], + [0.130669,0.231458,0.43284], + [0.13683,0.234216,0.432148], + [0.142852,0.236972,0.431404], + [0.148638,0.239724,0.430752], + [0.154261,0.242475,0.43012], + [0.159733,0.245221,0.429528], + [0.165113,0.247965,0.428908], + [0.170362,0.250707,0.428325], + [0.17549,0.253444,0.42779], + [0.180503,0.25618,0.427299], + [0.185453,0.258914,0.426788], + [0.190303,0.261644,0.426329], + [0.195057,0.264372,0.425924], + [0.199764,0.267099,0.425497], + [0.204385,0.269823,0.425126], + [0.208926,0.272546,0.424809], + [0.213431,0.275266,0.42448], + [0.217863,0.277985,0.424206], + [0.222264,0.280702,0.423914], + [0.226598,0.283419,0.423678], + [0.230871,0.286134,0.423498], + [0.23512,0.288848,0.423304], + [0.239312,0.291562,0.423167], + [0.243485,0.294274,0.423014], + [0.247605,0.296986,0.422917], + [0.251675,0.299698,0.422873], + [0.255731,0.302409,0.422814], + [0.25974,0.30512,0.42281], + [0.263738,0.307831,0.422789], + [0.267693,0.310542,0.422821], + [0.271639,0.313253,0.422837], + [0.275513,0.315965,0.422979], + [0.279411,0.318677,0.423031], + [0.28324,0.32139,0.423211], + [0.287065,0.324103,0.423373], + [0.290884,0.326816,0.423517], + [0.294669,0.329531,0.423716], + [0.298421,0.332247,0.423973], + [0.302169,0.334963,0.424213], + [0.305886,0.337681,0.424512], + [0.309601,0.340399,0.42479], + [0.313287,0.34312,0.42512], + [0.316941,0.345842,0.425512], + [0.320595,0.348565,0.425889], + [0.32425,0.351289,0.42625], + [0.327875,0.354016,0.42667], + [0.331474,0.356744,0.427144], + [0.335073,0.359474,0.427605], + [0.338673,0.362206,0.428053], + [0.342246,0.364939,0.428559], + [0.345793,0.367676,0.429127], + [0.349341,0.370414,0.429685], + [0.352892,0.373153,0.430226], + [0.356418,0.375896,0.430823], + [0.359916,0.378641,0.431501], + [0.363446,0.381388,0.432075], + [0.366923,0.384139,0.432796], + [0.37043,0.38689,0.433428], + [0.373884,0.389646,0.434209], + [0.377371,0.392404,0.43489], + [0.38083,0.395164,0.435653], + [0.384268,0.397928,0.436475], + [0.387705,0.400694,0.437305], + [0.391151,0.403464,0.438096], + [0.394568,0.406236,0.438986], + [0.397991,0.409011,0.439848], + [0.401418,0.41179,0.440708], + [0.40482,0.414572,0.441642], + [0.408226,0.417357,0.44257], + [0.411607,0.420145,0.443577], + [0.414992,0.422937,0.444578], + [0.418383,0.425733,0.44556], + [0.421748,0.428531,0.44664], + [0.42512,0.431334,0.447692], + [0.428462,0.43414,0.448864], + [0.431817,0.43695,0.449982], + [0.435168,0.439763,0.451134], + [0.438504,0.44258,0.452341], + [0.44181,0.445402,0.453659], + [0.445148,0.448226,0.454885], + [0.448447,0.451053,0.456264], + [0.451759,0.453887,0.457582], + [0.455072,0.456718,0.458976], + [0.458366,0.459552,0.460457], + [0.461616,0.462405,0.461969], + [0.464947,0.465241,0.463395], + [0.468254,0.468083,0.464908], + [0.471501,0.47096,0.466357], + [0.474812,0.473832,0.467681], + [0.478186,0.476699,0.468845], + [0.481622,0.479573,0.469767], + [0.485141,0.482451,0.470384], + [0.488697,0.485318,0.471008], + [0.492278,0.488198,0.471453], + [0.495913,0.491076,0.471751], + [0.499552,0.49396,0.472032], + [0.503185,0.496851,0.472305], + [0.506866,0.499743,0.472432], + [0.51054,0.502643,0.47255], + [0.514226,0.505546,0.47264], + [0.51792,0.508454,0.472707], + [0.521643,0.511367,0.472639], + [0.525348,0.514285,0.47266], + [0.529086,0.517207,0.472543], + [0.532829,0.520135,0.472401], + [0.536553,0.523067,0.472352], + [0.540307,0.526005,0.472163], + [0.544069,0.528948,0.471947], + [0.54784,0.531895,0.471704], + [0.551612,0.534849,0.471439], + [0.555393,0.537807,0.471147], + [0.559181,0.540771,0.470829], + [0.562972,0.543741,0.470488], + [0.566802,0.546715,0.469988], + [0.570607,0.549695,0.469593], + [0.574417,0.552682,0.469172], + [0.578236,0.555673,0.468724], + [0.582087,0.55867,0.468118], + [0.585916,0.561674,0.467618], + [0.589753,0.564682,0.46709], + [0.593622,0.567697,0.466401], + [0.597469,0.570718,0.465821], + [0.601354,0.573743,0.465074], + [0.605211,0.576777,0.464441], + [0.609105,0.579816,0.463638], + [0.612977,0.582861,0.46295], + [0.616852,0.585913,0.462237], + [0.620765,0.58897,0.461351], + [0.624654,0.592034,0.460583], + [0.628576,0.595104,0.459641], + [0.632506,0.59818,0.458668], + [0.636412,0.601264,0.457818], + [0.640352,0.604354,0.456791], + [0.64427,0.60745,0.455886], + [0.648222,0.610553,0.454801], + [0.652178,0.613664,0.453689], + [0.656114,0.61678,0.452702], + [0.660082,0.619904,0.451534], + [0.664055,0.623034,0.450338], + [0.668008,0.626171,0.44927], + [0.671991,0.629316,0.448018], + [0.675981,0.632468,0.446736], + [0.679979,0.635626,0.445424], + [0.68395,0.638793,0.444251], + [0.687957,0.641966,0.442886], + [0.691971,0.645145,0.441491], + [0.695985,0.648334,0.440072], + [0.700008,0.651529,0.438624], + [0.704037,0.654731,0.437147], + [0.708067,0.657942,0.435647], + [0.712105,0.66116,0.434117], + [0.716177,0.664384,0.432386], + [0.720222,0.667618,0.430805], + [0.724274,0.670859,0.429194], + [0.728334,0.674107,0.427554], + [0.732422,0.677364,0.425717], + [0.736488,0.680629,0.424028], + [0.740589,0.6839,0.422131], + [0.744664,0.687181,0.420393], + [0.748772,0.69047,0.418448], + [0.752886,0.693766,0.416472], + [0.756975,0.697071,0.414659], + [0.761096,0.700384,0.412638], + [0.765223,0.703705,0.410587], + [0.769353,0.707035,0.408516], + [0.773486,0.710373,0.406422], + [0.777651,0.713719,0.404112], + [0.781795,0.717074,0.401966], + [0.785965,0.720438,0.399613], + [0.790116,0.72381,0.397423], + [0.794298,0.72719,0.395016], + [0.79848,0.73058,0.392597], + [0.802667,0.733978,0.390153], + [0.806859,0.737385,0.387684], + [0.811054,0.740801,0.385198], + [0.815274,0.744226,0.382504], + [0.819499,0.747659,0.379785], + [0.823729,0.751101,0.377043], + [0.827959,0.754553,0.374292], + [0.832192,0.758014,0.371529], + [0.836429,0.761483,0.368747], + [0.840693,0.764962,0.365746], + [0.844957,0.76845,0.362741], + [0.849223,0.771947,0.359729], + [0.853515,0.775454,0.3565], + [0.857809,0.778969,0.353259], + [0.862105,0.782494,0.350011], + [0.866421,0.786028,0.346571], + [0.870717,0.789572,0.343333], + [0.875057,0.793125,0.339685], + [0.879378,0.796687,0.336241], + [0.88372,0.800258,0.332599], + [0.888081,0.803839,0.32877], + [0.89244,0.80743,0.324968], + [0.896818,0.81103,0.320982], + [0.901195,0.814639,0.317021], + [0.905589,0.818257,0.312889], + [0.91,0.821885,0.308594], + [0.914407,0.825522,0.304348], + [0.918828,0.829168,0.29996], + [0.923279,0.832822,0.295244], + [0.927724,0.836486,0.290611], + [0.93218,0.840159,0.28588], + [0.93666,0.843841,0.280876], + [0.941147,0.84753,0.275815], + [0.945654,0.851228,0.270532], + [0.950178,0.854933,0.265085], + [0.954725,0.858646,0.259365], + [0.959284,0.862365,0.253563], + [0.963872,0.866089,0.247445], + [0.968469,0.869819,0.24131], + [0.973114,0.87355,0.234677], + [0.97778,0.877281,0.227954], + [0.982497,0.881008,0.220878], + [0.987293,0.884718,0.213336], + [0.992218,0.888385,0.205468], + [0.994847,0.892954,0.203445], + [0.995249,0.898384,0.207561], + [0.995503,0.903866,0.21237], + [0.995737,0.909344,0.217772] ], + cividis_r: [ + [0.995737,0.909344,0.217772], + [0.995503,0.903866,0.21237], + [0.995249,0.898384,0.207561], + [0.994847,0.892954,0.203445], + [0.992218,0.888385,0.205468], + [0.987293,0.884718,0.213336], + [0.982497,0.881008,0.220878], + [0.97778,0.877281,0.227954], + [0.973114,0.87355,0.234677], + [0.968469,0.869819,0.24131], + [0.963872,0.866089,0.247445], + [0.959284,0.862365,0.253563], + [0.954725,0.858646,0.259365], + [0.950178,0.854933,0.265085], + [0.945654,0.851228,0.270532], + [0.941147,0.84753,0.275815], + [0.93666,0.843841,0.280876], + [0.93218,0.840159,0.28588], + [0.927724,0.836486,0.290611], + [0.923279,0.832822,0.295244], + [0.918828,0.829168,0.29996], + [0.914407,0.825522,0.304348], + [0.91,0.821885,0.308594], + [0.905589,0.818257,0.312889], + [0.901195,0.814639,0.317021], + [0.896818,0.81103,0.320982], + [0.89244,0.80743,0.324968], + [0.888081,0.803839,0.32877], + [0.88372,0.800258,0.332599], + [0.879378,0.796687,0.336241], + [0.875057,0.793125,0.339685], + [0.870717,0.789572,0.343333], + [0.866421,0.786028,0.346571], + [0.862105,0.782494,0.350011], + [0.857809,0.778969,0.353259], + [0.853515,0.775454,0.3565], + [0.849223,0.771947,0.359729], + [0.844957,0.76845,0.362741], + [0.840693,0.764962,0.365746], + [0.836429,0.761483,0.368747], + [0.832192,0.758014,0.371529], + [0.827959,0.754553,0.374292], + [0.823729,0.751101,0.377043], + [0.819499,0.747659,0.379785], + [0.815274,0.744226,0.382504], + [0.811054,0.740801,0.385198], + [0.806859,0.737385,0.387684], + [0.802667,0.733978,0.390153], + [0.79848,0.73058,0.392597], + [0.794298,0.72719,0.395016], + [0.790116,0.72381,0.397423], + [0.785965,0.720438,0.399613], + [0.781795,0.717074,0.401966], + [0.777651,0.713719,0.404112], + [0.773486,0.710373,0.406422], + [0.769353,0.707035,0.408516], + [0.765223,0.703705,0.410587], + [0.761096,0.700384,0.412638], + [0.756975,0.697071,0.414659], + [0.752886,0.693766,0.416472], + [0.748772,0.69047,0.418448], + [0.744664,0.687181,0.420393], + [0.740589,0.6839,0.422131], + [0.736488,0.680629,0.424028], + [0.732422,0.677364,0.425717], + [0.728334,0.674107,0.427554], + [0.724274,0.670859,0.429194], + [0.720222,0.667618,0.430805], + [0.716177,0.664384,0.432386], + [0.712105,0.66116,0.434117], + [0.708067,0.657942,0.435647], + [0.704037,0.654731,0.437147], + [0.700008,0.651529,0.438624], + [0.695985,0.648334,0.440072], + [0.691971,0.645145,0.441491], + [0.687957,0.641966,0.442886], + [0.68395,0.638793,0.444251], + [0.679979,0.635626,0.445424], + [0.675981,0.632468,0.446736], + [0.671991,0.629316,0.448018], + [0.668008,0.626171,0.44927], + [0.664055,0.623034,0.450338], + [0.660082,0.619904,0.451534], + [0.656114,0.61678,0.452702], + [0.652178,0.613664,0.453689], + [0.648222,0.610553,0.454801], + [0.64427,0.60745,0.455886], + [0.640352,0.604354,0.456791], + [0.636412,0.601264,0.457818], + [0.632506,0.59818,0.458668], + [0.628576,0.595104,0.459641], + [0.624654,0.592034,0.460583], + [0.620765,0.58897,0.461351], + [0.616852,0.585913,0.462237], + [0.612977,0.582861,0.46295], + [0.609105,0.579816,0.463638], + [0.605211,0.576777,0.464441], + [0.601354,0.573743,0.465074], + [0.597469,0.570718,0.465821], + [0.593622,0.567697,0.466401], + [0.589753,0.564682,0.46709], + [0.585916,0.561674,0.467618], + [0.582087,0.55867,0.468118], + [0.578236,0.555673,0.468724], + [0.574417,0.552682,0.469172], + [0.570607,0.549695,0.469593], + [0.566802,0.546715,0.469988], + [0.562972,0.543741,0.470488], + [0.559181,0.540771,0.470829], + [0.555393,0.537807,0.471147], + [0.551612,0.534849,0.471439], + [0.54784,0.531895,0.471704], + [0.544069,0.528948,0.471947], + [0.540307,0.526005,0.472163], + [0.536553,0.523067,0.472352], + [0.532829,0.520135,0.472401], + [0.529086,0.517207,0.472543], + [0.525348,0.514285,0.47266], + [0.521643,0.511367,0.472639], + [0.51792,0.508454,0.472707], + [0.514226,0.505546,0.47264], + [0.51054,0.502643,0.47255], + [0.506866,0.499743,0.472432], + [0.503185,0.496851,0.472305], + [0.499552,0.49396,0.472032], + [0.495913,0.491076,0.471751], + [0.492278,0.488198,0.471453], + [0.488697,0.485318,0.471008], + [0.485141,0.482451,0.470384], + [0.481622,0.479573,0.469767], + [0.478186,0.476699,0.468845], + [0.474812,0.473832,0.467681], + [0.471501,0.47096,0.466357], + [0.468254,0.468083,0.464908], + [0.464947,0.465241,0.463395], + [0.461616,0.462405,0.461969], + [0.458366,0.459552,0.460457], + [0.455072,0.456718,0.458976], + [0.451759,0.453887,0.457582], + [0.448447,0.451053,0.456264], + [0.445148,0.448226,0.454885], + [0.44181,0.445402,0.453659], + [0.438504,0.44258,0.452341], + [0.435168,0.439763,0.451134], + [0.431817,0.43695,0.449982], + [0.428462,0.43414,0.448864], + [0.42512,0.431334,0.447692], + [0.421748,0.428531,0.44664], + [0.418383,0.425733,0.44556], + [0.414992,0.422937,0.444578], + [0.411607,0.420145,0.443577], + [0.408226,0.417357,0.44257], + [0.40482,0.414572,0.441642], + [0.401418,0.41179,0.440708], + [0.397991,0.409011,0.439848], + [0.394568,0.406236,0.438986], + [0.391151,0.403464,0.438096], + [0.387705,0.400694,0.437305], + [0.384268,0.397928,0.436475], + [0.38083,0.395164,0.435653], + [0.377371,0.392404,0.43489], + [0.373884,0.389646,0.434209], + [0.37043,0.38689,0.433428], + [0.366923,0.384139,0.432796], + [0.363446,0.381388,0.432075], + [0.359916,0.378641,0.431501], + [0.356418,0.375896,0.430823], + [0.352892,0.373153,0.430226], + [0.349341,0.370414,0.429685], + [0.345793,0.367676,0.429127], + [0.342246,0.364939,0.428559], + [0.338673,0.362206,0.428053], + [0.335073,0.359474,0.427605], + [0.331474,0.356744,0.427144], + [0.327875,0.354016,0.42667], + [0.32425,0.351289,0.42625], + [0.320595,0.348565,0.425889], + [0.316941,0.345842,0.425512], + [0.313287,0.34312,0.42512], + [0.309601,0.340399,0.42479], + [0.305886,0.337681,0.424512], + [0.302169,0.334963,0.424213], + [0.298421,0.332247,0.423973], + [0.294669,0.329531,0.423716], + [0.290884,0.326816,0.423517], + [0.287065,0.324103,0.423373], + [0.28324,0.32139,0.423211], + [0.279411,0.318677,0.423031], + [0.275513,0.315965,0.422979], + [0.271639,0.313253,0.422837], + [0.267693,0.310542,0.422821], + [0.263738,0.307831,0.422789], + [0.25974,0.30512,0.42281], + [0.255731,0.302409,0.422814], + [0.251675,0.299698,0.422873], + [0.247605,0.296986,0.422917], + [0.243485,0.294274,0.423014], + [0.239312,0.291562,0.423167], + [0.23512,0.288848,0.423304], + [0.230871,0.286134,0.423498], + [0.226598,0.283419,0.423678], + [0.222264,0.280702,0.423914], + [0.217863,0.277985,0.424206], + [0.213431,0.275266,0.42448], + [0.208926,0.272546,0.424809], + [0.204385,0.269823,0.425126], + [0.199764,0.267099,0.425497], + [0.195057,0.264372,0.425924], + [0.190303,0.261644,0.426329], + [0.185453,0.258914,0.426788], + [0.180503,0.25618,0.427299], + [0.17549,0.253444,0.42779], + [0.170362,0.250707,0.428325], + [0.165113,0.247965,0.428908], + [0.159733,0.245221,0.429528], + [0.154261,0.242475,0.43012], + [0.148638,0.239724,0.430752], + [0.142852,0.236972,0.431404], + [0.13683,0.234216,0.432148], + [0.130669,0.231458,0.43284], + [0.124291,0.228697,0.433547], + [0.117612,0.225935,0.434308], + [0.110658,0.22317,0.435067], + [0.103401,0.220406,0.43579], + [0.095645,0.217643,0.436593], + [0.087465,0.214879,0.437342], + [0.078624,0.212122,0.438105], + [0.068968,0.209372,0.438863], + [0.058378,0.206629,0.439531], + [0.046205,0.203903,0.440196], + [0.03211,0.201199,0.440785], + [0.017852,0.198528,0.441248], + [0.003602,0.195911,0.441564], + [0.0,0.193366,0.441561], + [0.0,0.19095,0.441085], + [0.0,0.188769,0.439563], + [0.0,0.186915,0.435532], + [0.0,0.18455,0.428802], + [0.0,0.18161,0.421859], + [0.0,0.178802,0.414764], + [0.0,0.176082,0.407577], + [0.0,0.17342,0.400353], + [0.0,0.1708,0.3931], + [0.0,0.168204,0.385902], + [0.0,0.165621,0.378769], + [0.0,0.163058,0.371608], + [0.0,0.160495,0.364534], + [0.0,0.157932,0.357521], + [0.0,0.155377,0.3505], + [0.0,0.152673,0.343704], + [0.0,0.149791,0.337065], + [0.0,0.146877,0.330479], + [0.0,0.143951,0.323982], + [0.0,0.141013,0.317579], + [0.0,0.138068,0.311105], + [0.0,0.135112,0.304751] ], + cool: [ + [0.0,1.0,1.0], + [0.00392156862745098,0.996078431372549,1.0], + [0.00784313725490196,0.9921568627450981,1.0], + [0.011764705882352941,0.9882352941176471,1.0], + [0.01568627450980392,0.9843137254901961,1.0], + [0.0196078431372549,0.9803921568627451,1.0], + [0.023529411764705882,0.9764705882352941,1.0], + [0.027450980392156862,0.9725490196078431,1.0], + [0.03137254901960784,0.9686274509803922,1.0], + [0.03529411764705882,0.9647058823529412,1.0], + [0.0392156862745098,0.9607843137254902,1.0], + [0.043137254901960784,0.9568627450980393,1.0], + [0.047058823529411764,0.9529411764705882,1.0], + [0.050980392156862744,0.9490196078431372,1.0], + [0.054901960784313725,0.9450980392156862,1.0], + [0.058823529411764705,0.9411764705882353,1.0], + [0.06274509803921569,0.9372549019607843,1.0], + [0.06666666666666667,0.9333333333333333,1.0], + [0.07058823529411765,0.9294117647058824,1.0], + [0.07450980392156863,0.9254901960784314,1.0], + [0.0784313725490196,0.9215686274509804,1.0], + [0.08235294117647059,0.9176470588235294,1.0], + [0.08627450980392157,0.9137254901960784,1.0], + [0.09019607843137255,0.9098039215686274,1.0], + [0.09411764705882353,0.9058823529411765,1.0], + [0.09803921568627451,0.9019607843137255,1.0], + [0.10196078431372549,0.8980392156862745,1.0], + [0.10588235294117647,0.8941176470588236,1.0], + [0.10980392156862745,0.8901960784313725,1.0], + [0.11372549019607843,0.8862745098039215,1.0], + [0.11764705882352941,0.8823529411764706,1.0], + [0.12156862745098039,0.8784313725490196,1.0], + [0.12549019607843137,0.8745098039215686,1.0], + [0.12941176470588234,0.8705882352941177,1.0], + [0.13333333333333333,0.8666666666666667,1.0], + [0.13725490196078433,0.8627450980392157,1.0], + [0.1411764705882353,0.8588235294117648,1.0], + [0.14509803921568626,0.8549019607843138,1.0], + [0.14901960784313725,0.8509803921568627,1.0], + [0.15294117647058825,0.8470588235294118,1.0], + [0.1568627450980392,0.8431372549019608,1.0], + [0.16078431372549018,0.8392156862745098,1.0], + [0.16470588235294117,0.8352941176470589,1.0], + [0.16862745098039217,0.8313725490196078,1.0], + [0.17254901960784313,0.8274509803921568,1.0], + [0.1764705882352941,0.8235294117647058,1.0], + [0.1803921568627451,0.8196078431372549,1.0], + [0.1843137254901961,0.8156862745098039,1.0], + [0.18823529411764706,0.8117647058823529,1.0], + [0.19215686274509802,0.807843137254902,1.0], + [0.19607843137254902,0.803921568627451,1.0], + [0.2,0.8,1.0], + [0.20392156862745098,0.7960784313725491,1.0], + [0.20784313725490194,0.7921568627450981,1.0], + [0.21176470588235294,0.788235294117647,1.0], + [0.21568627450980393,0.7843137254901961,1.0], + [0.2196078431372549,0.7803921568627451,1.0], + [0.22352941176470587,0.7764705882352941,1.0], + [0.22745098039215686,0.7725490196078432,1.0], + [0.23137254901960785,0.7686274509803921,1.0], + [0.23529411764705882,0.7647058823529411,1.0], + [0.2392156862745098,0.7607843137254902,1.0], + [0.24313725490196078,0.7568627450980392,1.0], + [0.24705882352941178,0.7529411764705882,1.0], + [0.25098039215686274,0.7490196078431373,1.0], + [0.2549019607843137,0.7450980392156863,1.0], + [0.2588235294117647,0.7411764705882353,1.0], + [0.2627450980392157,0.7372549019607844,1.0], + [0.26666666666666666,0.7333333333333334,1.0], + [0.27058823529411763,0.7294117647058824,1.0], + [0.27450980392156865,0.7254901960784313,1.0], + [0.2784313725490196,0.7215686274509804,1.0], + [0.2823529411764706,0.7176470588235294,1.0], + [0.28627450980392155,0.7137254901960784,1.0], + [0.2901960784313725,0.7098039215686275,1.0], + [0.29411764705882354,0.7058823529411764,1.0], + [0.2980392156862745,0.7019607843137254,1.0], + [0.30196078431372547,0.6980392156862745,1.0], + [0.3058823529411765,0.6941176470588235,1.0], + [0.30980392156862746,0.6901960784313725,1.0], + [0.3137254901960784,0.6862745098039216,1.0], + [0.3176470588235294,0.6823529411764706,1.0], + [0.32156862745098036,0.6784313725490196,1.0], + [0.3254901960784314,0.6745098039215687,1.0], + [0.32941176470588235,0.6705882352941177,1.0], + [0.3333333333333333,0.6666666666666667,1.0], + [0.33725490196078434,0.6627450980392157,1.0], + [0.3411764705882353,0.6588235294117647,1.0], + [0.34509803921568627,0.6549019607843137,1.0], + [0.34901960784313724,0.6509803921568628,1.0], + [0.3529411764705882,0.6470588235294118,1.0], + [0.3568627450980392,0.6431372549019607,1.0], + [0.3607843137254902,0.6392156862745098,1.0], + [0.36470588235294116,0.6352941176470588,1.0], + [0.3686274509803922,0.6313725490196078,1.0], + [0.37254901960784315,0.6274509803921569,1.0], + [0.3764705882352941,0.6235294117647059,1.0], + [0.3803921568627451,0.6196078431372549,1.0], + [0.38431372549019605,0.615686274509804,1.0], + [0.38823529411764707,0.611764705882353,1.0], + [0.39215686274509803,0.607843137254902,1.0], + [0.396078431372549,0.603921568627451,1.0], + [0.4,0.6,1.0], + [0.403921568627451,0.596078431372549,1.0], + [0.40784313725490196,0.592156862745098,1.0], + [0.4117647058823529,0.5882352941176471,1.0], + [0.4156862745098039,0.5843137254901961,1.0], + [0.4196078431372549,0.580392156862745,1.0], + [0.4235294117647059,0.5764705882352941,1.0], + [0.42745098039215684,0.5725490196078431,1.0], + [0.43137254901960786,0.5686274509803921,1.0], + [0.43529411764705883,0.5647058823529412,1.0], + [0.4392156862745098,0.5607843137254902,1.0], + [0.44313725490196076,0.5568627450980392,1.0], + [0.44705882352941173,0.5529411764705883,1.0], + [0.45098039215686275,0.5490196078431373,1.0], + [0.4549019607843137,0.5450980392156863,1.0], + [0.4588235294117647,0.5411764705882354,1.0], + [0.4627450980392157,0.5372549019607843,1.0], + [0.4666666666666667,0.5333333333333333,1.0], + [0.47058823529411764,0.5294117647058824,1.0], + [0.4745098039215686,0.5254901960784314,1.0], + [0.4784313725490196,0.5215686274509804,1.0], + [0.4823529411764706,0.5176470588235293,1.0], + [0.48627450980392156,0.5137254901960784,1.0], + [0.49019607843137253,0.5098039215686274,1.0], + [0.49411764705882355,0.5058823529411764,1.0], + [0.4980392156862745,0.5019607843137255,1.0], + [0.5019607843137255,0.4980392156862745,1.0], + [0.5058823529411764,0.49411764705882355,1.0], + [0.5098039215686274,0.4901960784313726,1.0], + [0.5137254901960784,0.4862745098039216,1.0], + [0.5176470588235293,0.48235294117647065,1.0], + [0.5215686274509804,0.4784313725490196,1.0], + [0.5254901960784314,0.4745098039215686,1.0], + [0.5294117647058824,0.47058823529411764,1.0], + [0.5333333333333333,0.4666666666666667,1.0], + [0.5372549019607843,0.4627450980392157,1.0], + [0.5411764705882353,0.45882352941176474,1.0], + [0.5450980392156862,0.4549019607843138,1.0], + [0.5490196078431373,0.4509803921568627,1.0], + [0.5529411764705883,0.44705882352941173,1.0], + [0.5568627450980392,0.44313725490196076,1.0], + [0.5607843137254902,0.4392156862745098,1.0], + [0.5647058823529412,0.43529411764705883,1.0], + [0.5686274509803921,0.43137254901960786,1.0], + [0.5725490196078431,0.4274509803921569,1.0], + [0.5764705882352941,0.42352941176470593,1.0], + [0.580392156862745,0.41960784313725497,1.0], + [0.5843137254901961,0.4156862745098039,1.0], + [0.5882352941176471,0.4117647058823529,1.0], + [0.592156862745098,0.40784313725490196,1.0], + [0.596078431372549,0.403921568627451,1.0], + [0.6,0.4,1.0], + [0.6039215686274509,0.39607843137254906,1.0], + [0.6078431372549019,0.3921568627450981,1.0], + [0.611764705882353,0.388235294117647,1.0], + [0.615686274509804,0.38431372549019605,1.0], + [0.6196078431372549,0.3803921568627451,1.0], + [0.6235294117647059,0.3764705882352941,1.0], + [0.6274509803921569,0.37254901960784315,1.0], + [0.6313725490196078,0.3686274509803922,1.0], + [0.6352941176470588,0.3647058823529412,1.0], + [0.6392156862745098,0.36078431372549025,1.0], + [0.6431372549019607,0.3568627450980393,1.0], + [0.6470588235294118,0.3529411764705882,1.0], + [0.6509803921568628,0.34901960784313724,1.0], + [0.6549019607843137,0.34509803921568627,1.0], + [0.6588235294117647,0.3411764705882353,1.0], + [0.6627450980392157,0.33725490196078434,1.0], + [0.6666666666666666,0.33333333333333337,1.0], + [0.6705882352941176,0.3294117647058824,1.0], + [0.6745098039215687,0.3254901960784313,1.0], + [0.6784313725490196,0.32156862745098036,1.0], + [0.6823529411764706,0.3176470588235294,1.0], + [0.6862745098039216,0.3137254901960784,1.0], + [0.6901960784313725,0.30980392156862746,1.0], + [0.6941176470588235,0.3058823529411765,1.0], + [0.6980392156862745,0.3019607843137255,1.0], + [0.7019607843137254,0.29803921568627456,1.0], + [0.7058823529411764,0.2941176470588236,1.0], + [0.7098039215686275,0.2901960784313725,1.0], + [0.7137254901960784,0.28627450980392155,1.0], + [0.7176470588235294,0.2823529411764706,1.0], + [0.7215686274509804,0.2784313725490196,1.0], + [0.7254901960784313,0.27450980392156865,1.0], + [0.7294117647058823,0.2705882352941177,1.0], + [0.7333333333333333,0.2666666666666667,1.0], + [0.7372549019607844,0.26274509803921564,1.0], + [0.7411764705882353,0.2588235294117647,1.0], + [0.7450980392156863,0.2549019607843137,1.0], + [0.7490196078431373,0.25098039215686274,1.0], + [0.7529411764705882,0.24705882352941178,1.0], + [0.7568627450980392,0.2431372549019608,1.0], + [0.7607843137254902,0.23921568627450984,1.0], + [0.7647058823529411,0.23529411764705888,1.0], + [0.7686274509803921,0.2313725490196079,1.0], + [0.7725490196078432,0.22745098039215683,1.0], + [0.7764705882352941,0.22352941176470587,1.0], + [0.7803921568627451,0.2196078431372549,1.0], + [0.7843137254901961,0.21568627450980393,1.0], + [0.788235294117647,0.21176470588235297,1.0], + [0.792156862745098,0.207843137254902,1.0], + [0.796078431372549,0.20392156862745103,1.0], + [0.8,0.19999999999999996,1.0], + [0.803921568627451,0.196078431372549,1.0], + [0.807843137254902,0.19215686274509802,1.0], + [0.8117647058823529,0.18823529411764706,1.0], + [0.8156862745098039,0.1843137254901961,1.0], + [0.8196078431372549,0.18039215686274512,1.0], + [0.8235294117647058,0.17647058823529416,1.0], + [0.8274509803921568,0.1725490196078432,1.0], + [0.8313725490196078,0.16862745098039222,1.0], + [0.8352941176470589,0.16470588235294115,1.0], + [0.8392156862745098,0.16078431372549018,1.0], + [0.8431372549019608,0.1568627450980392,1.0], + [0.8470588235294118,0.15294117647058825,1.0], + [0.8509803921568627,0.14901960784313728,1.0], + [0.8549019607843137,0.14509803921568631,1.0], + [0.8588235294117647,0.14117647058823535,1.0], + [0.8627450980392157,0.13725490196078427,1.0], + [0.8666666666666667,0.1333333333333333,1.0], + [0.8705882352941177,0.12941176470588234,1.0], + [0.8745098039215686,0.12549019607843137,1.0], + [0.8784313725490196,0.1215686274509804,1.0], + [0.8823529411764706,0.11764705882352944,1.0], + [0.8862745098039215,0.11372549019607847,1.0], + [0.8901960784313725,0.1098039215686275,1.0], + [0.8941176470588235,0.10588235294117654,1.0], + [0.8980392156862745,0.10196078431372546,1.0], + [0.9019607843137255,0.0980392156862745,1.0], + [0.9058823529411765,0.09411764705882353,1.0], + [0.9098039215686274,0.09019607843137256,1.0], + [0.9137254901960784,0.0862745098039216,1.0], + [0.9176470588235294,0.08235294117647063,1.0], + [0.9215686274509803,0.07843137254901966,1.0], + [0.9254901960784314,0.07450980392156858,1.0], + [0.9294117647058824,0.07058823529411762,1.0], + [0.9333333333333333,0.06666666666666665,1.0], + [0.9372549019607843,0.06274509803921569,1.0], + [0.9411764705882353,0.05882352941176472,1.0], + [0.9450980392156862,0.05490196078431375,1.0], + [0.9490196078431372,0.050980392156862786,1.0], + [0.9529411764705882,0.04705882352941182,1.0], + [0.9568627450980391,0.04313725490196085,1.0], + [0.9607843137254902,0.039215686274509776,1.0], + [0.9647058823529412,0.03529411764705881,1.0], + [0.9686274509803922,0.03137254901960784,1.0], + [0.9725490196078431,0.027450980392156876,1.0], + [0.9764705882352941,0.02352941176470591,1.0], + [0.9803921568627451,0.019607843137254943,1.0], + [0.984313725490196,0.015686274509803977,1.0], + [0.9882352941176471,0.0117647058823529,1.0], + [0.9921568627450981,0.007843137254901933,1.0], + [0.996078431372549,0.0039215686274509665,1.0], + [1.0,0.0,1.0] ], + cool_r: [ + [1.0,0.0,1.0], + [0.996078431372549,0.00392156862745098,1.0], + [0.9921568627450981,0.00784313725490196,1.0], + [0.9882352941176471,0.011764705882352941,1.0], + [0.9843137254901961,0.01568627450980392,1.0], + [0.9803921568627451,0.0196078431372549,1.0], + [0.9764705882352941,0.023529411764705882,1.0], + [0.9725490196078431,0.027450980392156862,1.0], + [0.9686274509803922,0.03137254901960784,1.0], + [0.9647058823529412,0.03529411764705882,1.0], + [0.9607843137254902,0.0392156862745098,1.0], + [0.9568627450980393,0.043137254901960784,1.0], + [0.9529411764705882,0.047058823529411764,1.0], + [0.9490196078431372,0.050980392156862744,1.0], + [0.9450980392156862,0.054901960784313725,1.0], + [0.9411764705882353,0.058823529411764705,1.0], + [0.9372549019607843,0.06274509803921569,1.0], + [0.9333333333333333,0.06666666666666667,1.0], + [0.9294117647058824,0.07058823529411765,1.0], + [0.9254901960784314,0.07450980392156863,1.0], + [0.9215686274509804,0.0784313725490196,1.0], + [0.9176470588235294,0.08235294117647059,1.0], + [0.9137254901960784,0.08627450980392157,1.0], + [0.9098039215686274,0.09019607843137255,1.0], + [0.9058823529411765,0.09411764705882353,1.0], + [0.9019607843137255,0.09803921568627451,1.0], + [0.8980392156862745,0.10196078431372549,1.0], + [0.8941176470588236,0.10588235294117647,1.0], + [0.8901960784313725,0.10980392156862745,1.0], + [0.8862745098039215,0.11372549019607843,1.0], + [0.8823529411764706,0.11764705882352941,1.0], + [0.8784313725490196,0.12156862745098039,1.0], + [0.8745098039215686,0.12549019607843137,1.0], + [0.8705882352941177,0.12941176470588234,1.0], + [0.8666666666666667,0.13333333333333333,1.0], + [0.8627450980392157,0.13725490196078433,1.0], + [0.8588235294117648,0.1411764705882353,1.0], + [0.8549019607843138,0.14509803921568626,1.0], + [0.8509803921568627,0.14901960784313725,1.0], + [0.8470588235294118,0.15294117647058825,1.0], + [0.8431372549019608,0.1568627450980392,1.0], + [0.8392156862745098,0.16078431372549018,1.0], + [0.8352941176470589,0.16470588235294117,1.0], + [0.8313725490196078,0.16862745098039217,1.0], + [0.8274509803921568,0.17254901960784313,1.0], + [0.8235294117647058,0.1764705882352941,1.0], + [0.8196078431372549,0.1803921568627451,1.0], + [0.8156862745098039,0.1843137254901961,1.0], + [0.8117647058823529,0.18823529411764706,1.0], + [0.807843137254902,0.19215686274509802,1.0], + [0.803921568627451,0.19607843137254902,1.0], + [0.8,0.2,1.0], + [0.7960784313725491,0.20392156862745098,1.0], + [0.7921568627450981,0.20784313725490194,1.0], + [0.788235294117647,0.21176470588235294,1.0], + [0.7843137254901961,0.21568627450980393,1.0], + [0.7803921568627451,0.2196078431372549,1.0], + [0.7764705882352941,0.22352941176470587,1.0], + [0.7725490196078432,0.22745098039215686,1.0], + [0.7686274509803921,0.23137254901960785,1.0], + [0.7647058823529411,0.23529411764705882,1.0], + [0.7607843137254902,0.2392156862745098,1.0], + [0.7568627450980392,0.24313725490196078,1.0], + [0.7529411764705882,0.24705882352941178,1.0], + [0.7490196078431373,0.25098039215686274,1.0], + [0.7450980392156863,0.2549019607843137,1.0], + [0.7411764705882353,0.2588235294117647,1.0], + [0.7372549019607844,0.2627450980392157,1.0], + [0.7333333333333334,0.26666666666666666,1.0], + [0.7294117647058824,0.27058823529411763,1.0], + [0.7254901960784313,0.27450980392156865,1.0], + [0.7215686274509804,0.2784313725490196,1.0], + [0.7176470588235294,0.2823529411764706,1.0], + [0.7137254901960784,0.28627450980392155,1.0], + [0.7098039215686275,0.2901960784313725,1.0], + [0.7058823529411764,0.29411764705882354,1.0], + [0.7019607843137254,0.2980392156862745,1.0], + [0.6980392156862745,0.30196078431372547,1.0], + [0.6941176470588235,0.3058823529411765,1.0], + [0.6901960784313725,0.30980392156862746,1.0], + [0.6862745098039216,0.3137254901960784,1.0], + [0.6823529411764706,0.3176470588235294,1.0], + [0.6784313725490196,0.32156862745098036,1.0], + [0.6745098039215687,0.3254901960784314,1.0], + [0.6705882352941177,0.32941176470588235,1.0], + [0.6666666666666667,0.3333333333333333,1.0], + [0.6627450980392157,0.33725490196078434,1.0], + [0.6588235294117647,0.3411764705882353,1.0], + [0.6549019607843137,0.34509803921568627,1.0], + [0.6509803921568628,0.34901960784313724,1.0], + [0.6470588235294118,0.3529411764705882,1.0], + [0.6431372549019607,0.3568627450980392,1.0], + [0.6392156862745098,0.3607843137254902,1.0], + [0.6352941176470588,0.36470588235294116,1.0], + [0.6313725490196078,0.3686274509803922,1.0], + [0.6274509803921569,0.37254901960784315,1.0], + [0.6235294117647059,0.3764705882352941,1.0], + [0.6196078431372549,0.3803921568627451,1.0], + [0.615686274509804,0.38431372549019605,1.0], + [0.611764705882353,0.38823529411764707,1.0], + [0.607843137254902,0.39215686274509803,1.0], + [0.603921568627451,0.396078431372549,1.0], + [0.6,0.4,1.0], + [0.596078431372549,0.403921568627451,1.0], + [0.592156862745098,0.40784313725490196,1.0], + [0.5882352941176471,0.4117647058823529,1.0], + [0.5843137254901961,0.4156862745098039,1.0], + [0.580392156862745,0.4196078431372549,1.0], + [0.5764705882352941,0.4235294117647059,1.0], + [0.5725490196078431,0.42745098039215684,1.0], + [0.5686274509803921,0.43137254901960786,1.0], + [0.5647058823529412,0.43529411764705883,1.0], + [0.5607843137254902,0.4392156862745098,1.0], + [0.5568627450980392,0.44313725490196076,1.0], + [0.5529411764705883,0.44705882352941173,1.0], + [0.5490196078431373,0.45098039215686275,1.0], + [0.5450980392156863,0.4549019607843137,1.0], + [0.5411764705882354,0.4588235294117647,1.0], + [0.5372549019607843,0.4627450980392157,1.0], + [0.5333333333333333,0.4666666666666667,1.0], + [0.5294117647058824,0.47058823529411764,1.0], + [0.5254901960784314,0.4745098039215686,1.0], + [0.5215686274509804,0.4784313725490196,1.0], + [0.5176470588235293,0.4823529411764706,1.0], + [0.5137254901960784,0.48627450980392156,1.0], + [0.5098039215686274,0.49019607843137253,1.0], + [0.5058823529411764,0.49411764705882355,1.0], + [0.5019607843137255,0.4980392156862745,1.0], + [0.4980392156862745,0.5019607843137255,1.0], + [0.49411764705882355,0.5058823529411764,1.0], + [0.4901960784313726,0.5098039215686274,1.0], + [0.4862745098039216,0.5137254901960784,1.0], + [0.48235294117647065,0.5176470588235293,1.0], + [0.4784313725490196,0.5215686274509804,1.0], + [0.4745098039215686,0.5254901960784314,1.0], + [0.47058823529411764,0.5294117647058824,1.0], + [0.4666666666666667,0.5333333333333333,1.0], + [0.4627450980392157,0.5372549019607843,1.0], + [0.45882352941176474,0.5411764705882353,1.0], + [0.4549019607843138,0.5450980392156862,1.0], + [0.4509803921568627,0.5490196078431373,1.0], + [0.44705882352941173,0.5529411764705883,1.0], + [0.44313725490196076,0.5568627450980392,1.0], + [0.4392156862745098,0.5607843137254902,1.0], + [0.43529411764705883,0.5647058823529412,1.0], + [0.43137254901960786,0.5686274509803921,1.0], + [0.4274509803921569,0.5725490196078431,1.0], + [0.42352941176470593,0.5764705882352941,1.0], + [0.41960784313725497,0.580392156862745,1.0], + [0.4156862745098039,0.5843137254901961,1.0], + [0.4117647058823529,0.5882352941176471,1.0], + [0.40784313725490196,0.592156862745098,1.0], + [0.403921568627451,0.596078431372549,1.0], + [0.4,0.6,1.0], + [0.39607843137254906,0.6039215686274509,1.0], + [0.3921568627450981,0.6078431372549019,1.0], + [0.388235294117647,0.611764705882353,1.0], + [0.38431372549019605,0.615686274509804,1.0], + [0.3803921568627451,0.6196078431372549,1.0], + [0.3764705882352941,0.6235294117647059,1.0], + [0.37254901960784315,0.6274509803921569,1.0], + [0.3686274509803922,0.6313725490196078,1.0], + [0.3647058823529412,0.6352941176470588,1.0], + [0.36078431372549025,0.6392156862745098,1.0], + [0.3568627450980393,0.6431372549019607,1.0], + [0.3529411764705882,0.6470588235294118,1.0], + [0.34901960784313724,0.6509803921568628,1.0], + [0.34509803921568627,0.6549019607843137,1.0], + [0.3411764705882353,0.6588235294117647,1.0], + [0.33725490196078434,0.6627450980392157,1.0], + [0.33333333333333337,0.6666666666666666,1.0], + [0.3294117647058824,0.6705882352941176,1.0], + [0.3254901960784313,0.6745098039215687,1.0], + [0.32156862745098036,0.6784313725490196,1.0], + [0.3176470588235294,0.6823529411764706,1.0], + [0.3137254901960784,0.6862745098039216,1.0], + [0.30980392156862746,0.6901960784313725,1.0], + [0.3058823529411765,0.6941176470588235,1.0], + [0.3019607843137255,0.6980392156862745,1.0], + [0.29803921568627456,0.7019607843137254,1.0], + [0.2941176470588236,0.7058823529411764,1.0], + [0.2901960784313725,0.7098039215686275,1.0], + [0.28627450980392155,0.7137254901960784,1.0], + [0.2823529411764706,0.7176470588235294,1.0], + [0.2784313725490196,0.7215686274509804,1.0], + [0.27450980392156865,0.7254901960784313,1.0], + [0.2705882352941177,0.7294117647058823,1.0], + [0.2666666666666667,0.7333333333333333,1.0], + [0.26274509803921564,0.7372549019607844,1.0], + [0.2588235294117647,0.7411764705882353,1.0], + [0.2549019607843137,0.7450980392156863,1.0], + [0.25098039215686274,0.7490196078431373,1.0], + [0.24705882352941178,0.7529411764705882,1.0], + [0.2431372549019608,0.7568627450980392,1.0], + [0.23921568627450984,0.7607843137254902,1.0], + [0.23529411764705888,0.7647058823529411,1.0], + [0.2313725490196079,0.7686274509803921,1.0], + [0.22745098039215683,0.7725490196078432,1.0], + [0.22352941176470587,0.7764705882352941,1.0], + [0.2196078431372549,0.7803921568627451,1.0], + [0.21568627450980393,0.7843137254901961,1.0], + [0.21176470588235297,0.788235294117647,1.0], + [0.207843137254902,0.792156862745098,1.0], + [0.20392156862745103,0.796078431372549,1.0], + [0.19999999999999996,0.8,1.0], + [0.196078431372549,0.803921568627451,1.0], + [0.19215686274509802,0.807843137254902,1.0], + [0.18823529411764706,0.8117647058823529,1.0], + [0.1843137254901961,0.8156862745098039,1.0], + [0.18039215686274512,0.8196078431372549,1.0], + [0.17647058823529416,0.8235294117647058,1.0], + [0.1725490196078432,0.8274509803921568,1.0], + [0.16862745098039222,0.8313725490196078,1.0], + [0.16470588235294115,0.8352941176470589,1.0], + [0.16078431372549018,0.8392156862745098,1.0], + [0.1568627450980392,0.8431372549019608,1.0], + [0.15294117647058825,0.8470588235294118,1.0], + [0.14901960784313728,0.8509803921568627,1.0], + [0.14509803921568631,0.8549019607843137,1.0], + [0.14117647058823535,0.8588235294117647,1.0], + [0.13725490196078427,0.8627450980392157,1.0], + [0.1333333333333333,0.8666666666666667,1.0], + [0.12941176470588234,0.8705882352941177,1.0], + [0.12549019607843137,0.8745098039215686,1.0], + [0.1215686274509804,0.8784313725490196,1.0], + [0.11764705882352944,0.8823529411764706,1.0], + [0.11372549019607847,0.8862745098039215,1.0], + [0.1098039215686275,0.8901960784313725,1.0], + [0.10588235294117654,0.8941176470588235,1.0], + [0.10196078431372546,0.8980392156862745,1.0], + [0.0980392156862745,0.9019607843137255,1.0], + [0.09411764705882353,0.9058823529411765,1.0], + [0.09019607843137256,0.9098039215686274,1.0], + [0.0862745098039216,0.9137254901960784,1.0], + [0.08235294117647063,0.9176470588235294,1.0], + [0.07843137254901966,0.9215686274509803,1.0], + [0.07450980392156858,0.9254901960784314,1.0], + [0.07058823529411762,0.9294117647058824,1.0], + [0.06666666666666665,0.9333333333333333,1.0], + [0.06274509803921569,0.9372549019607843,1.0], + [0.05882352941176472,0.9411764705882353,1.0], + [0.05490196078431375,0.9450980392156862,1.0], + [0.050980392156862786,0.9490196078431372,1.0], + [0.04705882352941182,0.9529411764705882,1.0], + [0.04313725490196085,0.9568627450980391,1.0], + [0.039215686274509776,0.9607843137254902,1.0], + [0.03529411764705881,0.9647058823529412,1.0], + [0.03137254901960784,0.9686274509803922,1.0], + [0.027450980392156876,0.9725490196078431,1.0], + [0.02352941176470591,0.9764705882352941,1.0], + [0.019607843137254943,0.9803921568627451,1.0], + [0.015686274509803977,0.984313725490196,1.0], + [0.0117647058823529,0.9882352941176471,1.0], + [0.007843137254901933,0.9921568627450981,1.0], + [0.0039215686274509665,0.996078431372549,1.0], + [0.0,1.0,1.0] ], + coolwarm: [ + [0.2298057,0.298717966,0.753683153], + [0.23437707945098038,0.3055417303294118,0.7596795275882353], + [0.2389484589019608,0.3123654946588235,0.7656759021764705], + [0.24351983835294116,0.3191892589882353,0.7716722767647058], + [0.24809121780392157,0.3260130233176471,0.7776686513529412], + [0.2526625972549019,0.3328367876470588,0.7836650259411765], + [0.25723397670588233,0.3396605519764706,0.7896614005294117], + [0.26180535615686273,0.3464843163058824,0.795657775117647], + [0.26638146835294113,0.35330440842352945,0.8016373194980392], + [0.2711042956470588,0.3600106619764706,0.8070951274352941], + [0.27582712294117645,0.36671691552941177,0.812552935372549], + [0.2805499502352941,0.37342316908235296,0.818010743309804], + [0.28527277752941177,0.38012942263529415,0.8234685512470589], + [0.2899956048235294,0.3868356761882353,0.8289263591843137], + [0.29471843211764703,0.39354192974117647,0.8343841671215686], + [0.2994412594117647,0.40024818329411765,0.8398419750588235], + [0.3041742870039216,0.40694488283921565,0.8452627266980393], + [0.30906031906666664,0.41349827226666663,0.8501276338666667], + [0.31394635112941177,0.4200516616941176,0.8549925410352941], + [0.31883238319215684,0.4266050511215686,0.8598574482039216], + [0.32371841525490197,0.4331584405490196,0.864722355372549], + [0.32860444731764704,0.43971182997647057,0.8695872625411765], + [0.33349047938039217,0.44626521940392155,0.8744521697098039], + [0.3383765114431373,0.45281860883137254,0.8793170768784313], + [0.34327752343529416,0.45935363472941176,0.8841219216235294], + [0.34832334141176474,0.4657111465098039,0.8883461629411764], + [0.3533691593882353,0.47206865829019606,0.8925704042588235], + [0.3584149773647059,0.47842617007058824,0.8967946455764706], + [0.3634607953411765,0.4847836818509804,0.9010188868941177], + [0.36850661331764706,0.49114119363137254,0.9052431282117647], + [0.37355243129411764,0.4974987054117647,0.9094673695294118], + [0.3785982492705882,0.5038562171921569,0.9136916108470589], + [0.383662065772549,0.5101834172862746,0.9178306732313726], + [0.38885187195294113,0.5162984355764706,0.9213734830823529], + [0.3940416781333333,0.5224134538666667,0.9249162929333333], + [0.39923148431372546,0.5285284721568628,0.9284591027843138], + [0.4044212904941176,0.5346434904470588,0.9320019126352941], + [0.4096110966745098,0.540758508737255,0.9355447224862745], + [0.41480090285490195,0.5468735270274511,0.939087532337255], + [0.4199907090352941,0.5529885453176471,0.9426303421882353], + [0.42519897019607844,0.559058179764706,0.9460614570784314], + [0.4305068882509804,0.5648827414588236,0.9488894191803922], + [0.4358148063058824,0.5707073031529412,0.951717381282353], + [0.4411227243607843,0.5765318648470589,0.9545453433843137], + [0.4464306424156863,0.5823564265411765,0.9573733054862745], + [0.4517385604705882,0.5881809882352941,0.9602012675882352], + [0.4570464785254902,0.5940055499294118,0.963029229690196], + [0.4623543965803922,0.5998301116235294,0.9658571917921568], + [0.46767809468235294,0.6055912316235293,0.9685462810941176], + [0.4730701729882353,0.6110774376156862,0.970633588262745], + [0.4784622512941176,0.6165636436078431,0.9727208954313725], + [0.48385432959999997,0.6220498496,0.9748082026], + [0.48924640790588236,0.6275360555921569,0.9768955097686275], + [0.49463848621176465,0.6330222615843136,0.9789828169372549], + [0.500030564517647,0.6385084675764706,0.9810701241058823], + [0.5054226428235293,0.6439946735686275,0.9831574312745098], + [0.5108243242509803,0.6493966148235294,0.9850787763764707], + [0.5162603025411764,0.6544976105882353,0.9864073998117647], + [0.5216962808313725,0.6595986063529412,0.9877360232470589], + [0.5271322591215686,0.664699602117647,0.9890646466823529], + [0.5325682374117646,0.6698005978823529,0.9903932701176471], + [0.5380042157019607,0.6749015936470587,0.9917218935529412], + [0.5434401939921568,0.6800025894117647,0.9930505169882353], + [0.5488761722823529,0.6851035851764705,0.9943791404235295], + [0.5543118699137254,0.6900970112156862,0.9955155482352941], + [0.5597467255686274,0.6947677280784313,0.9960753091764706], + [0.5651815812235294,0.6994384449411764,0.9966350701176471], + [0.5706164368784313,0.7041091618039216,0.9971948310588236], + [0.5760512925333333,0.7087798786666667,0.997754592], + [0.5814861481882353,0.7134505955294117,0.9983143529411764], + [0.5869210038431373,0.7181213123921568,0.9988741138823529], + [0.5923558594980393,0.7227920292549019,0.9994338748235294], + [0.5977767754941177,0.7273297248823529,0.9997767317764705], + [0.603162067917647,0.7315274773529412,0.9995652785372549], + [0.6085473603411764,0.7357252298235294,0.9993538252980392], + [0.6139326527647059,0.7399229822941177,0.9991423720588235], + [0.6193179451882354,0.7441207347647059,0.9989309188196078], + [0.6247032376117647,0.7483184872352941,0.9987194655803922], + [0.6300885300352941,0.7525162397058823,0.9985080123411765], + [0.6354738224588236,0.7567139921764706,0.9982965591019608], + [0.640827782372549,0.7607515064117647,0.9978457748823529], + [0.6461128107647058,0.7644364965294117,0.9968684625058823], + [0.6513978391568627,0.7681214866470587,0.9958911501294118], + [0.6566828675490196,0.7718064767647058,0.9949138377529412], + [0.6619678959411764,0.7754914668823529,0.9939365253764706], + [0.6672529243333334,0.7791764569999999,0.992959213], + [0.6725379527254902,0.782861447117647,0.9919819006235294], + [0.677822981117647,0.786546437235294,0.9910045882470588], + [0.6830556815607843,0.790042626890196,0.9897684281843138], + [0.6881884831921569,0.7931783792980391,0.9880381043568628], + [0.6933212848235294,0.7963141317058823,0.9863077805294118], + [0.6984540864549019,0.7994498841137254,0.9845774567019608], + [0.7035868880862746,0.8025856365215686,0.9828471328745098], + [0.7087196897176471,0.8057213889294117,0.9811168090470588], + [0.7138524913490196,0.8088571413372548,0.9793864852196078], + [0.7189852929803922,0.811992893745098,0.9776561613921568], + [0.724041371882353,0.8149103926470588,0.9756509706470589], + [0.7289695795686274,0.8174641357058824,0.973187668372549], + [0.7338977872549018,0.8200178787647059,0.9707243660980392], + [0.7388259949411764,0.8225716218235294,0.9682610638235294], + [0.743754202627451,0.8251253648823529,0.9657977615490196], + [0.7486824103137254,0.8276791079411765,0.9633344592745098], + [0.753610618,0.830232851,0.960871157], + [0.7585388256862745,0.8327865940588235,0.9584078547254902], + [0.7633627801019607,0.8350922218196078,0.9556576765568627], + [0.7680343643529411,0.8370352195294117,0.9524882182352941], + [0.7727059486039215,0.8389782172392156,0.9493187599137255], + [0.777377532854902,0.8409212149490196,0.9461493015921568], + [0.7820491171058823,0.8428642126588235,0.9429798432705883], + [0.7867207013568628,0.8448072103686275,0.9398103849490196], + [0.7913922856078431,0.8467502080784314,0.9366409266274509], + [0.7960638698588236,0.8486932057882353,0.9334714683058823], + [0.8006008472941177,0.8503583215607843,0.9300075603921568], + [0.8049647588235295,0.8516661605568627,0.9261650744313725], + [0.8093286703529411,0.8529739995529412,0.9223225884705882], + [0.8136925818823529,0.8542818385490196,0.9184801025098039], + [0.8180564934117647,0.8555896775450981,0.9146376165490196], + [0.8224204049411765,0.8568975165411765,0.9107951305882354], + [0.8267843164705883,0.8582053555372549,0.906952644627451], + [0.831148228,0.8595131945333333,0.9031101586666667], + [0.8353447113529412,0.8605139972941176,0.8989704099411765], + [0.839351442772549,0.861166825654902,0.8944937634156863], + [0.8433581741921568,0.8618196540156863,0.8900171168901961], + [0.8473649056117647,0.8624724823764706,0.885540470364706], + [0.8513716370313725,0.8631253107372548,0.8810638238392158], + [0.8553783684509804,0.8637781390980391,0.8765871773137255], + [0.8593850998705882,0.8644309674588235,0.8721105307882353], + [0.863391831290196,0.8650837958196078,0.8676338842627451], + [0.8674276350862745,0.864376599772549,0.8626024620196079], + [0.8714925112588235,0.8623093793176471,0.8570162640588236], + [0.8755573874313726,0.860242158862745,0.8514300660980393], + [0.8796222636039216,0.8581749384078431,0.845843868137255], + [0.8836871397764705,0.8561077179529412,0.8402576701764708], + [0.8877520159490196,0.8540404974980391,0.8346714722156863], + [0.8918168921215687,0.8519732770431372,0.829085274254902], + [0.8958817682941177,0.8499060565882353,0.8234990762941177], + [0.8995432066000001,0.8475002359999999,0.8177890744], + [0.9028486703176472,0.8447956505882352,0.8119698337411765], + [0.9061541340352941,0.8420910651764706,0.8061505930823529], + [0.9094595977529412,0.8393864797647058,0.8003313524235294], + [0.9127650614705882,0.8366818943529412,0.7945121117647058], + [0.9160705251882353,0.8339773089411765,0.7886928711058824], + [0.9193759889058823,0.8312727235294118,0.7828736304470588], + [0.9226814526235294,0.8285681381176471,0.7770543897882353], + [0.925563423,0.8255172980705883,0.7711363078117647], + [0.9281160096666666,0.8221971488627451,0.765141349254902], + [0.9306685963333333,0.818876999654902,0.7591463906980392], + [0.933221183,0.8155568504470588,0.7531514321411764], + [0.9357737696666666,0.8122367012392158,0.7471564735843139], + [0.9383263563333333,0.8089165520313726,0.741161515027451], + [0.940878943,0.8055964028235294,0.7351665564705883], + [0.9434315296666667,0.8022762536156862,0.7291715979137255], + [0.945540298909804,0.7986057405333333,0.7231054172980392], + [0.9473454036,0.7946955048,0.7169905058], + [0.9491505082901961,0.7907852690666667,0.7108755943019608], + [0.9509556129803922,0.7868750333333333,0.7047606828039216], + [0.9527607176705882,0.7829647976,0.6986457713058823], + [0.9545658223607844,0.7790545618666667,0.6925308598078431], + [0.9563709270509804,0.7751443261333334,0.6864159483098039], + [0.9581760317411765,0.7712340904,0.6803010368117647], + [0.9595176584705882,0.7669728545098039,0.6741447150392157], + [0.9605811984235294,0.7625010185254902,0.6679635471019607], + [0.9616447383764706,0.7580291825411765,0.6617823791647058], + [0.9627082783294117,0.7535573465568628,0.655601211227451], + [0.9637718182823529,0.7490855105725491,0.6494200432901962], + [0.9648353582352941,0.7446136745882352,0.6432388753529412], + [0.9658988981882353,0.7401418386039216,0.6370577074156862], + [0.9669624381411764,0.7356700026196078,0.6308765394784314], + [0.9675442976352941,0.7308497161882352,0.6246854782352941], + [0.9678738483176471,0.7258469080941177,0.6184892347843137], + [0.968203399,0.7208441,0.6122929913333334], + [0.9685329496823529,0.7158412919058823,0.6060967478823529], + [0.9688625003647059,0.7108384838117647,0.5999005044313725], + [0.9691920510470589,0.705835675717647,0.5937042609803921], + [0.9695216017294117,0.7008328676235294,0.5875080175294117], + [0.9698511524117647,0.6958300595294117,0.5813117740784314], + [0.9696829796666666,0.6904839307372549,0.5751383613647059], + [0.9692885689999999,0.6849817470823529,0.5689753262588235], + [0.9688941583333334,0.679479563427451,0.5628122911529412], + [0.9684997476666667,0.673977379772549,0.5566492560470588], + [0.968105337,0.6684751961176472,0.5504862209411766], + [0.9677109263333333,0.6629730124627451,0.5443231858352942], + [0.9673165156666667,0.6574708288078431,0.5381601507294118], + [0.966922105,0.6519686451529412,0.5319971156235295], + [0.9660167198392157,0.6461297415882352,0.5258903482588235], + [0.9649113881372549,0.6401590780588234,0.5198055987058824], + [0.963806056435294,0.6341884145294118,0.5137208491529413], + [0.9627007247333333,0.628217751,0.5076360996], + [0.9615953930313725,0.6222470874705882,0.5015513500470589], + [0.9604900613294117,0.6162764239411764,0.49546660049411767], + [0.9593847296274509,0.6103057604117648,0.4893818509411765], + [0.9582793979254902,0.604335096882353,0.48329710138823534], + [0.9566532109764706,0.598033822717647,0.4773022923529412], + [0.9548534056117647,0.5916223450078432,0.4713374634901961], + [0.9530536002470588,0.5852108672980392,0.465372634627451], + [0.951253794882353,0.5787993895882353,0.4594078057647059], + [0.9494539895176471,0.5723879118784315,0.453442976901961], + [0.9476541841529411,0.5659764341686274,0.4474781480392157], + [0.9458543787882353,0.5595649564588235,0.44151331917647063], + [0.9440545734235294,0.5531534787490197,0.4355484903137255], + [0.9417279298235294,0.5464134770196079,0.429707070372549], + [0.9392537715176471,0.5395814885647059,0.4239002049294118], + [0.9367796132117647,0.5327495001098039,0.41809333948627453], + [0.9343054549058823,0.525917511654902,0.4122864740431373], + [0.9318312966,0.5190855232,0.4064796086], + [0.9293571382941177,0.512253534745098,0.40067274315686274], + [0.9268829799882353,0.5054215462901961,0.3948658777137255], + [0.9244088216823529,0.49858955783529413,0.38905901227058826], + [0.921406221227451,0.49142041718431373,0.38340843537647057], + [0.9182816725843137,0.48417347218039214,0.37779392507058823], + [0.9151571239411764,0.4769265271764706,0.3721794147647059], + [0.9120325752980393,0.469679582172549,0.36656490445882356], + [0.908908026654902,0.46243263716862765,0.36095039415294133], + [0.9057834780117647,0.4551856921647059,0.35533588384705883], + [0.9026589293686275,0.4479387471607843,0.3497213735411765], + [0.8995343807254902,0.4406918021568627,0.34410686323529416], + [0.8958845948352941,0.43307455670588235,0.3386806345176471], + [0.8921375427882353,0.4253887370980392,0.33328927276078435], + [0.8883904907411765,0.41770291749019606,0.32789791100392157], + [0.8846434386941177,0.41001709788235297,0.32250654924705885], + [0.8808963866470588,0.4023312782745098,0.3171151874901961], + [0.8771493346,0.39464545866666667,0.31172382573333335], + [0.8734022825529412,0.3869596390588235,0.3063324639764706], + [0.8696552305058823,0.37927381945098043,0.30094110221960785], + [0.8653913329372549,0.3711276720470588,0.2957689564156863], + [0.8610536002941176,0.3629157635294118,0.2906281271764706], + [0.8567158676509804,0.3547038550117647,0.2854872979372549], + [0.8523781350078431,0.34649194649411763,0.2803464686980392], + [0.848040402364706,0.3382800379764708,0.2752056394588237], + [0.8437026697215686,0.3300681294588235,0.2700648102196078], + [0.8393649370784314,0.32185622094117644,0.26492398098039216], + [0.8350272044352941,0.3136443124235294,0.25978315174117644], + [0.8301865219490197,0.30473276355294115,0.25489142806666665], + [0.8252938101686275,0.2957488380941176,0.2500254739333333], + [0.8204010983882353,0.2867649126352941,0.2451595198], + [0.8155083866078432,0.2777809871764706,0.24029356566666665], + [0.810615674827451,0.26879706171764706,0.23542761153333333], + [0.8057229630470588,0.2598131362588235,0.2305616574], + [0.8008302512666666,0.2508292108,0.22569570326666666], + [0.7959375394862745,0.24184528534117647,0.22082974913333334], + [0.7905615319411765,0.23139699905882352,0.21624203829411764], + [0.7851533046784314,0.2208510887215686,0.21167287700784312], + [0.7797450774156863,0.21030517838431373,0.20710371572156863], + [0.7743368501529412,0.19975926804705882,0.2025345544352941], + [0.7689286228901963,0.18921335770980421,0.19796539314901973], + [0.763520395627451,0.17866744737254903,0.1933962318627451], + [0.758112168364706,0.1681215370352941,0.18882707057647058], + [0.7527039411019608,0.1575756266980392,0.1842579092901961], + [0.7468380122117647,0.14002101948235293,0.17999609695686275], + [0.7409573187529412,0.12224032527058823,0.17574419910588235], + [0.7350766252941177,0.10445963105882351,0.17149230125490195], + [0.7291959318352941,0.08667893684705881,0.16724040340392157], + [0.7233152383764706,0.06889824263529411,0.16298850555294117], + [0.717434544917647,0.05111754842352939,0.15873660770196077], + [0.7115538514588235,0.03333685421176469,0.1544847098509804], + [0.705673158,0.01555616,0.150232812] ], + coolwarm_r: [ + [0.705673158,0.01555616,0.150232812], + [0.7115538514588235,0.0333368542117647,0.1544847098509804], + [0.717434544917647,0.05111754842352941,0.15873660770196077], + [0.7233152383764706,0.06889824263529412,0.16298850555294117], + [0.7291959318352941,0.08667893684705882,0.16724040340392157], + [0.7350766252941177,0.10445963105882353,0.17149230125490195], + [0.7409573187529412,0.12224032527058823,0.17574419910588235], + [0.7468380122117647,0.14002101948235296,0.17999609695686275], + [0.7527039411019608,0.1575756266980392,0.18425790929019606], + [0.758112168364706,0.16812153703529412,0.18882707057647058], + [0.763520395627451,0.178667447372549,0.1933962318627451], + [0.7689286228901961,0.1892133577098039,0.1979653931490196], + [0.7743368501529412,0.19975926804705882,0.2025345544352941], + [0.7797450774156863,0.21030517838431373,0.20710371572156863], + [0.7851533046784314,0.2208510887215686,0.21167287700784312], + [0.7905615319411765,0.23139699905882352,0.21624203829411764], + [0.7959375394862745,0.24184528534117647,0.22082974913333334], + [0.8008302512666666,0.2508292108,0.22569570326666666], + [0.8057229630470588,0.2598131362588235,0.2305616574], + [0.810615674827451,0.26879706171764706,0.23542761153333333], + [0.8155083866078432,0.2777809871764706,0.24029356566666665], + [0.8204010983882353,0.2867649126352941,0.2451595198], + [0.8252938101686275,0.2957488380941176,0.2500254739333333], + [0.8301865219490197,0.30473276355294115,0.25489142806666665], + [0.8350272044352941,0.31364431242352936,0.25978315174117644], + [0.8393649370784314,0.32185622094117644,0.26492398098039216], + [0.8437026697215686,0.3300681294588235,0.2700648102196078], + [0.8480404023647059,0.3382800379764706,0.27520563945882354], + [0.8523781350078431,0.34649194649411763,0.2803464686980392], + [0.8567158676509804,0.3547038550117647,0.2854872979372549], + [0.8610536002941176,0.3629157635294118,0.2906281271764706], + [0.8653913329372549,0.3711276720470588,0.2957689564156863], + [0.8696552305058823,0.37927381945098043,0.30094110221960785], + [0.8734022825529412,0.38695963905882347,0.30633246397647057], + [0.8771493346,0.39464545866666667,0.31172382573333335], + [0.8808963866470588,0.4023312782745098,0.3171151874901961], + [0.8846434386941177,0.41001709788235297,0.32250654924705885], + [0.8883904907411764,0.417702917490196,0.32789791100392157], + [0.8921375427882353,0.4253887370980392,0.33328927276078435], + [0.8958845948352941,0.43307455670588235,0.3386806345176471], + [0.8995343807254902,0.4406918021568627,0.34410686323529416], + [0.9026589293686275,0.44793874716078425,0.34972137354117644], + [0.9057834780117647,0.4551856921647059,0.35533588384705883], + [0.908908026654902,0.4624326371686274,0.36095039415294117], + [0.9120325752980393,0.469679582172549,0.36656490445882356], + [0.9151571239411764,0.47692652717647055,0.37217941476470584], + [0.9182816725843137,0.48417347218039214,0.37779392507058823], + [0.921406221227451,0.49142041718431373,0.3834084353764706], + [0.9244088216823529,0.49858955783529413,0.38905901227058826], + [0.9268829799882353,0.5054215462901961,0.39486587771372544], + [0.9293571382941177,0.512253534745098,0.40067274315686274], + [0.9318312966,0.5190855232,0.4064796086], + [0.9343054549058823,0.525917511654902,0.4122864740431373], + [0.9367796132117647,0.5327495001098039,0.4180933394862745], + [0.9392537715176471,0.5395814885647059,0.4239002049294118], + [0.9417279298235294,0.5464134770196079,0.429707070372549], + [0.9440545734235294,0.5531534787490197,0.4355484903137255], + [0.9458543787882353,0.5595649564588235,0.4415133191764706], + [0.9476541841529411,0.5659764341686274,0.4474781480392157], + [0.949453989517647,0.5723879118784314,0.4534429769019608], + [0.951253794882353,0.5787993895882353,0.4594078057647059], + [0.9530536002470588,0.5852108672980392,0.465372634627451], + [0.9548534056117647,0.5916223450078432,0.4713374634901961], + [0.9566532109764706,0.598033822717647,0.4773022923529412], + [0.9582793979254902,0.604335096882353,0.48329710138823534], + [0.9593847296274509,0.6103057604117647,0.4893818509411765], + [0.9604900613294117,0.6162764239411764,0.4954666004941176], + [0.9615953930313725,0.6222470874705882,0.5015513500470589], + [0.9627007247333333,0.628217751,0.5076360996], + [0.963806056435294,0.6341884145294118,0.5137208491529413], + [0.9649113881372549,0.6401590780588234,0.5198055987058824], + [0.9660167198392157,0.6461297415882352,0.5258903482588235], + [0.966922105,0.6519686451529412,0.5319971156235295], + [0.9673165156666667,0.6574708288078431,0.5381601507294118], + [0.9677109263333333,0.662973012462745,0.544323185835294], + [0.968105337,0.668475196117647,0.5504862209411765], + [0.9684997476666667,0.673977379772549,0.5566492560470588], + [0.9688941583333334,0.679479563427451,0.5628122911529412], + [0.9692885689999999,0.6849817470823529,0.5689753262588235], + [0.9696829796666666,0.6904839307372549,0.5751383613647059], + [0.9698511524117647,0.6958300595294117,0.5813117740784314], + [0.9695216017294117,0.7008328676235294,0.5875080175294117], + [0.9691920510470589,0.7058356757176469,0.5937042609803921], + [0.9688625003647059,0.7108384838117647,0.5999005044313725], + [0.9685329496823529,0.7158412919058823,0.6060967478823529], + [0.968203399,0.7208441,0.6122929913333334], + [0.9678738483176471,0.7258469080941177,0.6184892347843137], + [0.9675442976352941,0.7308497161882352,0.6246854782352941], + [0.9669624381411764,0.7356700026196078,0.6308765394784314], + [0.9658988981882353,0.7401418386039216,0.6370577074156862], + [0.9648353582352941,0.7446136745882352,0.6432388753529411], + [0.9637718182823529,0.749085510572549,0.6494200432901961], + [0.9627082783294117,0.7535573465568628,0.655601211227451], + [0.9616447383764706,0.7580291825411765,0.6617823791647058], + [0.9605811984235294,0.7625010185254902,0.6679635471019607], + [0.9595176584705882,0.7669728545098039,0.6741447150392157], + [0.9581760317411765,0.7712340904,0.6803010368117647], + [0.9563709270509804,0.7751443261333334,0.6864159483098039], + [0.9545658223607844,0.7790545618666667,0.692530859807843], + [0.9527607176705882,0.7829647976,0.6986457713058823], + [0.9509556129803922,0.7868750333333333,0.7047606828039216], + [0.9491505082901961,0.7907852690666667,0.7108755943019608], + [0.9473454036,0.7946955048,0.7169905058], + [0.945540298909804,0.7986057405333333,0.7231054172980392], + [0.9434315296666667,0.8022762536156862,0.7291715979137255], + [0.940878943,0.8055964028235294,0.7351665564705883], + [0.9383263563333334,0.8089165520313725,0.7411615150274509], + [0.9357737696666667,0.8122367012392157,0.7471564735843137], + [0.933221183,0.8155568504470588,0.7531514321411764], + [0.9306685963333333,0.818876999654902,0.7591463906980392], + [0.9281160096666666,0.8221971488627451,0.765141349254902], + [0.925563423,0.8255172980705883,0.7711363078117647], + [0.9226814526235294,0.8285681381176471,0.7770543897882353], + [0.9193759889058823,0.8312727235294118,0.7828736304470588], + [0.9160705251882354,0.8339773089411765,0.7886928711058823], + [0.9127650614705882,0.8366818943529412,0.7945121117647058], + [0.9094595977529412,0.8393864797647058,0.8003313524235294], + [0.9061541340352941,0.8420910651764706,0.8061505930823529], + [0.9028486703176472,0.8447956505882352,0.8119698337411765], + [0.8995432066000001,0.8475002359999999,0.8177890744], + [0.8958817682941177,0.8499060565882353,0.8234990762941177], + [0.8918168921215687,0.8519732770431372,0.829085274254902], + [0.8877520159490196,0.8540404974980391,0.8346714722156863], + [0.8836871397764706,0.8561077179529412,0.8402576701764706], + [0.8796222636039216,0.8581749384078431,0.845843868137255], + [0.8755573874313726,0.860242158862745,0.8514300660980393], + [0.8714925112588235,0.8623093793176471,0.8570162640588236], + [0.8674276350862745,0.864376599772549,0.8626024620196079], + [0.863391831290196,0.8650837958196078,0.8676338842627451], + [0.8593850998705882,0.8644309674588235,0.8721105307882353], + [0.8553783684509804,0.8637781390980391,0.8765871773137255], + [0.8513716370313725,0.8631253107372548,0.8810638238392158], + [0.8473649056117648,0.8624724823764706,0.8855404703647058], + [0.8433581741921569,0.8618196540156863,0.8900171168901961], + [0.839351442772549,0.861166825654902,0.8944937634156863], + [0.8353447113529412,0.8605139972941176,0.8989704099411765], + [0.831148228,0.8595131945333333,0.9031101586666667], + [0.8267843164705883,0.8582053555372549,0.906952644627451], + [0.8224204049411764,0.8568975165411765,0.9107951305882354], + [0.8180564934117647,0.8555896775450981,0.9146376165490196], + [0.8136925818823529,0.8542818385490196,0.9184801025098039], + [0.8093286703529412,0.8529739995529412,0.9223225884705882], + [0.8049647588235295,0.8516661605568627,0.9261650744313725], + [0.8006008472941177,0.8503583215607843,0.9300075603921568], + [0.7960638698588236,0.8486932057882353,0.9334714683058823], + [0.7913922856078431,0.8467502080784314,0.9366409266274509], + [0.7867207013568628,0.8448072103686275,0.9398103849490196], + [0.7820491171058823,0.8428642126588235,0.9429798432705883], + [0.7773775328549021,0.8409212149490197,0.9461493015921567], + [0.7727059486039215,0.8389782172392157,0.9493187599137255], + [0.7680343643529411,0.8370352195294117,0.9524882182352941], + [0.7633627801019607,0.8350922218196078,0.9556576765568627], + [0.7585388256862745,0.8327865940588235,0.9584078547254902], + [0.753610618,0.830232851,0.960871157], + [0.7486824103137254,0.8276791079411765,0.9633344592745098], + [0.743754202627451,0.8251253648823529,0.9657977615490196], + [0.7388259949411764,0.8225716218235294,0.9682610638235294], + [0.733897787254902,0.8200178787647059,0.9707243660980392], + [0.7289695795686274,0.8174641357058824,0.973187668372549], + [0.724041371882353,0.8149103926470588,0.9756509706470589], + [0.7189852929803922,0.811992893745098,0.9776561613921568], + [0.7138524913490196,0.8088571413372548,0.9793864852196078], + [0.7087196897176471,0.8057213889294117,0.9811168090470588], + [0.7035868880862746,0.8025856365215686,0.9828471328745098], + [0.6984540864549021,0.7994498841137255,0.9845774567019607], + [0.6933212848235294,0.7963141317058823,0.9863077805294118], + [0.6881884831921569,0.7931783792980391,0.9880381043568628], + [0.6830556815607843,0.790042626890196,0.9897684281843138], + [0.677822981117647,0.786546437235294,0.9910045882470588], + [0.6725379527254902,0.782861447117647,0.9919819006235294], + [0.6672529243333334,0.7791764569999999,0.992959213], + [0.6619678959411764,0.7754914668823529,0.9939365253764706], + [0.6566828675490196,0.7718064767647058,0.9949138377529412], + [0.6513978391568628,0.7681214866470588,0.9958911501294118], + [0.6461128107647058,0.7644364965294117,0.9968684625058823], + [0.640827782372549,0.7607515064117647,0.9978457748823529], + [0.6354738224588236,0.7567139921764706,0.9982965591019608], + [0.6300885300352941,0.7525162397058823,0.9985080123411765], + [0.6247032376117647,0.7483184872352941,0.9987194655803922], + [0.6193179451882354,0.7441207347647059,0.9989309188196078], + [0.6139326527647061,0.7399229822941178,0.9991423720588235], + [0.6085473603411765,0.7357252298235294,0.9993538252980392], + [0.603162067917647,0.7315274773529412,0.9995652785372549], + [0.5977767754941177,0.7273297248823529,0.9997767317764705], + [0.5923558594980393,0.7227920292549019,0.9994338748235294], + [0.5869210038431373,0.7181213123921568,0.9988741138823529], + [0.5814861481882353,0.7134505955294117,0.9983143529411764], + [0.5760512925333333,0.7087798786666667,0.997754592], + [0.5706164368784313,0.7041091618039216,0.9971948310588236], + [0.5651815812235294,0.6994384449411765,0.9966350701176471], + [0.5597467255686274,0.6947677280784313,0.9960753091764706], + [0.5543118699137255,0.6900970112156862,0.9955155482352941], + [0.5488761722823529,0.6851035851764705,0.9943791404235295], + [0.5434401939921568,0.6800025894117647,0.9930505169882353], + [0.5380042157019608,0.6749015936470588,0.9917218935529412], + [0.5325682374117646,0.6698005978823529,0.9903932701176471], + [0.5271322591215687,0.6646996021176472,0.989064646682353], + [0.5216962808313725,0.6595986063529412,0.9877360232470589], + [0.5162603025411764,0.6544976105882353,0.9864073998117647], + [0.5108243242509803,0.6493966148235294,0.9850787763764706], + [0.5054226428235293,0.6439946735686275,0.9831574312745098], + [0.500030564517647,0.6385084675764706,0.9810701241058823], + [0.4946384862117647,0.6330222615843137,0.9789828169372549], + [0.48924640790588236,0.6275360555921569,0.9768955097686275], + [0.48385432959999997,0.6220498496,0.9748082026], + [0.4784622512941176,0.6165636436078431,0.9727208954313725], + [0.4730701729882353,0.6110774376156862,0.970633588262745], + [0.46767809468235294,0.6055912316235293,0.9685462810941176], + [0.4623543965803922,0.5998301116235294,0.9658571917921568], + [0.4570464785254902,0.5940055499294118,0.963029229690196], + [0.45173856047058825,0.5881809882352941,0.9602012675882353], + [0.4464306424156863,0.5823564265411765,0.9573733054862745], + [0.4411227243607845,0.576531864847059,0.9545453433843138], + [0.4358148063058824,0.5707073031529412,0.951717381282353], + [0.4305068882509804,0.5648827414588236,0.9488894191803922], + [0.42519897019607844,0.559058179764706,0.9460614570784314], + [0.4199907090352941,0.5529885453176471,0.9426303421882353], + [0.41480090285490195,0.5468735270274511,0.939087532337255], + [0.4096110966745098,0.540758508737255,0.9355447224862745], + [0.4044212904941176,0.5346434904470588,0.9320019126352941], + [0.39923148431372546,0.5285284721568628,0.9284591027843138], + [0.39404167813333335,0.5224134538666667,0.9249162929333333], + [0.3888518719529412,0.5162984355764706,0.921373483082353], + [0.383662065772549,0.5101834172862746,0.9178306732313726], + [0.3785982492705882,0.5038562171921569,0.9136916108470589], + [0.37355243129411764,0.4974987054117647,0.9094673695294118], + [0.36850661331764706,0.49114119363137254,0.9052431282117647], + [0.3634607953411765,0.4847836818509804,0.9010188868941177], + [0.358414977364706,0.4784261700705884,0.8967946455764707], + [0.3533691593882353,0.47206865829019606,0.8925704042588235], + [0.34832334141176474,0.4657111465098039,0.8883461629411764], + [0.34327752343529416,0.45935363472941176,0.8841219216235294], + [0.3383765114431373,0.45281860883137254,0.8793170768784313], + [0.33349047938039217,0.44626521940392155,0.8744521697098039], + [0.3286044473176471,0.43971182997647057,0.8695872625411765], + [0.32371841525490197,0.4331584405490196,0.864722355372549], + [0.31883238319215684,0.4266050511215686,0.8598574482039216], + [0.31394635112941177,0.4200516616941176,0.8549925410352941], + [0.30906031906666664,0.41349827226666663,0.8501276338666667], + [0.3041742870039216,0.4069448828392157,0.8452627266980393], + [0.2994412594117647,0.40024818329411765,0.8398419750588235], + [0.29471843211764703,0.39354192974117647,0.8343841671215686], + [0.2899956048235294,0.3868356761882353,0.8289263591843137], + [0.28527277752941177,0.38012942263529415,0.8234685512470589], + [0.2805499502352942,0.3734231690823531,0.8180107433098041], + [0.27582712294117645,0.36671691552941177,0.812552935372549], + [0.2711042956470588,0.3600106619764706,0.8070951274352941], + [0.26638146835294113,0.35330440842352945,0.8016373194980392], + [0.26180535615686273,0.3464843163058824,0.795657775117647], + [0.25723397670588233,0.3396605519764706,0.7896614005294117], + [0.2526625972549019,0.3328367876470588,0.7836650259411765], + [0.24809121780392157,0.3260130233176471,0.7776686513529412], + [0.24351983835294116,0.3191892589882353,0.7716722767647058], + [0.2389484589019608,0.3123654946588235,0.7656759021764705], + [0.2343770794509804,0.3055417303294118,0.7596795275882353], + [0.2298057,0.298717966,0.753683153] ], + copper: [ + [0.0,0.0,0.0], + [0.004844289517606619,0.003063529411764706,0.0019509803921568627], + [0.009688579035213238,0.006127058823529412,0.0039019607843137254], + [0.014532868552819857,0.009190588235294117,0.0058529411764705885], + [0.019377158070426476,0.012254117647058823,0.007803921568627451], + [0.024221447588033095,0.01531764705882353,0.009754901960784313], + [0.029065737105639713,0.018381176470588234,0.011705882352941177], + [0.03391002662324633,0.021444705882352942,0.01365686274509804], + [0.03875431614085295,0.024508235294117647,0.015607843137254902], + [0.04359860565845957,0.02757176470588235,0.017558823529411766], + [0.04844289517606619,0.03063529411764706,0.019509803921568626], + [0.05328718469367281,0.03369882352941177,0.02146078431372549], + [0.05813147421127943,0.03676235294117647,0.023411764705882354], + [0.06297576372888604,0.039825882352941176,0.025362745098039215], + [0.06782005324649266,0.042889411764705884,0.02731372549019608], + [0.07266434276409928,0.045952941176470585,0.02926470588235294], + [0.0775086322817059,0.04901647058823529,0.031215686274509803], + [0.08235292179931251,0.05208,0.033166666666666664], + [0.08719721131691914,0.0551435294117647,0.03511764705882353], + [0.09204150083452575,0.05820705882352941,0.03706862745098039], + [0.09688579035213238,0.06127058823529412,0.03901960784313725], + [0.10173007986973899,0.06433411764705882,0.04097058823529412], + [0.10657436938734562,0.06739764705882353,0.04292156862745098], + [0.11141865890495223,0.07046117647058824,0.04487254901960784], + [0.11626294842255885,0.07352470588235294,0.04682352941176471], + [0.12110723794016547,0.07658823529411765,0.04877450980392157], + [0.12595152745777208,0.07965176470588235,0.05072549019607843], + [0.1307958169753787,0.08271529411764705,0.05267647058823529], + [0.13564010649298533,0.08577882352941177,0.05462745098039216], + [0.14048439601059196,0.08884235294117647,0.05657843137254902], + [0.14532868552819855,0.09190588235294117,0.05852941176470588], + [0.15017297504580518,0.09496941176470589,0.060480392156862746], + [0.1550172645634118,0.09803294117647059,0.062431372549019606], + [0.15986155408101838,0.10109647058823529,0.06438235294117646], + [0.16470584359862503,0.10416,0.06633333333333333], + [0.16955013311623165,0.10722352941176472,0.0682843137254902], + [0.17439442263383828,0.1102870588235294,0.07023529411764706], + [0.17923871215144485,0.1133505882352941,0.07218627450980392], + [0.1840830016690515,0.11641411764705882,0.07413725490196078], + [0.18892729118665813,0.11947764705882354,0.07608823529411765], + [0.19377158070426476,0.12254117647058824,0.0780392156862745], + [0.19861587022187133,0.12560470588235292,0.07999019607843136], + [0.20346015973947798,0.12866823529411764,0.08194117647058824], + [0.2083044492570846,0.13173176470588235,0.08389215686274511], + [0.21314873877469123,0.13479529411764707,0.08584313725490196], + [0.2179930282922978,0.13785882352941176,0.08779411764705881], + [0.22283731780990446,0.14092235294117647,0.08974509803921568], + [0.22768160732751108,0.14398588235294119,0.09169607843137255], + [0.2325258968451177,0.14704941176470587,0.09364705882352942], + [0.23737018636272428,0.1501129411764706,0.09559803921568627], + [0.24221447588033093,0.1531764705882353,0.09754901960784314], + [0.24705876539793756,0.15624000000000002,0.0995], + [0.25190305491554416,0.1593035294117647,0.10145098039215686], + [0.2567473444331508,0.1623670588235294,0.10340196078431371], + [0.2615916339507574,0.1654305882352941,0.10535294117647058], + [0.26643592346836403,0.16849411764705882,0.10730392156862746], + [0.27128021298597066,0.17155764705882354,0.10925490196078431], + [0.27612450250357723,0.17462117647058822,0.11120588235294117], + [0.2809687920211839,0.17768470588235294,0.11315686274509804], + [0.28581308153879054,0.18074823529411765,0.1151078431372549], + [0.2906573710563971,0.18381176470588234,0.11705882352941176], + [0.29550166057400373,0.18687529411764706,0.11900980392156862], + [0.30034595009161036,0.18993882352941177,0.12096078431372549], + [0.305190239609217,0.19300235294117649,0.12291176470588236], + [0.3100345291268236,0.19606588235294117,0.12486274509803921], + [0.31487881864443024,0.19912941176470586,0.12681372549019607], + [0.31972310816203675,0.20219294117647058,0.12876470588235292], + [0.3245673976796435,0.2052564705882353,0.1307156862745098], + [0.32941168719725006,0.20832,0.13266666666666665], + [0.3342559767148567,0.2113835294117647,0.1346176470588235], + [0.3391002662324633,0.21444705882352944,0.1365686274509804], + [0.34394455575006994,0.21751058823529412,0.13851960784313727], + [0.34878884526767656,0.2205741176470588,0.14047058823529412], + [0.3536331347852832,0.22363764705882352,0.14242156862745098], + [0.3584774243028897,0.2267011764705882,0.14437254901960783], + [0.3633217138204964,0.22976470588235295,0.1463235294117647], + [0.368166003338103,0.23282823529411764,0.14827450980392157], + [0.37301029285570964,0.23589176470588233,0.15022549019607842], + [0.37785458237331626,0.23895529411764707,0.1521764705882353], + [0.3826988718909229,0.2420188235294118,0.15412745098039216], + [0.3875431614085295,0.24508235294117647,0.156078431372549], + [0.39238745092613614,0.24814588235294116,0.15802941176470586], + [0.39723174044374265,0.25120941176470585,0.15998039215686272], + [0.40207602996134933,0.2542729411764706,0.16193137254901963], + [0.40692031947895596,0.2573364705882353,0.16388235294117648], + [0.4117646089965626,0.26039999999999996,0.16583333333333333], + [0.4166088985141692,0.2634635294117647,0.16778431372549021], + [0.42145318803177584,0.2665270588235294,0.16973529411764707], + [0.42629747754938246,0.26959058823529414,0.17168627450980392], + [0.4311417670669891,0.2726541176470588,0.17363725490196077], + [0.4359860565845956,0.2757176470588235,0.17558823529411763], + [0.4408303461022023,0.27878117647058825,0.1775392156862745], + [0.4456746356198089,0.28184470588235294,0.17949019607843136], + [0.45051892513741554,0.28490823529411763,0.18144117647058822], + [0.45536321465502216,0.28797176470588237,0.1833921568627451], + [0.4602075041726288,0.29103529411764706,0.18534313725490195], + [0.4650517936902354,0.29409882352941175,0.18729411764705883], + [0.46989608320784204,0.29716235294117643,0.1892450980392157], + [0.47474037272544856,0.3002258823529412,0.19119607843137254], + [0.47958466224305524,0.3032894117647059,0.19314705882352942], + [0.48442895176066186,0.3063529411764706,0.19509803921568628], + [0.4892732412782685,0.3094164705882353,0.19704901960784313], + [0.4941175307958751,0.31248000000000004,0.199], + [0.49896182031348174,0.3155435294117647,0.20095098039215686], + [0.5038061098310883,0.3186070588235294,0.20290196078431372], + [0.5086503993486949,0.3216705882352941,0.20485294117647057], + [0.5134946888663016,0.3247341176470588,0.20680392156862742], + [0.5183389783839082,0.3277976470588235,0.2087549019607843], + [0.5231832679015148,0.3308611764705882,0.21070588235294116], + [0.5280275574191214,0.3339247058823529,0.21265686274509804], + [0.5328718469367281,0.33698823529411764,0.21460784313725492], + [0.5377161364543347,0.3400517647058824,0.21655882352941178], + [0.5425604259719413,0.3431152941176471,0.21850980392156863], + [0.5474047154895479,0.34617882352941176,0.22046078431372548], + [0.5522490050071545,0.34924235294117645,0.22241176470588234], + [0.5570932945247612,0.3523058823529412,0.22436274509803922], + [0.5619375840423678,0.3553694117647059,0.22631372549019607], + [0.5667818735599744,0.35843294117647057,0.22826470588235293], + [0.5716261630775811,0.3614964705882353,0.2302156862745098], + [0.5764704525951876,0.36456,0.23216666666666666], + [0.5813147421127942,0.3676235294117647,0.2341176470588235], + [0.5861590316304008,0.3706870588235294,0.23606862745098037], + [0.5910033211480075,0.3737505882352941,0.23801960784313725], + [0.5958476106656141,0.37681411764705885,0.23997058823529413], + [0.6006919001832207,0.37987764705882354,0.24192156862745098], + [0.6055361897008273,0.38294117647058823,0.24387254901960784], + [0.610380479218434,0.38600470588235297,0.24582352941176472], + [0.6152247687360406,0.38906823529411766,0.24777450980392157], + [0.6200690582536472,0.39213176470588235,0.24972549019607843], + [0.6249133477712538,0.39519529411764703,0.2516764705882353], + [0.6297576372888605,0.3982588235294117,0.25362745098039213], + [0.6346019268064671,0.4013223529411764,0.255578431372549], + [0.6394462163240735,0.40438588235294115,0.25752941176470584], + [0.6442905058416803,0.4074494117647059,0.25948039215686275], + [0.649134795359287,0.4105129411764706,0.2614313725490196], + [0.6539790848768935,0.4135764705882353,0.26338235294117646], + [0.6588233743945001,0.41664,0.2653333333333333], + [0.6636676639121067,0.4197035294117647,0.26728431372549016], + [0.6685119534297134,0.4227670588235294,0.269235294117647], + [0.67335624294732,0.42583058823529407,0.27118627450980387], + [0.6782005324649266,0.42889411764705887,0.2731372549019608], + [0.6830448219825332,0.43195764705882356,0.2750882352941177], + [0.6878891115001399,0.43502117647058824,0.27703921568627454], + [0.6927334010177465,0.43808470588235293,0.2789901960784314], + [0.6975776905353531,0.4411482352941176,0.28094117647058825], + [0.7024219800529597,0.44421176470588236,0.2828921568627451], + [0.7072662695705664,0.44727529411764705,0.28484313725490196], + [0.712110559088173,0.45033882352941174,0.2867941176470588], + [0.7169548486057794,0.4534023529411764,0.28874509803921566], + [0.7217991381233863,0.4564658823529412,0.2906960784313726], + [0.7266434276409928,0.4595294117647059,0.2926470588235294], + [0.7314877171585994,0.4625929411764706,0.2945980392156863], + [0.736332006676206,0.4656564705882353,0.29654901960784313], + [0.7411762961938126,0.46871999999999997,0.2985], + [0.7460205857114193,0.47178352941176466,0.30045098039215684], + [0.7508648752290259,0.4748470588235294,0.3024019607843137], + [0.7557091647466325,0.47791058823529414,0.3043529411764706], + [0.7605534542642391,0.48097411764705883,0.30630392156862746], + [0.7653977437818458,0.4840376470588236,0.3082549019607843], + [0.7702420332994524,0.48710117647058826,0.31020588235294116], + [0.775086322817059,0.49016470588235295,0.312156862745098], + [0.7799306123346657,0.49322823529411763,0.31410784313725487], + [0.7847749018522723,0.4962917647058823,0.3160588235294117], + [0.7896191913698789,0.499355294117647,0.3180098039215686], + [0.7944634808874853,0.5024188235294117,0.31996078431372543], + [0.7993077704050922,0.5054823529411765,0.32191176470588234], + [0.8041520599226987,0.5085458823529412,0.32386274509803925], + [0.8089963494403053,0.5116094117647059,0.3258137254901961], + [0.8138406389579119,0.5146729411764706,0.32776470588235296], + [0.8186849284755185,0.5177364705882352,0.3297156862745098], + [0.8235292179931252,0.5207999999999999,0.33166666666666667], + [0.8283735075107318,0.5238635294117646,0.3336176470588235], + [0.8332177970283384,0.5269270588235294,0.33556862745098043], + [0.838062086545945,0.5299905882352941,0.3375196078431373], + [0.8429063760635517,0.5330541176470588,0.33947058823529414], + [0.8477506655811583,0.5361176470588236,0.341421568627451], + [0.8525949550987649,0.5391811764705883,0.34337254901960784], + [0.8574392446163716,0.542244705882353,0.3453235294117647], + [0.8622835341339782,0.5453082352941176,0.34727450980392155], + [0.8671278236515848,0.5483717647058823,0.3492254901960784], + [0.8719721131691912,0.551435294117647,0.35117647058823526], + [0.8768164026867981,0.5544988235294118,0.35312745098039217], + [0.8816606922044046,0.5575623529411765,0.355078431372549], + [0.8865049817220112,0.5606258823529412,0.3570294117647059], + [0.8913492712396178,0.5636894117647059,0.3589803921568627], + [0.8961935607572244,0.5667529411764706,0.3609313725490196], + [0.9010378502748311,0.5698164705882353,0.36288235294117643], + [0.9058821397924377,0.57288,0.3648333333333333], + [0.9107264293100443,0.5759435294117647,0.3667843137254902], + [0.915570718827651,0.5790070588235294,0.36873529411764705], + [0.9204150083452576,0.5820705882352941,0.3706862745098039], + [0.9252592978628642,0.5851341176470588,0.37263725490196076], + [0.9301035873804708,0.5881976470588235,0.37458823529411767], + [0.9349478768980775,0.5912611764705882,0.3765392156862745], + [0.9397921664156841,0.5943247058823529,0.3784901960784314], + [0.9446364559332907,0.5973882352941177,0.3804411764705882], + [0.9494807454508971,0.6004517647058824,0.3823921568627451], + [0.954325034968504,0.603515294117647,0.384343137254902], + [0.9591693244861105,0.6065788235294118,0.38629411764705884], + [0.9640136140037171,0.6096423529411765,0.3882450980392157], + [0.9688579035213237,0.6127058823529412,0.39019607843137255], + [0.9737021930389304,0.6157694117647059,0.3921470588235294], + [0.978546482556537,0.6188329411764706,0.39409803921568626], + [0.9833907720741436,0.6218964705882353,0.3960490196078431], + [0.9882350615917502,0.6249600000000001,0.398], + [0.9930793511093569,0.6280235294117648,0.3999509803921569], + [0.9979236406269635,0.6310870588235294,0.4019019607843137], + [1.0,0.6341505882352941,0.4038529411764706], + [1.0,0.6372141176470588,0.40580392156862743], + [1.0,0.6402776470588235,0.4077549019607843], + [1.0,0.6433411764705882,0.40970588235294114], + [1.0,0.6464047058823529,0.411656862745098], + [1.0,0.6494682352941176,0.41360784313725485], + [1.0,0.6525317647058824,0.41555882352941176], + [1.0,0.655595294117647,0.4175098039215686], + [1.0,0.6586588235294117,0.41946078431372547], + [1.0,0.6617223529411764,0.4214117647058823], + [1.0,0.6647858823529411,0.42336274509803923], + [1.0,0.6678494117647058,0.4253137254901961], + [1.0,0.6709129411764706,0.42726470588235294], + [1.0,0.6739764705882353,0.42921568627450984], + [1.0,0.67704,0.4311666666666667], + [1.0,0.6801035294117648,0.43311764705882355], + [1.0,0.6831670588235295,0.4350686274509804], + [1.0,0.6862305882352941,0.43701960784313726], + [1.0,0.6892941176470588,0.4389705882352941], + [1.0,0.6923576470588235,0.44092156862745097], + [1.0,0.6954211764705882,0.4428725490196078], + [1.0,0.6984847058823529,0.4448235294117647], + [1.0,0.7015482352941177,0.4467745098039216], + [1.0,0.7046117647058824,0.44872549019607844], + [1.0,0.7076752941176471,0.4506764705882353], + [1.0,0.7107388235294118,0.45262745098039214], + [1.0,0.7138023529411764,0.454578431372549], + [1.0,0.7168658823529411,0.45652941176470585], + [1.0,0.7199294117647058,0.4584803921568627], + [1.0,0.7229929411764706,0.4604313725490196], + [1.0,0.7260564705882353,0.46238235294117647], + [1.0,0.72912,0.4643333333333333], + [1.0,0.7321835294117647,0.4662843137254902], + [1.0,0.7352470588235294,0.468235294117647], + [1.0,0.738310588235294,0.4701862745098039], + [1.0,0.7413741176470589,0.47213725490196073], + [1.0,0.7444376470588235,0.47408823529411764], + [1.0,0.7475011764705882,0.4760392156862745], + [1.0,0.750564705882353,0.4779901960784314], + [1.0,0.7536282352941177,0.47994117647058826], + [1.0,0.7566917647058824,0.4818921568627451], + [1.0,0.7597552941176471,0.48384313725490197], + [1.0,0.7628188235294118,0.4857941176470588], + [1.0,0.7658823529411765,0.4877450980392157], + [1.0,0.7689458823529411,0.48969607843137253], + [1.0,0.7720094117647059,0.49164705882352944], + [1.0,0.7750729411764706,0.4935980392156863], + [1.0,0.7781364705882353,0.49554901960784314], + [1.0,0.7812,0.4975] ], + copper_r: [ + [1.0,0.7812,0.4975], + [1.0,0.7781364705882353,0.49554901960784314], + [1.0,0.7750729411764706,0.4935980392156863], + [1.0,0.7720094117647058,0.49164705882352944], + [1.0,0.7689458823529411,0.48969607843137253], + [1.0,0.7658823529411765,0.4877450980392157], + [1.0,0.7628188235294118,0.4857941176470588], + [1.0,0.7597552941176471,0.48384313725490197], + [1.0,0.7566917647058824,0.4818921568627451], + [1.0,0.7536282352941177,0.4799411764705882], + [1.0,0.7505647058823529,0.47799019607843135], + [1.0,0.7475011764705882,0.4760392156862745], + [1.0,0.7444376470588235,0.47408823529411764], + [1.0,0.7413741176470589,0.4721372549019608], + [1.0,0.7383105882352942,0.47018627450980394], + [1.0,0.7352470588235294,0.4682352941176471], + [1.0,0.7321835294117647,0.4662843137254902], + [1.0,0.72912,0.4643333333333333], + [1.0,0.7260564705882353,0.46238235294117647], + [1.0,0.7229929411764706,0.4604313725490196], + [1.0,0.7199294117647059,0.45848039215686276], + [1.0,0.7168658823529412,0.45652941176470585], + [1.0,0.7138023529411764,0.454578431372549], + [1.0,0.7107388235294118,0.45262745098039214], + [1.0,0.7076752941176471,0.4506764705882353], + [1.0,0.7046117647058824,0.44872549019607844], + [1.0,0.7015482352941177,0.4467745098039216], + [1.0,0.6984847058823529,0.44482352941176473], + [1.0,0.6954211764705882,0.4428725490196078], + [1.0,0.6923576470588235,0.44092156862745097], + [1.0,0.6892941176470588,0.4389705882352941], + [1.0,0.6862305882352941,0.43701960784313726], + [1.0,0.6831670588235295,0.4350686274509804], + [1.0,0.6801035294117648,0.43311764705882355], + [1.0,0.67704,0.4311666666666667], + [1.0,0.6739764705882353,0.4292156862745098], + [1.0,0.6709129411764706,0.42726470588235294], + [1.0,0.6678494117647059,0.4253137254901961], + [1.0,0.6647858823529412,0.42336274509803923], + [1.0,0.6617223529411764,0.4214117647058824], + [1.0,0.6586588235294117,0.41946078431372547], + [1.0,0.655595294117647,0.41750980392156867], + [1.0,0.6525317647058824,0.41555882352941176], + [1.0,0.6494682352941177,0.4136078431372549], + [1.0,0.646404705882353,0.41165686274509805], + [1.0,0.6433411764705883,0.4097058823529412], + [1.0,0.6402776470588235,0.40775490196078434], + [1.0,0.6372141176470588,0.40580392156862743], + [1.0,0.6341505882352941,0.4038529411764706], + [0.9979236406269635,0.6310870588235294,0.4019019607843137], + [0.9930793511093569,0.6280235294117646,0.3999509803921569], + [0.9882350615917502,0.62496,0.398], + [0.9833907720741436,0.6218964705882353,0.3960490196078431], + [0.978546482556537,0.6188329411764706,0.3940980392156863], + [0.9737021930389304,0.6157694117647059,0.3921470588235294], + [0.9688579035213237,0.6127058823529412,0.39019607843137255], + [0.9640136140037171,0.6096423529411765,0.3882450980392157], + [0.9591693244861105,0.6065788235294118,0.38629411764705884], + [0.9543250349685038,0.603515294117647,0.384343137254902], + [0.9494807454508972,0.6004517647058824,0.3823921568627451], + [0.9446364559332906,0.5973882352941177,0.3804411764705882], + [0.9397921664156841,0.594324705882353,0.3784901960784314], + [0.9349478768980775,0.5912611764705882,0.3765392156862745], + [0.9301035873804708,0.5881976470588235,0.37458823529411767], + [0.9252592978628642,0.5851341176470588,0.37263725490196076], + [0.9204150083452576,0.5820705882352941,0.37068627450980396], + [0.915570718827651,0.5790070588235294,0.36873529411764705], + [0.9107264293100443,0.5759435294117647,0.3667843137254902], + [0.9058821397924377,0.5728800000000001,0.36483333333333334], + [0.9010378502748311,0.5698164705882354,0.3628823529411765], + [0.8961935607572244,0.5667529411764706,0.36093137254901964], + [0.8913492712396178,0.5636894117647059,0.3589803921568627], + [0.8865049817220112,0.5606258823529412,0.3570294117647059], + [0.8816606922044046,0.5575623529411765,0.355078431372549], + [0.8768164026867981,0.5544988235294118,0.35312745098039217], + [0.8719721131691913,0.551435294117647,0.3511764705882353], + [0.8671278236515847,0.5483717647058823,0.3492254901960784], + [0.8622835341339781,0.5453082352941176,0.3472745098039216], + [0.8574392446163714,0.542244705882353,0.3453235294117647], + [0.8525949550987648,0.5391811764705883,0.34337254901960784], + [0.8477506655811582,0.5361176470588236,0.341421568627451], + [0.8429063760635517,0.5330541176470589,0.33947058823529414], + [0.838062086545945,0.5299905882352942,0.3375196078431373], + [0.8332177970283384,0.5269270588235294,0.3355686274509804], + [0.8283735075107318,0.5238635294117647,0.3336176470588235], + [0.8235292179931252,0.5208,0.33166666666666667], + [0.8186849284755185,0.5177364705882352,0.32971568627450976], + [0.8138406389579119,0.5146729411764706,0.32776470588235296], + [0.8089963494403053,0.5116094117647059,0.32581372549019605], + [0.8041520599226987,0.5085458823529412,0.32386274509803925], + [0.7993077704050922,0.5054823529411765,0.32191176470588234], + [0.7944634808874854,0.5024188235294118,0.3199607843137255], + [0.7896191913698788,0.49935529411764706,0.31800980392156863], + [0.7847749018522723,0.4962917647058824,0.3160588235294118], + [0.7799306123346657,0.49322823529411763,0.3141078431372549], + [0.775086322817059,0.49016470588235295,0.312156862745098], + [0.7702420332994524,0.48710117647058826,0.31020588235294116], + [0.7653977437818458,0.4840376470588236,0.3082549019607843], + [0.7605534542642391,0.48097411764705883,0.30630392156862746], + [0.7557091647466325,0.4779105882352941,0.3043529411764706], + [0.7508648752290259,0.4748470588235294,0.3024019607843137], + [0.7460205857114193,0.4717835294117647,0.3004509803921569], + [0.7411762961938126,0.46871999999999997,0.2985], + [0.736332006676206,0.4656564705882353,0.29654901960784313], + [0.7314877171585994,0.4625929411764706,0.2945980392156863], + [0.7266434276409928,0.4595294117647059,0.2926470588235294], + [0.7217991381233863,0.4564658823529412,0.2906960784313726], + [0.7169548486057795,0.4534023529411765,0.28874509803921566], + [0.7121105590881729,0.4503388235294118,0.28679411764705887], + [0.7072662695705663,0.4472752941176471,0.28484313725490196], + [0.7024219800529596,0.44421176470588236,0.28289215686274505], + [0.697577690535353,0.4411482352941176,0.28094117647058825], + [0.6927334010177464,0.43808470588235293,0.27899019607843134], + [0.6878891115001399,0.43502117647058824,0.27703921568627454], + [0.6830448219825332,0.43195764705882356,0.27508823529411763], + [0.6782005324649266,0.4288941176470588,0.2731372549019608], + [0.67335624294732,0.4258305882352941,0.2711862745098039], + [0.6685119534297134,0.42276705882352944,0.2692352941176471], + [0.6636676639121069,0.4197035294117647,0.2672843137254902], + [0.6588233743945002,0.41664,0.2653333333333333], + [0.6539790848768936,0.4135764705882353,0.2633823529411765], + [0.649134795359287,0.4105129411764706,0.2614313725490196], + [0.6442905058416803,0.4074494117647059,0.25948039215686275], + [0.6394462163240737,0.40438588235294115,0.2575294117647059], + [0.6346019268064671,0.40132235294117646,0.255578431372549], + [0.6297576372888605,0.3982588235294118,0.2536274509803922], + [0.6249133477712538,0.39519529411764703,0.2516764705882353], + [0.6200690582536472,0.39213176470588235,0.24972549019607843], + [0.6152247687360406,0.38906823529411766,0.24777450980392157], + [0.610380479218434,0.38600470588235297,0.24582352941176472], + [0.6055361897008273,0.3829411764705883,0.24387254901960786], + [0.6006919001832207,0.3798776470588236,0.241921568627451], + [0.5958476106656143,0.37681411764705885,0.23997058823529416], + [0.5910033211480075,0.3737505882352941,0.23801960784313725], + [0.5861590316304008,0.3706870588235294,0.2360686274509804], + [0.5813147421127942,0.3676235294117647,0.23411764705882354], + [0.5764704525951876,0.36456,0.2321666666666667], + [0.571626163077581,0.3614964705882353,0.23021568627450983], + [0.5667818735599743,0.3584329411764706,0.22826470588235298], + [0.5619375840423677,0.35536941176470593,0.22631372549019613], + [0.5570932945247611,0.35230588235294114,0.22436274509803922], + [0.5522490050071546,0.34924235294117645,0.2224117647058823], + [0.5474047154895479,0.34617882352941176,0.22046078431372546], + [0.5425604259719413,0.3431152941176471,0.2185098039215686], + [0.5377161364543347,0.3400517647058824,0.21655882352941175], + [0.5328718469367281,0.33698823529411764,0.2146078431372549], + [0.5280275574191214,0.33392470588235296,0.21265686274509804], + [0.5231832679015148,0.33086117647058827,0.2107058823529412], + [0.5183389783839083,0.3277976470588236,0.20875490196078433], + [0.5134946888663017,0.3247341176470588,0.20680392156862742], + [0.508650399348695,0.3216705882352941,0.20485294117647057], + [0.5038061098310884,0.3186070588235294,0.20290196078431372], + [0.4989618203134817,0.3155435294117647,0.20095098039215686], + [0.49411753079587517,0.31248000000000004,0.199], + [0.48927324127826854,0.30941647058823535,0.19704901960784316], + [0.4844289517606619,0.3063529411764706,0.1950980392156863], + [0.4795846622430553,0.30328941176470586,0.1931470588235294], + [0.47474037272544867,0.3002258823529412,0.19119607843137254], + [0.46989608320784204,0.29716235294117643,0.1892450980392157], + [0.4650517936902354,0.29409882352941175,0.18729411764705883], + [0.4602075041726288,0.29103529411764706,0.18534313725490198], + [0.45536321465502216,0.28797176470588237,0.18339215686274513], + [0.45051892513741554,0.2849082352941177,0.18144117647058827], + [0.4456746356198089,0.281844705882353,0.17949019607843142], + [0.4408303461022024,0.2787811764705883,0.17753921568627457], + [0.43598605658459566,0.2757176470588235,0.17558823529411766], + [0.43114176706698903,0.2726541176470588,0.17363725490196075], + [0.4262974775493824,0.26959058823529414,0.1716862745098039], + [0.4214531880317758,0.26652705882352945,0.16973529411764704], + [0.41660889851416927,0.26346352941176476,0.1677843137254902], + [0.41176460899656264,0.2604000000000001,0.16583333333333333], + [0.406920319478956,0.2573364705882354,0.16388235294117648], + [0.4020760299613494,0.2542729411764706,0.16193137254901957], + [0.39723174044374276,0.2512094117647059,0.15998039215686272], + [0.39238745092613614,0.24814588235294122,0.15802941176470586], + [0.3875431614085295,0.24508235294117642,0.156078431372549], + [0.3826988718909229,0.24201882352941173,0.15412745098039216], + [0.37785458237331626,0.23895529411764704,0.1521764705882353], + [0.37301029285570964,0.23589176470588236,0.15022549019607845], + [0.368166003338103,0.23282823529411767,0.1482745098039216], + [0.3633217138204965,0.22976470588235298,0.14632352941176474], + [0.35847742430288976,0.22670117647058818,0.14437254901960783], + [0.35363313478528313,0.2236376470588235,0.14242156862745098], + [0.3487888452676765,0.2205741176470588,0.14047058823529412], + [0.3439445557500699,0.21751058823529412,0.13851960784313727], + [0.33910026623246337,0.21444705882352944,0.13656862745098042], + [0.33425597671485674,0.21138352941176475,0.13461764705882356], + [0.3294116871972501,0.20832000000000006,0.1326666666666667], + [0.3245673976796435,0.20525647058823526,0.1307156862745098], + [0.31972310816203686,0.20219294117647058,0.12876470588235295], + [0.31487881864443024,0.1991294117647059,0.1268137254901961], + [0.3100345291268236,0.1960658823529412,0.12486274509803924], + [0.305190239609217,0.1930023529411765,0.12291176470588233], + [0.30034595009161036,0.18993882352941183,0.12096078431372548], + [0.29550166057400373,0.18687529411764714,0.11900980392156862], + [0.2906573710563971,0.18381176470588234,0.11705882352941177], + [0.2858130815387906,0.18074823529411765,0.11510784313725492], + [0.28096879202118386,0.17768470588235297,0.11315686274509801], + [0.27612450250357723,0.17462117647058817,0.11120588235294115], + [0.2712802129859706,0.17155764705882348,0.1092549019607843], + [0.2664359234683641,0.1684941176470588,0.10730392156862745], + [0.26159163395075746,0.1654305882352941,0.1053529411764706], + [0.25674734443315084,0.16236705882352942,0.10340196078431374], + [0.2519030549155442,0.15930352941176473,0.10145098039215689], + [0.24705876539793759,0.15623999999999993,0.09949999999999998], + [0.24221447588033096,0.15317647058823525,0.09754901960784312], + [0.23737018636272433,0.15011294117647056,0.09559803921568627], + [0.2325258968451177,0.14704941176470587,0.09364705882352942], + [0.22768160732751108,0.14398588235294119,0.09169607843137256], + [0.22283731780990446,0.1409223529411765,0.08974509803921571], + [0.21799302829229783,0.1378588235294118,0.08779411764705886], + [0.2131487387746912,0.13479529411764712,0.085843137254902], + [0.2083044492570848,0.13173176470588244,0.08389215686274515], + [0.20346015973947795,0.12866823529411764,0.08194117647058824], + [0.19861587022187133,0.12560470588235295,0.07999019607843139], + [0.1937715807042647,0.12254117647058826,0.07803921568627453], + [0.18892729118665819,0.11947764705882358,0.07608823529411768], + [0.18408300166905156,0.11641411764705889,0.07413725490196077], + [0.17923871215144493,0.1133505882352942,0.07218627450980392], + [0.1743944226338383,0.1102870588235294,0.07023529411764706], + [0.16955013311623168,0.10722352941176472,0.06828431372549015], + [0.16470584359862506,0.10416000000000003,0.0663333333333333], + [0.15986155408101843,0.10109647058823523,0.06438235294117645], + [0.1550172645634118,0.09803294117647054,0.06243137254901959], + [0.15017297504580518,0.09496941176470586,0.06048039215686274], + [0.14532868552819855,0.09190588235294117,0.058529411764705885], + [0.14048439601059193,0.08884235294117648,0.05657843137254903], + [0.1356401064929853,0.0857788235294118,0.05462745098039218], + [0.1307958169753789,0.08271529411764711,0.052676470588235325], + [0.12595152745777205,0.07965176470588231,0.050725490196078415], + [0.12110723794016542,0.07658823529411762,0.04877450980392156], + [0.1162629484225588,0.07352470588235294,0.04682352941176471], + [0.11141865890495228,0.07046117647058825,0.044872549019607855], + [0.10657436938734566,0.06739764705882356,0.042921568627451], + [0.10173007986973903,0.06433411764705887,0.04097058823529415], + [0.0968857903521324,0.06127058823529419,0.039019607843137294], + [0.09204150083452578,0.05820705882352939,0.037068627450980385], + [0.08719721131691915,0.0551435294117647,0.03511764705882353], + [0.08235292179931253,0.052080000000000015,0.03316666666666668], + [0.0775086322817059,0.04901647058823533,0.031215686274509824], + [0.07266434276409928,0.04595294117647064,0.02926470588235297], + [0.06782005324649265,0.042889411764705954,0.027313725490196117], + [0.06297576372888603,0.039825882352941155,0.025362745098039263], + [0.0581314742112794,0.03676235294117647,0.023411764705882354], + [0.053287184693672995,0.03369882352941178,0.0214607843137255], + [0.04844289517606615,0.030635294117646983,0.01950980392156859], + [0.04359860565845952,0.027571764705882296,0.017558823529411738], + [0.038754316140852896,0.02450823529411761,0.015607843137254884], + [0.03391002662324638,0.02144470588235292,0.01365686274509803], + [0.029065737105639755,0.018381176470588234,0.011705882352941177], + [0.02422144758803313,0.015317647058823547,0.009754901960784323], + [0.019377158070426503,0.01225411764705886,0.00780392156862747], + [0.014532868552819878,0.009190588235294062,0.005852941176470561], + [0.009688579035213252,0.006127058823529374,0.003901960784313707], + [0.004844289517606626,0.003063529411764687,0.0019509803921568536], + [0.0,0.0,0.0] ], + cubehelix: [ + [0.0,0.0,0.0], + [0.006716294741447103,0.0021185743613995906,0.00597023288155738], + [0.013252415285460728,0.00428749900576095,0.01216178886697956], + [0.019599198317800597,0.006513601303033923,0.018563039127345624], + [0.025748104430187494,0.00880348230351031,0.025161867171587502], + [0.031691233349396,0.011163502753757985,0.031945702318386754], + [0.03742133763493212,0.013599769753652026,0.03890155390603582], + [0.04293183482770897,0.016118124077735142,0.04601604616361855], + [0.04821681803535116,0.01872412818265829,0.053275453666033826], + [0.05327106494298589,0.021423054920937448,0.06066573729471121], + [0.05809004524160909,0.024219876979716743,0.06817258062534762], + [0.06266992646934202,0.02711925706165498,0.07578142666363122], + [0.06700757826411259,0.030125538823454635,0.08347751484971086], + [0.0711005750294981,0.033242738585933594,0.09124591825211792], + [0.07494719701864877,0.0364745378279025,0.09907158087195042], + [0.07854642984436605,0.03982427647445866,0.10693935497838603], + [0.08189796242653116,0.04329494698864347,0.11483403839700104], + [0.08500218339116374,0.04688918927373824,0.12274041167293223], + [0.08786017593842758,0.05060928639179554,0.13064327503162995], + [0.09047371119989064,0.05445716110232384,0.13852748506080714], + [0.0928452401082787,0.05843437322336474,0.14637799103819257], + [0.0949778838058352,0.06254211781552795,0.15417987083084048], + [0.09687542262020574,0.06678122418788301,0.16191836629303405], + [0.09854228363950114,0.07115215572295082,0.16957891809124037], + [0.09998352692085306,0.07565501051639596,0.17714719988612818], + [0.10120483036935347,0.08028952282539623,0.18460915180334375], + [0.1022124733267644,0.08505506531806008,0.19195101312654872], + [0.10301331891178689,0.08995065211468102,0.19915935414815394], + [0.10361479515598847,0.09497494261006116,0.20622110711523312], + [0.104024874981701,0.10012624606460865,0.2131235962102581], + [0.10425205507031031,0.10540252695041774,0.21985456650857077], + [0.10430533367136455,0.11080141103707787,0.22640221185687606], + [0.10419418740482515,0.11632019220053316,0.2327552016195138], + [0.10392854711056776,0.12195583993692868,0.23890270624183174], + [0.10351877280091128,0.12770500756203546,0.2448344215826347], + [0.1029756277735051,0.1335640410755471,0.2505405919704192], + [0.10231025194333628,0.13952898866828906,0.2560120319409181], + [0.10153413445392945,0.14559561084917677,0.26124014661635997], + [0.10065908562899659,0.15175939116760714,0.2662169506897997], + [0.09969720832685408,0.15801554750586727,0.2709350859808844], + [0.09866086876085636,0.16435904391510084,0.2753878375324802], + [0.09756266684989742,0.17078460296738385,0.2795691482206972], + [0.09641540616370546,0.17728671859553138,0.28347363185399654], + [0.0952320635281978,0.18385966939138826,0.28709658474025446], + [0.09402575835657287,0.19049753233254862,0.29043399570386697], + [0.09280972177209738,0.19719419690670295,0.2934825545382206], + [0.09159726558869188,0.20394337960213008,0.29623965888210324], + [0.09040175121543563,0.21073863873223592,0.29870341951189405], + [0.0892365585509959,0.21757338956148978,0.3008726640446374], + [0.08811505493374118,0.22444091969962535,0.30274693905036704], + [0.08705056421292393,0.23133440473055777,0.3043265105753017], + [0.08605633600581403,0.23824692404212,0.30561236308077167], + [0.08514551520503576,0.24517147682244278,0.30660619680595214], + [0.08433111179960413,0.25210099818859155,0.3073104235656677], + [0.08362597107228092,0.2590283754129313,0.30772816099768746], + [0.08304274423486754,0.26594646421261964,0.307863225277045], + [0.08259385956193721,0.27284810506762325,0.3077201223179875], + [0.0822914940822713,0.27972613953271874,0.30730403748717383], + [0.08214754588591847,0.28657342650907236,0.30662082385470435], + [0.08217360710333568,0.2933828584411944,0.3056769890124602], + [0.08238093761150347,0.3001473774053336,0.3044796804920607], + [0.08278043952023958,0.3068599910557119,0.30303666981750255], + [0.08338263249016203,0.31351378839540034,0.3013563352302212], + [0.08419762993188756,0.32010195533910435,0.2994476431269095], + [0.08523511613408935,0.32661779003565533,0.2973201282529313], + [0.08650432436599098,0.3330547179185978,0.29498387269658305], + [0.08801401599773798,0.33940630645391495,0.2924494837317682], + [0.08977246067987679,0.345666279554647,0.28972807055886346], + [0.09178741762088061,0.35182853163293015,0.2868312199956633], + [0.09406611799930162,0.3578871412608098,0.2837709711722866], + [0.09661524854470346,0.3638363844120639,0.28055978928581427], + [0.09944093631903905,0.36967074725820875,0.27721053847219584], + [0.10254873472759682,0.3753849384928446,0.27373645385460954], + [0.10594361078604106,0.3809739011595331,0.27015111282899046], + [0.10962993366743318,0.386432823959482,0.2664684056488389], + [0.11361146455043755,0.39175715201643607,0.26270250537269685], + [0.11789134778719829,0.39694259707734425,0.2588678372388254], + [0.12247210340662779,0.4019851471285789,0.2549790475326246], + [0.1273556209660727,0.40688107540873075,0.2510509720132212], + [0.13254315476153455,0.41162694880028095,0.24709860396639094], + [0.13803532040381689,0.41621963558376807,0.24313706195159093], + [0.14383209276515602,0.4206563125394059,0.239181557311351], + [0.14993280529807912,0.424934471382481,0.23524736151160613], + [0.1563361507254181,0.42905192452025087,0.2313497733817495], + [0.1630401830976045,0.4330068101194783,0.22750408632324462], + [0.1700423212105796,0.43679759647517286,0.22372555555555548], + [0.17733935337488022,0.44042308567255956,0.22002936546794022], + [0.18492744352371565,0.4438824165357551,0.21643059714529816], + [0.19280213864513238,0.4471750668581099,0.21294419613577564], + [0.2009583775206801,0.45030085491064903,0.20958494052721036], + [0.20939050075035193,0.4532599402265316,0.20636740939874193], + [0.2180922620409734,0.45605282366093597,0.20330595171302718], + [0.22705684073266794,0.45868034672725755,0.20041465571348596], + [0.23627685553553793,0.46114369021199075,0.19770731888985724], + [0.24574437944626382,0.463444372072136,0.1951974185740818], + [0.25545095581196187,0.4655842446204368,0.19289808322713511], + [0.26538761550634205,0.4675654910052002,0.1908220644759285], + [0.2755448951809807,0.46939062099288875,0.18898170995777128], + [0.2859128565523805,0.4710624660630873,0.18738893702815024], + [0.29648110668342353,0.47258417382683937,0.18605520738573791], + [0.30723881921584234,0.47395920178072126,0.18499150266658945], + [0.31817475650845256,0.47519131041036283,0.18420830105743566], + [0.32927729263408284,0.4762845556584382,0.1837155549758328], + [0.34053443718644866,0.4772432807734319,0.18352266986268476], + [0.35193385984661285,0.4780721075567351,0.1836384841303252], + [0.36346291565717626,0.47877592702683464,0.18407125030693286], + [0.37510867095095474,0.47935988952053404,0.18482861741555928], + [0.3868579298796123,0.4798293942522737,0.18591761462348488], + [0.39869726148654816,0.48019007835370575,0.18734463619497924], + [0.4106130272672762,0.48044780541672255,0.1891154277778484], + [0.42259140915958887,0.48060865356413107,0.19123507405138968], + [0.4346184379049671,0.48067890307311123,0.19370798776056802], + [0.4466800217219925,0.4806650235774908,0.19653790015837083], + [0.4587619752319175,0.48057366087571074,0.19972785287539777], + [0.47085004857608587,0.48041162337214066,0.2032801912328106], + [0.48292995666454097,0.4801858681801365,0.2071965590118011], + [0.49498740849493095,0.4799034869159042,0.21147789468974837], + [0.5070081364807173,0.47957169121285,0.21612442915022925], + [0.5189779257277026,0.4791977979866502,0.22113568487102592], + [0.5308826431980371,0.4787892144817698,0.22651047659124834], + [0.5427082667011206,0.4783534231305908,0.23224691345566498], + [0.5544409136511972,0.47789796625667885,0.2383424026313099], + [0.5660668695319436,0.4774304306540262,0.24479365438842796], + [0.5775726160089698,0.4769584320743491,0.25159668863482476], + [0.5889448586318913,0.4764895996546965,0.25874684288971805], + [0.6001705540684912,0.47603156031773874,0.2662387816802485], + [0.6112369368144521,0.47559192317715726,0.2740665073408962], + [0.6221315453232313,0.4751782639805349,0.28222337219318755], + [0.6328422475018423,0.4747981096220677,0.29070209208025455], + [0.6433572655196068,0.4744589227572726,0.29949476122803864], + [0.6536651998783573,0.4741680865516545,0.3085928684022194], + [0.663755052694073,0.4739328895950206,0.3179873143272981], + [0.6736162501415541,0.47376051101279304,0.32766843033168314], + [0.6832386640154413,0.47365800580526857,0.3376259981801124], + [0.6926126323626934,0.47363229044531197,0.3478492710523138], + [0.7017289791435338,0.47369012876444405,0.3583269956244587], + [0.7105790328798448,0.47383811815670224,0.36904743520768857], + [0.7191546442520655,0.47408267612900734,0.3799983938958308], + [0.7274482026077793,0.474430027226069,0.3911672416723354], + [0.7354526513473981,0.4748861903571046,0.40254094042448907], + [0.7431615021546352,0.47545696655083425,0.4141060708110845], + [0.7505688480418067,0.476147927164348,0.42584885992795596], + [0.7576693751824222,0.47696440257052414,0.4377552097141371], + [0.7644583735059833,0.4779114713477098,0.44981072603984695], + [0.7709317460324374,0.4789939499943594,0.4620007484160897], + [0.7770860169262988,0.4802163831902654,0.4743103802643427], + [0.7829183382530567,0.48158303462490826,0.48672451968362596], + [0.788426495423136,0.48309787841230833,0.49922789065118384], + [0.7936089113113556,0.48476459111057146,0.5118050745920791], + [0.7984646490425262,0.48658654436309784,0.5244405422521965], + [0.8029934134365606,0.4885667981771633,0.5371186858084777], + [0.8071955511092054,0.49070809485429095,0.5498238511496727], + [0.8110720492272496,0.49301285358550617,0.5625403702604811], + [0.8146245329198283,0.49548316572322215,0.5752525936416857], + [0.8178552613501849,0.49812079074012594,0.5879449226987427], + [0.8207671224550108,0.5009271528840389,0.6006018420312872], + [0.8233636263612124,0.5039033385363091,0.6132079515561488], + [0.8256488974926798,0.5070500942798608,0.6257479983967315], + [0.8276276653823276,0.5103678256815796,0.6382069084720281], + [0.8293052542073496,0.5138565967922508,0.6505698177190583], + [0.8306875710682655,0.5175161303658079,0.6628221028832032], + [0.831781093034943,0.5213458087981693,0.6749494118117053], + [0.8325928529853291,0.5253446757844744,0.6869376931865354], + [0.8331304242651412,0.5295114386920498,0.698773225633891], + [0.8334019041992173,0.5338444716449702,0.71044264614878], + [0.833415896487632,0.5383418193146124,0.7219329777744575], + [0.8331814925220116,0.5430012014091432,0.7332316564779161], + [0.8327082516597568,0.5478200178534429,0.7443265571641985], + [0.832006180496077,0.552795354649532,0.7552060187739601], + [0.8310857111758566,0.5579239904061606,0.765858868410509], + [0.8299576787894204,0.5632024035248271,0.7762744444444445], + [0.8286332978982133,0.5686267800281248,0.7864426185460244], + [0.827124138238282,0.5741930220149737,0.796353816597497], + [0.825442099651216,0.5798967567259778,0.8059990384398479], + [0.8235993862938871,0.5857333462008708,0.8153698764107113], + [0.821608480179902,0.5916978975087561,0.8244585326325982], + [0.8194821141071595,0.597785273530641,0.8332578350130668], + [0.8172332440272755,0.6039901042725871,0.8417612519210355], + [0.814875020913895,0.6103067986866638,0.8499629055060692], + [0.812420762188067,0.6167295569758052,0.8578575836301946], + [0.809883922759887,0.6232523833576228,0.8654407503845682], + [0.8072780657465353,0.6298690992612296,0.8727085551661735], + [0.8046168329276406,0.6365733569301846,0.8796578402926125], + [0.8019139149995763,0.6433586534037702,0.8862861471360158], + [0.7991830216908599,0.6502183448479701,0.8925917207600751], + [0.7964378518012613,0.6571456612067331,0.8985735130472496], + [0.7936920632275369,0.6641337211433709,0.9042311843062529], + [0.7909592430388956,0.6711755472412725,0.909565103353025], + [0.7882528776653618,0.6782640814325028,0.9145763460615122], + [0.7855863232621401,0.6853922006222988,0.9192666923836995], + [0.7829727763128884,0.6925527324769974,0.9236386218414918], + [0.7804252445344994,0.6997384713424936,0.9276953074961729], + [0.7779565181455343,0.7069421942599752,0.9314406084043191], + [0.7755791415598958,0.7141566770453828,0.9348790605721731], + [0.7733053855666262,0.7213747103988148,0.9380158664236004], + [0.771147220055902,0.7285891160099365,0.9408568827998472], + [0.769116287350359,0.7357927626253576,0.9434086075123853], + [0.7672238761998175,0.7429785820439159,0.9456781644731656], + [0.7654808964963004,0.750139585005845,0.9476732874295974], + [0.763897854764939,0.7572688769419182,0.9494023023345208], + [0.7624848304849502,0.7643596735488288,0.9508741083843375], + [0.7612514532933455,0.7714053161573218,0.9520981577613095], + [0.7602068811223923,0.7783992868598992,0.9530844341188127], + [0.7593597793201138,0.7853352233653041,0.9538434298510479], + [0.7587183008012618,0.7922069335474338,0.9543861221913403], + [0.7582900672742546,0.799008409656843,0.9547239481857313], + [0.7580821515875237,0.8057338421635857,0.9548687785910233], + [0.7581010612365786,0.8123776332007712,0.9548328907488411], + [0.7583527230708712,0.8189344095789305,0.9546289404895484], + [0.7588424692372241,0.8253990353420474,0.9542699331220588], + [0.7595750243941969,0.8317666238369421,0.9537691935676673], + [0.7605544942292889,0.8380325492685804,0.9531403356980039], + [0.7617843553083321,0.8441924577148293,0.9523972309390826], + [0.7632674462838152,0.850242277575182,0.9515539762051686], + [0.7650059604862026,0.85617822942903,0.9506248612278181], + [0.7670014399195808,0.8619968352801741,0.9496243353469522], + [0.7692547706801687,0.8676949271654195,0.948566973832207], + [0.7717661798134018,0.8732696551063165,0.947467443804052], + [0.7745352336224168,0.8787184943843575,0.9463404698252864], + [0.7775608374378459,0.8840392521212448,0.9452007992345052], + [0.7808412368558877,0.8892300731471833,0.9440631672939666], + [0.7843740204486436,0.8942894451415311,0.9429422622250019], + [0.7881561239477163,0.8992162030315665,0.9418526902046614], + [0.7921838358990575,0.9040095326365704,0.9408089403977152], + [0.7964528047840354,0.908668973545918,0.9398253500983916], + [0.8009580475986687,0.9131944212213802,0.9389160700563687], + [0.8056939598799596,0.9175861283153747,0.9380950300615061], + [0.8106543271652416,0.9218447051984724,0.9373759048616408], + [0.8158323378674701,0.9259711196910422,0.9367720804874462], + [0.8212205975464022,0.929966695995521,0.936296621057897], + [0.826811144552662,0.9338331128274076,0.9359622361392606], + [0.8325954670187771,0.9375724007447074,0.9357812487297815], + [0.8385645211683802,0.9411869386771845,0.9357655639413166], + [0.8447087509119424,0.94467944965842,0.9359266384481265], + [0.8510181086946101,0.9480529957653149,0.9362754507718345], + [0.8574820775589871,0.9513109722713152,0.9368224724702245], + [0.8640896943830253,0.9544571010212727,0.9375776402960758], + [0.8708295742505839,0.957495423037482,0.9385503293906091], + [0.8776899359096741,0.9604302903680535,0.9397493275743778], + [0.8846586282709467,0.9632663571903799,0.9411828107965424], + [0.8917231578965971,0.9660085701840486,0.942858319801462], + [0.8988707174275696,0.9686621581891097,0.944782738069391], + [0.9060882148947342,0.9712326211671591,0.9469622710858077], + [0.9133623038576015,0.9737257184842087,0.9494024269915201], + [0.920679414312134,0.9761474565358058,0.9521079986631937], + [0.9280257843073016,0.9785040757363161,0.9550830472713414], + [0.935387492208237,0.9808020368957101,0.9583308873600971], + [0.9427504895421589,0.983048007008566,0.9618540734902816], + [0.9501006343616617,0.9852488444813527,0.9656543884843511], + [0.957423725058525,0.9874115838253467,0.9697328333088168], + [0.9647055345598645,0.9895434198437888,0.9740896186266301], + [0.9719318448372509,0.9916516913430937,0.9787241580488574], + [0.9790884816583497,0.9937438643990664,0.983635063111714], + [0.9861613495096943,0.9958275152101835,0.9888201400017161], + [0.9931364666184066,0.997910312571035,0.9942763880483225], + [1.0,1.0,1.0] ], + cubehelix_r: [ + [1.0,1.0,1.0], + [0.9931364666184066,0.997910312571035,0.9942763880483225], + [0.9861613495096943,0.9958275152101835,0.9888201400017161], + [0.9790884816583497,0.9937438643990664,0.983635063111714], + [0.9719318448372511,0.9916516913430938,0.9787241580488575], + [0.9647055345598645,0.9895434198437888,0.9740896186266301], + [0.957423725058525,0.9874115838253467,0.9697328333088168], + [0.9501006343616617,0.9852488444813527,0.9656543884843511], + [0.9427504895421589,0.983048007008566,0.9618540734902816], + [0.935387492208237,0.9808020368957101,0.9583308873600971], + [0.9280257843073016,0.9785040757363161,0.9550830472713414], + [0.9206794143121342,0.9761474565358058,0.9521079986631938], + [0.9133623038576015,0.9737257184842087,0.9494024269915201], + [0.9060882148947342,0.9712326211671591,0.9469622710858077], + [0.8988707174275696,0.9686621581891097,0.944782738069391], + [0.8917231578965971,0.9660085701840486,0.942858319801462], + [0.8846586282709467,0.9632663571903799,0.9411828107965424], + [0.8776899359096741,0.9604302903680535,0.9397493275743778], + [0.8708295742505839,0.957495423037482,0.9385503293906091], + [0.8640896943830253,0.9544571010212727,0.9375776402960758], + [0.8574820775589872,0.9513109722713152,0.9368224724702247], + [0.8510181086946101,0.9480529957653149,0.9362754507718345], + [0.8447087509119424,0.94467944965842,0.9359266384481265], + [0.8385645211683802,0.9411869386771845,0.9357655639413166], + [0.8325954670187771,0.9375724007447074,0.9357812487297815], + [0.826811144552662,0.9338331128274076,0.9359622361392606], + [0.8212205975464022,0.929966695995521,0.936296621057897], + [0.8158323378674702,0.9259711196910424,0.9367720804874462], + [0.8106543271652416,0.9218447051984724,0.9373759048616408], + [0.8056939598799596,0.9175861283153747,0.9380950300615061], + [0.8009580475986687,0.9131944212213802,0.9389160700563687], + [0.7964528047840354,0.908668973545918,0.9398253500983916], + [0.7921838358990575,0.9040095326365704,0.9408089403977152], + [0.7881561239477163,0.8992162030315665,0.9418526902046614], + [0.7843740204486436,0.8942894451415311,0.9429422622250019], + [0.7808412368558877,0.8892300731471833,0.9440631672939666], + [0.7775608374378459,0.884039252121245,0.9452007992345051], + [0.7745352336224168,0.8787184943843577,0.9463404698252864], + [0.7717661798134018,0.8732696551063165,0.947467443804052], + [0.7692547706801687,0.8676949271654195,0.948566973832207], + [0.7670014399195808,0.8619968352801741,0.9496243353469522], + [0.7650059604862026,0.85617822942903,0.9506248612278181], + [0.7632674462838152,0.850242277575182,0.9515539762051686], + [0.7617843553083321,0.8441924577148293,0.9523972309390826], + [0.7605544942292889,0.8380325492685804,0.9531403356980039], + [0.7595750243941969,0.8317666238369421,0.9537691935676673], + [0.7588424692372241,0.8253990353420474,0.9542699331220588], + [0.7583527230708712,0.8189344095789305,0.9546289404895484], + [0.7581010612365786,0.8123776332007712,0.9548328907488411], + [0.7580821515875237,0.8057338421635857,0.9548687785910233], + [0.7582900672742546,0.799008409656843,0.9547239481857313], + [0.7587183008012618,0.7922069335474338,0.9543861221913403], + [0.7593597793201138,0.7853352233653044,0.9538434298510479], + [0.7602068811223923,0.7783992868598993,0.9530844341188128], + [0.7612514532933455,0.7714053161573218,0.9520981577613095], + [0.7624848304849502,0.7643596735488288,0.9508741083843375], + [0.763897854764939,0.7572688769419182,0.9494023023345208], + [0.7654808964963004,0.750139585005845,0.9476732874295974], + [0.7672238761998175,0.7429785820439159,0.9456781644731656], + [0.769116287350359,0.7357927626253576,0.9434086075123853], + [0.771147220055902,0.7285891160099365,0.9408568827998472], + [0.7733053855666262,0.7213747103988148,0.9380158664236004], + [0.7755791415598958,0.7141566770453828,0.9348790605721731], + [0.7779565181455343,0.7069421942599752,0.9314406084043191], + [0.7804252445344994,0.6997384713424936,0.9276953074961729], + [0.7829727763128884,0.6925527324769974,0.9236386218414918], + [0.7855863232621401,0.6853922006222988,0.9192666923836995], + [0.7882528776653618,0.6782640814325028,0.9145763460615122], + [0.7909592430388954,0.6711755472412727,0.9095651033530252], + [0.7936920632275367,0.6641337211433711,0.904231184306253], + [0.7964378518012613,0.6571456612067331,0.8985735130472496], + [0.7991830216908599,0.6502183448479701,0.8925917207600751], + [0.8019139149995763,0.6433586534037702,0.8862861471360158], + [0.8046168329276406,0.6365733569301846,0.8796578402926125], + [0.8072780657465353,0.6298690992612296,0.8727085551661735], + [0.809883922759887,0.6232523833576228,0.8654407503845682], + [0.812420762188067,0.6167295569758052,0.8578575836301946], + [0.814875020913895,0.6103067986866638,0.8499629055060692], + [0.8172332440272755,0.6039901042725871,0.8417612519210355], + [0.8194821141071595,0.597785273530641,0.8332578350130668], + [0.821608480179902,0.5916978975087561,0.8244585326325982], + [0.8235993862938871,0.5857333462008708,0.8153698764107113], + [0.825442099651216,0.5798967567259778,0.8059990384398479], + [0.827124138238282,0.5741930220149737,0.796353816597497], + [0.8286332978982134,0.568626780028125,0.7864426185460245], + [0.8299576787894205,0.5632024035248272,0.7762744444444445], + [0.8310857111758566,0.5579239904061606,0.765858868410509], + [0.832006180496077,0.552795354649532,0.7552060187739601], + [0.8327082516597568,0.5478200178534429,0.7443265571641985], + [0.8331814925220116,0.5430012014091432,0.7332316564779161], + [0.833415896487632,0.5383418193146124,0.7219329777744575], + [0.8334019041992173,0.5338444716449702,0.71044264614878], + [0.8331304242651412,0.5295114386920498,0.698773225633891], + [0.8325928529853291,0.5253446757844744,0.6869376931865354], + [0.831781093034943,0.5213458087981693,0.6749494118117053], + [0.8306875710682655,0.5175161303658079,0.6628221028832032], + [0.8293052542073496,0.5138565967922508,0.6505698177190583], + [0.8276276653823276,0.5103678256815796,0.6382069084720281], + [0.8256488974926798,0.5070500942798608,0.6257479983967315], + [0.8233636263612124,0.5039033385363091,0.6132079515561488], + [0.8207671224550108,0.500927152884039,0.6006018420312877], + [0.817855261350185,0.49812079074012605,0.5879449226987432], + [0.8146245329198283,0.49548316572322215,0.5752525936416857], + [0.8110720492272496,0.49301285358550617,0.5625403702604811], + [0.8071955511092054,0.49070809485429095,0.5498238511496727], + [0.8029934134365606,0.4885667981771633,0.5371186858084777], + [0.7984646490425262,0.48658654436309784,0.5244405422521965], + [0.7936089113113556,0.48476459111057146,0.5118050745920791], + [0.788426495423136,0.48309787841230833,0.49922789065118384], + [0.7829183382530567,0.48158303462490826,0.48672451968362596], + [0.7770860169262988,0.4802163831902654,0.4743103802643427], + [0.7709317460324374,0.4789939499943594,0.4620007484160897], + [0.7644583735059833,0.4779114713477098,0.44981072603984695], + [0.7576693751824222,0.47696440257052414,0.4377552097141371], + [0.7505688480418067,0.476147927164348,0.42584885992795596], + [0.7431615021546352,0.47545696655083425,0.4141060708110845], + [0.7354526513473983,0.4748861903571046,0.4025409404244894], + [0.7274482026077794,0.47443002722606903,0.39116724167233563], + [0.7191546442520655,0.47408267612900734,0.3799983938958308], + [0.7105790328798448,0.47383811815670224,0.36904743520768857], + [0.7017289791435338,0.47369012876444405,0.3583269956244587], + [0.6926126323626934,0.47363229044531197,0.3478492710523138], + [0.6832386640154413,0.47365800580526857,0.3376259981801124], + [0.6736162501415541,0.47376051101279304,0.32766843033168314], + [0.663755052694073,0.4739328895950206,0.3179873143272981], + [0.6536651998783573,0.4741680865516545,0.3085928684022194], + [0.6433572655196068,0.4744589227572726,0.29949476122803864], + [0.6328422475018423,0.4747981096220677,0.29070209208025455], + [0.6221315453232313,0.4751782639805349,0.28222337219318755], + [0.6112369368144521,0.47559192317715726,0.2740665073408962], + [0.6001705540684914,0.4760315603177387,0.2662387816802486], + [0.5889448586318915,0.47648959965469645,0.25874684288971816], + [0.5775726160089699,0.4769584320743491,0.2515966886348248], + [0.5660668695319436,0.4774304306540262,0.24479365438842796], + [0.5544409136511972,0.47789796625667885,0.2383424026313099], + [0.5427082667011206,0.4783534231305908,0.23224691345566498], + [0.5308826431980371,0.4787892144817698,0.22651047659124834], + [0.5189779257277026,0.4791977979866502,0.22113568487102592], + [0.5070081364807173,0.47957169121285004,0.21612442915022934], + [0.49498740849493095,0.47990348691590423,0.21147789468974842], + [0.4829299566645408,0.4801858681801365,0.20719655901180106], + [0.47085004857608587,0.48041162337214066,0.2032801912328106], + [0.4587619752319175,0.48057366087571074,0.19972785287539777], + [0.4466800217219925,0.4806650235774908,0.19653790015837083], + [0.4346184379049671,0.48067890307311123,0.19370798776056802], + [0.42259140915958887,0.48060865356413107,0.19123507405138968], + [0.4106130272672764,0.4804478054167226,0.1891154277778484], + [0.3986972614865483,0.48019007835370575,0.18734463619497924], + [0.3868579298796125,0.4798293942522737,0.18591761462348488], + [0.37510867095095474,0.47935988952053404,0.18482861741555928], + [0.36346291565717626,0.47877592702683464,0.18407125030693286], + [0.35193385984661285,0.4780721075567351,0.1836384841303252], + [0.34053443718644866,0.4772432807734319,0.18352266986268476], + [0.32927729263408284,0.4762845556584382,0.1837155549758328], + [0.3181747565084527,0.4751913104103629,0.18420830105743569], + [0.3072388192158425,0.47395920178072126,0.18499150266658948], + [0.2964811066834233,0.47258417382683937,0.186055207385738], + [0.2859128565523805,0.4710624660630873,0.18738893702815024], + [0.2755448951809807,0.46939062099288875,0.18898170995777128], + [0.26538761550634205,0.4675654910052002,0.1908220644759285], + [0.25545095581196187,0.4655842446204368,0.19289808322713511], + [0.24574437944626382,0.463444372072136,0.1951974185740818], + [0.23627685553553812,0.46114369021199075,0.19770731888985715], + [0.2270568407326681,0.45868034672725755,0.20041465571348582], + [0.2180922620409735,0.456052823660936,0.20330595171302704], + [0.20939050075035193,0.4532599402265316,0.20636740939874193], + [0.2009583775206801,0.45030085491064903,0.20958494052721036], + [0.19280213864513238,0.4471750668581099,0.21294419613577564], + [0.18492744352371565,0.4438824165357551,0.21643059714529816], + [0.17733935337488022,0.44042308567255956,0.22002936546794022], + [0.17004232121057966,0.4367975964751729,0.22372555555555554], + [0.16304018309760457,0.4330068101194783,0.22750408632324468], + [0.156336150725418,0.42905192452025087,0.2313497733817496], + [0.14993280529807912,0.424934471382481,0.23524736151160613], + [0.14383209276515602,0.4206563125394059,0.239181557311351], + [0.13803532040381689,0.41621963558376807,0.24313706195159093], + [0.13254315476153455,0.41162694880028095,0.24709860396639094], + [0.1273556209660727,0.40688107540873075,0.2510509720132212], + [0.12247210340662784,0.40198514712857897,0.25497904753262446], + [0.11789134778719834,0.3969425970773443,0.25886783723882534], + [0.11361146455043761,0.3917571520164361,0.2627025053726968], + [0.10962993366743318,0.386432823959482,0.2664684056488389], + [0.10594361078604106,0.3809739011595331,0.27015111282899046], + [0.10254873472759682,0.3753849384928446,0.27373645385460954], + [0.09944093631903905,0.36967074725820875,0.27721053847219584], + [0.09661524854470346,0.3638363844120639,0.28055978928581427], + [0.0940661179993017,0.3578871412608098,0.28377097117228656], + [0.09178741762088063,0.3518285316329302,0.2868312199956633], + [0.08977246067987679,0.3456662795546469,0.2897280705588635], + [0.08801401599773798,0.33940630645391495,0.2924494837317682], + [0.08650432436599098,0.3330547179185978,0.29498387269658305], + [0.08523511613408935,0.32661779003565533,0.2973201282529313], + [0.08419762993188756,0.32010195533910435,0.2994476431269095], + [0.083382632490162,0.31351378839540045,0.3013563352302212], + [0.08278043952023956,0.306859991055712,0.3030366698175025], + [0.08238093761150345,0.3001473774053337,0.30447968049206064], + [0.08217360710333566,0.2933828584411945,0.3056769890124601], + [0.08214754588591847,0.2865734265090723,0.3066208238547043], + [0.0822914940822713,0.27972613953271874,0.30730403748717383], + [0.08259385956193721,0.27284810506762325,0.3077201223179875], + [0.08304274423486754,0.26594646421261964,0.307863225277045], + [0.08362597107228092,0.25902837541293133,0.30772816099768746], + [0.08433111179960413,0.25210099818859166,0.30731042356566773], + [0.08514551520503576,0.2451714768224429,0.30660619680595214], + [0.08605633600581411,0.2382469240421199,0.30561236308077167], + [0.08705056421292393,0.23133440473055772,0.3043265105753017], + [0.08811505493374118,0.22444091969962535,0.30274693905036704], + [0.0892365585509959,0.21757338956148978,0.3008726640446374], + [0.09040175121543563,0.21073863873223592,0.29870341951189405], + [0.09159726558869184,0.20394337960213013,0.29623965888210324], + [0.09280972177209734,0.19719419690670306,0.29348255453822064], + [0.09402575835657283,0.19049753233254874,0.290433995703867], + [0.09523206352819776,0.18385966939138837,0.28709658474025446], + [0.09641540616370547,0.17728671859553133,0.28347363185399654], + [0.09756266684989742,0.17078460296738385,0.2795691482206972], + [0.09866086876085636,0.16435904391510084,0.2753878375324802], + [0.09969720832685408,0.15801554750586727,0.2709350859808844], + [0.10065908562899656,0.1517593911676072,0.2662169506897998], + [0.10153413445392945,0.14559561084917688,0.26124014661636], + [0.10231025194333626,0.13952898866828914,0.25601203194091815], + [0.10297562777350511,0.133564041075547,0.25054059197041917], + [0.10351877280091129,0.1277050075620354,0.24483442158263466], + [0.10392854711056776,0.12195583993692868,0.23890270624183174], + [0.10419418740482515,0.11632019220053316,0.2327552016195138], + [0.10430533367136455,0.11080141103707788,0.2264022118568761], + [0.10425205507031031,0.1054025269504178,0.21985456650857083], + [0.10402487498170102,0.1001262460646087,0.21312359621025817], + [0.10361479515598847,0.09497494261006123,0.20622110711523323], + [0.1030133189117869,0.08995065211468112,0.19915935414815408], + [0.1022124733267644,0.08505506531806004,0.19195101312654864], + [0.10120483036935347,0.0802895228253962,0.18460915180334375], + [0.09998352692085306,0.07565501051639596,0.17714719988612818], + [0.09854228363950114,0.07115215572295083,0.16957891809124037], + [0.09687542262020574,0.06678122418788304,0.16191836629303408], + [0.09497788380583522,0.06254211781552799,0.15417987083084056], + [0.09284524010827871,0.0584343732233648,0.14637799103819268], + [0.09047371119989062,0.0544571611023238,0.1385274850608071], + [0.08786017593842757,0.05060928639179551,0.1306432750316299], + [0.08500218339116372,0.04688918927373823,0.1227404116729322], + [0.08189796242653116,0.04329494698864347,0.11483403839700104], + [0.07854642984436605,0.03982427647445867,0.10693935497838605], + [0.0749471970186488,0.036474537827902526,0.09907158087195048], + [0.07110057502949813,0.03324273858593363,0.091245918252118], + [0.06700757826411265,0.030125538823454676,0.08347751484971096], + [0.0626699264693421,0.027119257061655033,0.07578142666363134], + [0.05809004524160905,0.024219876979716726,0.06817258062534756], + [0.05327106494298588,0.021423054920937438,0.06066573729471118], + [0.04821681803535116,0.01872412818265829,0.053275453666033826], + [0.04293183482770899,0.016118124077735156,0.046016046163618575], + [0.03742133763493216,0.013599769753652045,0.03890155390603588], + [0.03169123334939606,0.01116350275375801,0.03194570231838682], + [0.02574810443018758,0.008803482303510343,0.025161867171587596], + [0.019599198317800527,0.006513601303033898,0.018563039127345554], + [0.013252415285460683,0.0042874990057609344,0.012161788866979516], + [0.0067162947414470785,0.0021185743613995832,0.005970232881557357], + [0.0,0.0,0.0] ], + flag: [ + [1.0,0.0,0.0], + [1.0,0.3784110500423103,0.20978926505574103], + [1.0,0.700543037593291,0.4930701148153319], + [1.0,0.918486985745923,0.7773816095344768], + [1.0,0.9998292504580527,1.0], + [0.802940753653921,0.9324722294043558,1.0], + [0.5207872890045623,0.7264335740162241,1.0], + [0.23554224144085045,0.41235631747390333,1.0], + [0.0,0.03695149938914491,1.0], + [0.0,0.0,0.8155673183737362], + [0.0,0.0,0.5346375939843047], + [0.0,0.0,0.2485564044984545], + [0.0,0.0,0.0], + [0.17191388285658005,0.0,0.0], + [0.4515239297425671,0.0,0.0], + [0.7383435646864263,0.0,0.0], + [0.9897156291381082,0.0,0.0], + [1.0,0.3090169943749472,0.15950712519533977], + [1.0,0.6459280624867876,0.4377020080030224], + [1.0,0.886773685920062,0.7251621397623147], + [1.0,0.9957341762950345,0.979135104238971], + [0.8527833544610822,0.9566044195004406,1.0], + [0.5760986390293277,0.7752039761111296,1.0], + [0.2880961778262543,0.4785115691012864,1.0], + [0.03160904485932525,0.1106526818915009,1.0], + [0.0,0.0,0.8649533589251418], + [0.0,0.0,0.5898732984461621], + [0.0,0.0,0.301426860375968], + [0.0,0.0,0.042513149039707376], + [0.1230012678485346,0.0,0.0], + [0.39638273378608796,0.0,0.0], + [0.6851746445290505,0.0,0.0], + [0.9464265154394146,0.0,0.0], + [1.0,0.2379351950426168,0.11108463934387025], + [1.0,0.5877852522924727,0.3826741512198272], + [1.0,0.8502171357296147,0.671712912462602], + [1.0,0.9862007473534027,0.9352137256724868], + [0.9006991749214175,0.9755119679804369,1.0], + [0.6309943646765594,0.8197404829072209,1.0], + [0.3418074594061468,0.5420533564724478,1.0], + [0.0761476891830567,0.18374951781657042,1.0], + [0.0,0.0,0.9123461507855513], + [0.0,0.0,0.6446181461174123], + [0.0,0.0,0.35538185388258603], + [0.0,0.0,0.08765384921444952], + [0.07614768918305581,0.0,0.0], + [0.34180745940614843,0.0,0.0], + [0.6309943646765611,0.0,0.0], + [0.9006991749214167,0.0,0.0], + [1.0,0.1655538761841279,0.06478627432751138], + [1.0,0.5264321628773553,0.32828708753739844], + [1.0,0.809016994374948,0.6173258487801733], + [1.0,0.9712810319161136,0.8889153606561301], + [0.9464265154394154,0.9890916083711464,1.0], + [0.6851746445290502,0.8597998514483731,1.0], + [0.3963827337860876,0.6026346363792563,1.0], + [0.12300126784853549,0.255842777594434,1.0], + [0.0,0.0,0.9574868509602934], + [0.0,0.0,0.6985731396240316], + [0.0,0.0,0.4101267015538361], + [0.0,0.0,0.13504664107485786], + [0.031609044859325475,0.0,0.0], + [0.28809617782625463,0.0,0.0], + [0.5760986390293292,0.0,0.0], + [0.8527833544610826,0.0,0.0], + [1.0,0.09226835946329986,0.02086489576102729], + [1.0,0.4622038835403095,0.2748378602376845], + [1.0,0.7633982827411036,0.562297991996978], + [1.0,0.9510565162951533,0.8404928748046612], + [0.9897156291381095,0.9972691733857882,1.0], + [0.7383435646864241,0.8951632913550615,1.0], + [0.4515239297425661,0.6599245348787225,1.0], + [0.171913882856581,0.32653871284008174,1.0], + [0.0,0.0,1.0], + [0.0,0.0,0.7514435955015476], + [0.0,0.0,0.4653624060156939], + [0.0,0.0,0.18443268162626375], + [0.0,0.0,0.0], + [0.23554224144085134,0.0,0.0], + [0.5207872890045643,0.0,0.0], + [0.8029407536539217,0.0,0.0], + [1.0,0.01847890495912774,0.0], + [1.0,0.39545120687053875,0.22261839046552212], + [1.0,0.7136101544117555,0.5069298851846682], + [1.0,0.9256376597815572,0.7902107349442601], + [1.0,1.0,1.0], + [0.790210734944257,0.9256376597815542,1.0], + [0.5069298851846674,0.7136101544117498,1.0], + [0.2226183904655239,0.3954512068705411,1.0], + [0.0,0.01847890495913031,1.0], + [0.0,0.0,0.802940753653921], + [0.0,0.0,0.5207872890045635], + [0.0,0.0,0.23554224144084818], + [0.0,0.0,0.0], + [0.18443268162626442,0.0,0.0], + [0.4653624060156946,0.0,0.0], + [0.7514435955015433,0.0,0.0], + [1.0,0.0,0.0], + [1.0,0.32653871284007935,0.17191388285657927], + [1.0,0.6599245348787233,0.4515239297425695], + [1.0,0.8951632913550618,0.7383435646864274], + [1.0,0.9972691733857878,0.9897156291381081], + [0.8404928748046558,0.951056516295153,1.0], + [0.5622979919969746,0.763398282741103,1.0], + [0.27483786023768375,0.46220388354031494,1.0], + [0.02086489576102879,0.09226835946330597,1.0], + [0.0,0.0,0.8527833544610842], + [0.0,0.0,0.5760986390293259], + [0.0,0.0,0.2880961778262539], + [0.0,0.0,0.031609044859326973], + [0.1350466410748608,0.0,0.0], + [0.4101267015538395,0.0,0.0], + [0.6985731396240323,0.0,0.0], + [0.9574868509602917,0.0,0.0], + [1.0,0.25584277759443497,0.12300126784853149], + [1.0,0.60263463637926,0.39638273378608835], + [1.0,0.8597998514483737,0.6851746445290483], + [1.0,0.9890916083711461,0.9464265154394117], + [0.8889153606561272,0.9712810319161125,1.0], + [0.6173258487801725,0.8090169943749453,1.0], + [0.3282870875374003,0.5264321628773545,1.0], + [0.06478627432751516,0.16555387618413042,1.0], + [0.0,0.0,0.9006991749214162], + [0.0,0.0,0.6309943646765603], + [0.0,0.0,0.3418074594061451], + [0.0,0.0,0.07614768918305526], + [0.08765384921445019,0.0,0.0], + [0.3553818538825867,0.0,0.0], + [0.6446181461174104,0.0,0.0], + [0.9123461507855474,0.0,0.0], + [1.0,0.18374951781656615,0.07614768918305509], + [1.0,0.5420533564724441,0.34180745940613977], + [1.0,0.8197404829072164,0.630994364676555], + [1.0,0.9755119679804359,0.9006991749214159], + [0.9352137256724828,0.9862007473534022,1.0], + [0.6717129124626026,0.8502171357296179,1.0], + [0.38267415121982506,0.5877852522924748,1.0], + [0.1110846393438753,0.23793519504262273,1.0], + [0.0,0.0,0.9464265154394161], + [0.0,0.0,0.6851746445290589], + [0.0,0.0,0.39638273378608324], + [0.0,0.0,0.12300126784853627], + [0.04251314903971004,0.0,0.0], + [0.30142686037596483,0.0,0.0], + [0.5898732984461629,0.0,0.0], + [0.8649533589251366,0.0,0.0], + [1.0,0.11065268189150011,0.031609044859322644], + [1.0,0.4785115691012779,0.28809617782624863], + [1.0,0.7752039761111268,0.5760986390293257], + [1.0,0.956604419500441,0.8527833544610793], + [0.9791351042389693,0.995734176295034,1.0], + [0.7251621397623191,0.8867736859200636,1.0], + [0.437702008003023,0.6459280624867862,1.0], + [0.15950712519534682,0.30901699437495467,1.0], + [0.0,0.0,0.9897156291381082], + [0.0,0.0,0.7383435646864326], + [0.0,0.0,0.4515239297425644], + [0.0,0.0,0.17191388285657938], + [0.0,0.0,0.0], + [0.24855640449845395,0.0,0.0], + [0.5346375939843024,0.0,0.0], + [0.8155673183737329,0.0,0.0], + [1.0,0.036951499389140566,0.0], + [1.0,0.4123563174738977,0.23554224144084301], + [1.0,0.7264335740162184,0.5207872890045581], + [1.0,0.9324722294043546,0.8029407536539208], + [1.0,0.9998292504580525,1.0], + [0.7773816095344838,0.9184869857459259,1.0], + [0.4930701148153302,0.7005430375932874,1.0], + [0.20978926505574086,0.3784110500423207,1.0], + [0.0,0.0,1.0], + [0.0,0.0,0.7902107349442676], + [0.0,0.0,0.5069298851846683], + [0.0,0.0,0.22261839046552478], + [0.0,0.0,0.0], + [0.19705924634608046,0.0,0.0], + [0.4792127109954381,0.0,0.0], + [0.7644577585591484,0.0,0.0], + [1.0,0.0,0.0], + [1.0,0.3439489186339255,0.18443268162625392], + [1.0,0.6736956436465537,0.46536240601569373], + [1.0,0.903247199346126,0.7514435955015424], + [1.0,0.9984636039674343,1.0], + [0.8280861171434193,0.945183828160823,1.0], + [0.5484760702574342,0.7513318895568724,1.0], + [0.26165643531357613,0.4457383557765388,1.0], + [0.010284370861894765,0.07385252747487656,1.0], + [0.0,0.0,0.8404928748046709], + [0.0,0.0,0.5622979919969703], + [0.0,0.0,0.2748378602376897], + [0.0,0.0,0.020864895761025348], + [0.14721664553891722,0.0,0.0], + [0.42390136097067044,0.0,0.0], + [0.7119038221737426,0.0,0.0], + [0.9683909551406702,0.0,0.0], + [1.0,0.27366299007207673,0.13504664107485537], + [1.0,0.6172782212897864,0.41012670155383335], + [1.0,0.8690889463055302,0.6985731396240262], + [1.0,0.991644695510743,0.9574868509602953], + [0.8769987321514671,0.9667184042691875,1.0], + [0.6036172662139152,0.7980172272802408,1.0], + [0.3148253554709552,0.5106311931809105,1.0], + [0.053573484560591245,0.14730169805464363,1.0], + [0.0,0.0,0.8889153606561325], + [0.0,0.0,0.6173258487801682], + [0.0,0.0,0.328287087537396], + [0.0,0.0,0.06478627432751155], + [0.09930082507858079,0.0,0.0], + [0.369005635323436,0.0,0.0], + [0.658192540593846,0.0,0.0], + [0.9238523108169461,0.0,0.0], + [1.0,0.20188240915700048,0.08765384921444497], + [1.0,0.5574894393428756,0.3553818538825806], + [1.0,0.8301840308155508,0.6446181461174147], + [1.0,0.9794097676013656,0.912346150785551], + [0.9238523108169479,0.9829730996839025,1.0], + [0.6581925405938482,0.8403440716378958,1.0], + [0.36900563532344866,0.5727351400805116,1.0], + [0.09930082507858262,0.2199463578396643,1.0], + [0.0,0.0,0.9352137256724924], + [0.0,0.0,0.6717129124625982], + [0.0,0.0,0.382674151219826], + [0.0,0.0,0.11108463934387158], + [0.05357348456058092,0.0,0.0], + [0.314825355470953,0.0,0.0], + [0.6036172662139025,0.0,0.0], + [0.8769987321514652,0.0,0.0], + [1.0,0.1289992165301898,0.04251314903970094], + [1.0,0.49465584339977764,0.3014268603759691], + [1.0,0.7867449380334812,0.5898732984461619], + [1.0,0.9618256431728215,0.8649533589251405], + [0.9683909551406802,0.9938591368952745,1.0], + [0.7119038221737447,0.8780812480836956,1.0], + [0.42390136097067266,0.6317110062532597,1.0], + [0.14721664553891922,0.29138974688932384,1.0], + [0.0,0.0,0.9791351042389783], + [0.0,0.0,0.7251621397623149], + [0.0,0.0,0.4377020080030239], + [0.0,0.0,0.1595071251953334], + [0.0102843708618931,0.0,0.0], + [0.2616564353135741,0.0,0.0], + [0.548476070257432,0.0,0.0], + [0.8280861171434173,0.0,0.0], + [1.0,0.05541147491596701,0.0], + [1.0,0.4291206087726045,0.24855640449845307], + [1.0,0.7390089172206544,0.5346375939843016], + [1.0,0.9389883606150584,0.8155673183737417], + [1.0,0.9993170601430232,1.0], + [0.7644577585591504,0.9110226492460878,1.0], + [0.4792127109954403,0.6872366859692632,1.0], + [0.19705924634608252,0.3612416661871555,1.0], + [0.0,0.0,1.0], + [0.0,0.0,0.7773816095344698], + [0.0,0.0,0.4930701148153364], + [0.0,0.0,0.20978926505574663], + [0.0,0.0,0.0] ], + flag_r: [ + [0.0,0.0,0.0], + [0.0,0.0,0.20978926505574663], + [0.0,0.0,0.4930701148153364], + [0.0,0.0,0.7773816095344698], + [0.0,0.0,1.0], + [0.19705924634608252,0.3612416661871555,1.0], + [0.4792127109954403,0.6872366859692632,1.0], + [0.7644577585591504,0.9110226492460878,1.0], + [1.0,0.9993170601430232,1.0], + [1.0,0.9389883606150584,0.8155673183737417], + [1.0,0.7390089172206544,0.5346375939843016], + [1.0,0.4291206087726173,0.24855640449846317], + [1.0,0.05541147491596701,0.0], + [0.8280861171434173,0.0,0.0], + [0.548476070257432,0.0,0.0], + [0.2616564353135741,0.0,0.0], + [0.0102843708618931,0.0,0.0], + [0.0,0.0,0.1595071251953334], + [0.0,0.0,0.4377020080030239], + [0.0,0.0,0.7251621397623149], + [0.0,0.0,0.9791351042389701], + [0.14721664553891922,0.29138974688932384,1.0], + [0.42390136097067266,0.6317110062532597,1.0], + [0.7119038221737447,0.8780812480836956,1.0], + [0.9683909551406802,0.9938591368952745,1.0], + [1.0,0.9618256431728215,0.8649533589251405], + [1.0,0.7867449380334812,0.5898732984461619], + [1.0,0.49465584339979,0.3014268603759691], + [1.0,0.1289992165301898,0.04251314903970094], + [0.8769987321514652,0.0,0.0], + [0.6036172662139025,0.0,0.0], + [0.314825355470953,0.0,0.0], + [0.05357348456058092,0.0,0.0], + [0.0,0.0,0.11108463934387158], + [0.0,0.0,0.382674151219826], + [0.0,0.0,0.6717129124625982], + [0.0,0.0,0.9352137256724836], + [0.09930082507858262,0.2199463578396643,1.0], + [0.36900563532344866,0.5727351400805116,1.0], + [0.6581925405938482,0.8403440716378958,1.0], + [0.9238523108169479,0.9829730996839025,1.0], + [1.0,0.9794097676013656,0.912346150785551], + [1.0,0.8301840308155508,0.6446181461174147], + [1.0,0.5574894393428756,0.3553818538825806], + [1.0,0.20188240915700048,0.08765384921444497], + [0.9238523108169461,0.0,0.0], + [0.658192540593846,0.0,0.0], + [0.369005635323436,0.0,0.0], + [0.09930082507858079,0.0,0.0], + [0.0,0.0,0.06478627432751155], + [0.0,0.0,0.328287087537396], + [0.0,0.0,0.6173258487801682], + [0.0,0.0,0.8889153606561234], + [0.05357348456058264,0.1473016980546296,1.0], + [0.3148253554709552,0.5106311931809105,1.0], + [0.6036172662139152,0.7980172272802408,1.0], + [0.8769987321514671,0.9667184042691875,1.0], + [1.0,0.991644695510743,0.9574868509602953], + [1.0,0.8690889463055302,0.6985731396240262], + [1.0,0.6172782212897864,0.41012670155383335], + [1.0,0.27366299007207673,0.13504664107485537], + [0.9683909551406702,0.0,0.0], + [0.7119038221737426,0.0,0.0], + [0.42390136097067044,0.0,0.0], + [0.14721664553891722,0.0,0.0], + [0.0,0.0,0.020864895761025348], + [0.0,0.0,0.2748378602376897], + [0.0,0.0,0.5622979919969703], + [0.0,0.0,0.8404928748046614], + [0.010284370861886716,0.07385252747486239,1.0], + [0.26165643531357613,0.4457383557765388,1.0], + [0.5484760702574342,0.7513318895568724,1.0], + [0.8280861171434193,0.945183828160823,1.0], + [1.0,0.9984636039674343,1.0], + [1.0,0.903247199346126,0.7514435955015424], + [1.0,0.6736956436465537,0.46536240601569373], + [1.0,0.3439489186339255,0.18443268162625392], + [1.0,0.0,0.0], + [0.7644577585591484,0.0,0.0], + [0.4792127109954381,0.0,0.0], + [0.19705924634608046,0.0,0.0], + [0.0,0.0,0.0], + [0.0,0.0,0.22261839046552478], + [0.0,0.0,0.5069298851846683], + [0.0,0.0,0.7902107349442578], + [0.0,0.0,1.0], + [0.20978926505574086,0.3784110500423207,1.0], + [0.4930701148153302,0.7005430375932874,1.0], + [0.7773816095344838,0.9184869857459259,1.0], + [1.0,0.9998292504580525,1.0], + [1.0,0.9324722294043546,0.8029407536539208], + [1.0,0.7264335740162184,0.5207872890045581], + [1.0,0.4123563174738977,0.23554224144084301], + [1.0,0.036951499389140566,0.0], + [0.8155673183737329,0.0,0.0], + [0.5346375939843024,0.0,0.0], + [0.24855640449845395,0.0,0.0], + [0.0,0.0,0.0], + [0.0,0.0,0.17191388285657938], + [0.0,0.0,0.4515239297425644], + [0.0,0.0,0.7383435646864276], + [0.0,0.0,0.9897156291381042], + [0.15950712519534682,0.30901699437495467,1.0], + [0.437702008003023,0.6459280624867862,1.0], + [0.7251621397623191,0.8867736859200636,1.0], + [0.9791351042389693,0.995734176295034,1.0], + [1.0,0.956604419500441,0.8527833544610793], + [1.0,0.7752039761111268,0.5760986390293257], + [1.0,0.4785115691012779,0.28809617782624863], + [1.0,0.11065268189150011,0.031609044859322644], + [0.8649533589251366,0.0,0.0], + [0.5898732984461629,0.0,0.0], + [0.30142686037596483,0.0,0.0], + [0.04251314903971004,0.0,0.0], + [0.0,0.0,0.12300126784853627], + [0.0,0.0,0.39638273378608324], + [0.0,0.0,0.6851746445290485], + [0.0,0.0,0.9464265154394076], + [0.1110846393438753,0.23793519504262273,1.0], + [0.38267415121982506,0.5877852522924748,1.0], + [0.6717129124626026,0.8502171357296179,1.0], + [0.9352137256724828,0.9862007473534022,1.0], + [1.0,0.9755119679804359,0.9006991749214159], + [1.0,0.8197404829072164,0.630994364676555], + [1.0,0.5420533564724441,0.34180745940613977], + [1.0,0.18374951781656615,0.07614768918305509], + [0.9123461507855474,0.0,0.0], + [0.6446181461174104,0.0,0.0], + [0.3553818538825867,0.0,0.0], + [0.08765384921445019,0.0,0.0], + [0.0,0.0,0.07614768918305526], + [0.0,0.0,0.3418074594061451], + [0.0,0.0,0.6309943646765603], + [0.0,0.0,0.9006991749214162], + [0.06478627432751516,0.16555387618413042,1.0], + [0.3282870875374003,0.5264321628773545,1.0], + [0.6173258487801725,0.8090169943749453,1.0], + [0.8889153606561272,0.9712810319161125,1.0], + [1.0,0.9890916083711471,0.946426515439416], + [1.0,0.8597998514483737,0.6851746445290535], + [1.0,0.6026346363792543,0.3963827337860831], + [1.0,0.25584277759443497,0.12300126784853149], + [0.9574868509602917,0.0,0.0], + [0.6985731396240323,0.0,0.0], + [0.4101267015538395,0.0,0.0], + [0.1350466410748608,0.0,0.0], + [0.0,0.0,0.03160904485932281], + [0.0,0.0,0.28809617782624874], + [0.0,0.0,0.5760986390293206], + [0.0,0.0,0.8527833544610842], + [0.02086489576102879,0.09226835946330597,1.0], + [0.27483786023768375,0.46220388354031494,1.0], + [0.5622979919969746,0.763398282741103,1.0], + [0.8404928748046558,0.951056516295153,1.0], + [1.0,0.9972691733857884,0.9897156291381121], + [1.0,0.895163291355065,0.7383435646864325], + [1.0,0.6599245348787179,0.45152392974256417], + [1.0,0.32653871284007935,0.17191388285657927], + [1.0,0.0,0.0], + [0.7514435955015433,0.0,0.0], + [0.4653624060156946,0.0,0.0], + [0.18443268162626442,0.0,0.0], + [0.0,0.0,0.0], + [0.0,0.0,0.23554224144084818], + [0.0,0.0,0.5207872890045582], + [0.0,0.0,0.802940753653921], + [0.0,0.01847890495913031,1.0], + [0.2226183904655239,0.3954512068705411,1.0], + [0.5069298851846674,0.7136101544117498,1.0], + [0.790210734944257,0.9256376597815542,1.0], + [1.0,1.0,1.0], + [1.0,0.9256376597815572,0.7902107349442625], + [1.0,0.7136101544117505,0.5069298851846655], + [1.0,0.39545120687053875,0.22261839046552212], + [1.0,0.01847890495912774,0.0], + [0.8029407536539217,0.0,0.0], + [0.5207872890045643,0.0,0.0], + [0.23554224144085134,0.0,0.0], + [0.0,0.0,0.0], + [0.0,0.0,0.18443268162625892], + [0.0,0.0,0.46536240601569123], + [0.0,0.0,0.7514435955015476], + [0.0,0.0,1.0], + [0.171913882856581,0.32653871284008174,1.0], + [0.4515239297425661,0.6599245348787225,1.0], + [0.7383435646864241,0.8951632913550615,1.0], + [0.9897156291381055,0.9972691733857878,1.0], + [1.0,0.9510565162951554,0.8404928748046636], + [1.0,0.7633982827411013,0.5622979919969754], + [1.0,0.4622038835403095,0.2748378602376845], + [1.0,0.09226835946329986,0.02086489576102729], + [0.8527833544610826,0.0,0.0], + [0.5760986390293292,0.0,0.0], + [0.28809617782625463,0.0,0.0], + [0.031609044859327584,0.0,0.0], + [0.0,0.0,0.1350466410748532], + [0.0,0.0,0.4101267015538335], + [0.0,0.0,0.6985731396240342], + [0.0,0.0,0.9574868509602934], + [0.12300126784853549,0.255842777594434,1.0], + [0.3963827337860876,0.6026346363792563,1.0], + [0.6851746445290476,0.8597998514483713,1.0], + [0.9464265154394111,0.9890916083711454,1.0], + [1.0,0.9712810319161153,0.8889153606561324], + [1.0,0.8090169943749459,0.6173258487801706], + [1.0,0.5264321628773523,0.32828708753739844], + [1.0,0.1655538761841279,0.06478627432751138], + [0.9006991749214167,0.0,0.0], + [0.6309943646765611,0.0,0.0], + [0.34180745940614843,0.0,0.0], + [0.07614768918305809,0.0,0.0], + [0.0,0.0,0.08765384921444513], + [0.0,0.0,0.35538185388258203], + [0.0,0.0,0.644618146117415], + [0.0,0.0,0.9123461507855513], + [0.0761476891830567,0.18374951781657042,1.0], + [0.3418074594061468,0.5420533564724478,1.0], + [0.6309943646765568,0.8197404829072199,1.0], + [0.900699174921413,0.9755119679804357,1.0], + [1.0,0.9862007473534036,0.9352137256724901], + [1.0,0.8502171357296119,0.6717129124625981], + [1.0,0.5877852522924712,0.3826741512198245], + [1.0,0.2379351950426168,0.11108463934387025], + [0.9464265154394146,0.0,0.0], + [0.6851746445290505,0.0,0.0], + [0.39638273378609057,0.0,0.0], + [0.12300126784853804,0.0,0.0], + [0.0,0.0,0.04251314903970427], + [0.0,0.0,0.30142686037596284], + [0.0,0.0,0.5898732984461648], + [0.0,0.0,0.864953358925143], + [0.03160904485932525,0.1106526818915009,1.0], + [0.288096177826253,0.47851156910128484,1.0], + [0.576098639029325,0.7752039761111285,1.0], + [0.8527833544610787,0.9566044195004396,1.0], + [1.0,0.995734176295035,0.979135104238974], + [1.0,0.8867736859200599,0.7251621397623115], + [1.0,0.6459280624867849,0.4377020080030197], + [1.0,0.30901699437494634,0.15950712519533916], + [0.9897156291381082,0.0,0.0], + [0.7383435646864269,0.0,0.0], + [0.4515239297425691,0.0,0.0], + [0.17191388285658304,0.0,0.0], + [0.0,0.0,0.0], + [0.0,0.0,0.24855640449844985], + [0.0,0.0,0.5346375939843067], + [0.0,0.0,0.8155673183737374], + [0.0,0.03695149938914491,1.0], + [0.23554224144084945,0.4123563174739021,1.0], + [0.5207872890045603,0.7264335740162223,1.0], + [0.8029407536539184,0.9324722294043543,1.0], + [1.0,0.9998292504580528,1.0], + [1.0,0.9184869857459214,0.7773816095344739], + [1.0,0.700543037593289,0.4930701148153298], + [1.0,0.378411050042309,0.20978926505574008], + [1.0,0.0,0.0] ], + gist_earth: [ + [0.0,0.0,0.0], + [0.002613453313336666,0.0,0.1686920060331825], + [0.005226906626673332,0.0,0.2216635612620683], + [0.007840359940009999,0.0,0.2638054941773664], + [0.010453813253346664,0.0,0.3059474270926645], + [0.013067266566683331,0.0,0.3480893600079626], + [0.015680719880019997,0.0,0.39023129292326064], + [0.01829417319335666,0.0,0.43237322583855875], + [0.020907626506693328,0.008907333285683652,0.4547451483157366], + [0.023521079820029996,0.017927417625616466,0.45560590578861027], + [0.026134533133366663,0.02694750196554928,0.45631678775095696], + [0.02874798644670333,0.035967586305482094,0.45702766971330366], + [0.031361439760039994,0.04498767064541491,0.45773855167565036], + [0.033974893073376665,0.054007754985347725,0.45844943363799706], + [0.03658834638671332,0.06302783932528054,0.45916031560034376], + [0.03920179970004999,0.07204792366521336,0.45987119756269046], + [0.041815253013386657,0.08106800800514617,0.4605820795250371], + [0.04442870632672333,0.09008809234507899,0.4612929614873838], + [0.04704215964005999,0.09910817668501179,0.4620038434497305], + [0.049655612953396655,0.10812826102494462,0.4627147254120772], + [0.052269066266733326,0.11714834536487742,0.4634256073744239], + [0.05488251958006998,0.12616842970481024,0.4641364893367706], + [0.05749597289340666,0.13518851404474305,0.4648473712991173], + [0.06010942620674332,0.14420859838467587,0.46555825326146394], + [0.06272287952007999,0.15322868272460868,0.46626913522381064], + [0.06533633283341665,0.1622487670645415,0.46698001718615734], + [0.06794978614675333,0.17126885140447431,0.46769089914850404], + [0.07056323946008998,0.18028893574440713,0.46840178111085073], + [0.07317669277342664,0.18930815743419407,0.46911266307319743], + [0.07579014608676332,0.19746559162827243,0.4698235450355441], + [0.07840359940009999,0.2056230258223508,0.4705344269978908], + [0.08101705271343665,0.21378046001642917,0.4712453089602375], + [0.08363050602677331,0.22193789421050752,0.4719561909225842], + [0.08624395934010996,0.23009532840458582,0.4726670728849309], + [0.08885741265344665,0.23825276259866424,0.47337795484727757], + [0.09147086596678332,0.2464101967927426,0.47408883680962427], + [0.09408431928011998,0.25456763098682095,0.4747997187719709], + [0.09669777259345662,0.2627250651808992,0.4755106007343176], + [0.09931122590679331,0.27088249937497766,0.4762214826966643], + [0.10192467922012999,0.27903993356905604,0.476932364659011], + [0.10453813253346665,0.2871973677631344,0.4776432466213577], + [0.10715158584680329,0.2953548019572127,0.4783541285837044], + [0.10976503916013997,0.3035110004094445,0.4790650105460511], + [0.11237849247347666,0.31084460670579134,0.47977589250839775], + [0.11499194578681332,0.3181782130021382,0.48048677447074445], + [0.11760539910014996,0.325511819298485,0.48119765643309115], + [0.12021885241348663,0.3328454255948319,0.48190853839543785], + [0.1228323057268233,0.3401790318911787,0.48261942035778455], + [0.12544575904015998,0.3475126381875256,0.48333030232013124], + [0.12805921235349663,0.35484624448387236,0.4840411842824779], + [0.1306726656668333,0.36217985078021925,0.4847520662448246], + [0.13328611898016995,0.36951345707656613,0.4854629482071713], + [0.13589957229350666,0.37684706337291296,0.486173830169518], + [0.13851302560684328,0.3841681753666613,0.4868847121318647], + [0.14112647892017996,0.3903659359722441,0.4875955940942114], + [0.14373993223351664,0.3965636965778268,0.4883064760565581], + [0.1463533855468533,0.40276145718340955,0.4890173580189048], + [0.14896683886018997,0.4089592177889922,0.4897282399812514], + [0.15158029217352664,0.415156978394575,0.4904391219435981], + [0.1541937454868633,0.4213547390001577,0.4911500039059448], + [0.15680719880019997,0.4275524996057404,0.4918608858682915], + [0.15942065211353662,0.43375026021132307,0.4925717678306382], + [0.1620341054268733,0.4399480208169058,0.4932826497929849], + [0.16464755874020998,0.44614578142248856,0.49399353175533156], + [0.16726101205354663,0.45234354202807125,0.49470441371767826], + [0.1698744653668833,0.458541302633654,0.49541529568002496], + [0.17248791868021993,0.46473906323923664,0.49612617764237166], + [0.17510137199355663,0.47093682384481944,0.49683705960471836], + [0.1777148253068933,0.47713458445040213,0.49754794156706506], + [0.18032827862022996,0.4833323450559849,0.49825882352941175], + [0.18294173193356664,0.48953010566156757,0.4989697054917584], + [0.18555518524690331,0.49572786626715026,0.4996805874541051], + [0.18816863856023996,0.501925626872733,0.5003914694164519], + [0.19002743319550042,0.5042304347826086,0.49565724681625223], + [0.19187706193588544,0.5064879598662207,0.49085688934282345], + [0.19372669067627052,0.5087454849498327,0.4860565318693945], + [0.19557631941665554,0.5110030100334448,0.48125617439596563], + [0.1974259481570406,0.5132605351170568,0.47645581692253675], + [0.19927557689742564,0.5155180602006689,0.47165545944910786], + [0.20112520563781067,0.5177755852842809,0.466855101975679], + [0.20297483437819572,0.520033110367893,0.46205474450225015], + [0.20482446311858077,0.522290635451505,0.45725438702882126], + [0.2066740918589658,0.524548160535117,0.45245402955539243], + [0.20852372059935084,0.5268056856187291,0.4476536720819635], + [0.2103733493397359,0.5290632107023412,0.44285331460853467], + [0.21222297808012094,0.5313207357859532,0.4380529571351058], + [0.21407260682050597,0.5335782608695653,0.4332525996616769], + [0.21592223556089102,0.5358357859531773,0.428452242188248], + [0.21777186430127607,0.5380933110367894,0.4236518847148192], + [0.2196214930416611,0.5403508361204014,0.4188515272413903], + [0.22147112178204612,0.5426083612040133,0.41405116976796147], + [0.2233207505224312,0.5448658862876254,0.40925081229453253], + [0.22517037926281624,0.5471234113712375,0.40445045482110364], + [0.22702000800320127,0.5493809364548495,0.3996500973476748], + [0.22886963674358632,0.5516384615384615,0.39484973987424593], + [0.23071926548397137,0.5538959866220736,0.39004938240081705], + [0.2325688942243564,0.5561535117056856,0.38524902492738816], + [0.23441852296474144,0.5584110367892977,0.38044866745395933], + [0.23626815170512647,0.5606685618729097,0.3756483099805305], + [0.23811778044551152,0.5629260869565218,0.37084795250710156], + [0.23996740918589657,0.5651836120401338,0.3660475950336727], + [0.24181703792628162,0.5674411371237459,0.3612472375602438], + [0.24366666666666664,0.5696986622073579,0.3564468800868149], + [0.2455162954070517,0.57195618729097,0.3516465226133861], + [0.24736592414743674,0.574213712374582,0.3468461651399572], + [0.24921555288782177,0.5764712374581941,0.34204580766652837], + [0.2510651816282068,0.578728762541806,0.33724545019309954], + [0.25291481036859187,0.5809862876254182,0.3324450927196706], + [0.2547644391089769,0.5832438127090301,0.3276447352462417], + [0.25661406784936197,0.5855013377926422,0.32284437777281283], + [0.258463696589747,0.5877588628762542,0.31804402029938394], + [0.260313325330132,0.5900163879598663,0.31324366282595506], + [0.26216295407051704,0.5922739130434783,0.30844330535252623], + [0.2640125828109021,0.5945314381270903,0.30364294787909735], + [0.26586221155128714,0.5967889632107024,0.2988425904056685], + [0.2677118402916722,0.5990464882943144,0.29404223293223963], + [0.26956146903205724,0.6013040133779265,0.28924187545881075], + [0.27145230207382287,0.6035615384615385,0.28444151798538186], + [0.2801693143776357,0.6058190635451506,0.279641160511953], + [0.2888863266814486,0.6080765886287626,0.2748408030385241], + [0.2976033389852615,0.6103341137123747,0.27706648409363743], + [0.30632035128907437,0.6125916387959867,0.27935239845938376], + [0.3150373635928871,0.6148491638795988,0.28163831282513], + [0.3237543758967001,0.6171066889632107,0.28392422719087634], + [0.332471388200513,0.6193642140468228,0.2862101415566226], + [0.34118840050432586,0.6216217391304348,0.28849605592236893], + [0.34990541280813875,0.6238792642140469,0.29078197028811525], + [0.35862242511195164,0.6261367892976589,0.2930678846538615], + [0.36733943741576447,0.628394314381271,0.29535379901960784], + [0.37605644971957736,0.630651839464883,0.2976397133853541], + [0.38477346202339024,0.6329093645484951,0.29992562775110043], + [0.39349047432720313,0.6351668896321071,0.3022115421168467], + [0.40220748663101574,0.6374244147157191,0.30449745648259297], + [0.41092449893482885,0.6396819397993312,0.3067833708483393], + [0.4196415112386418,0.6414069227691077,0.3090692852140856], + [0.42835852354245463,0.6431276110444178,0.31135519957983193], + [0.4370755358462675,0.644848299319728,0.3136411139455782], + [0.4457925481500804,0.6465689875950381,0.3159270283113245], + [0.45450956045389324,0.6482896758703482,0.3182129426770708], + [0.4632265727577061,0.6500103641456584,0.3204988570428171], + [0.47193233320173705,0.6517310524209684,0.32173880582333264], + [0.4783989735491512,0.6534517406962785,0.3229782313594334], + [0.4848656138965653,0.6551724289715887,0.3242176568955341], + [0.4913322542439794,0.6568931172468988,0.32545708243163485], + [0.4977988945913936,0.6586138055222089,0.3266965079677356], + [0.5042655349388078,0.6603344937975191,0.3279359335038363], + [0.5107321752862218,0.6620551820728292,0.32917535903993705], + [0.517198815633636,0.6637758703481393,0.3304147845760378], + [0.52366545598105,0.6654965586234494,0.33165421011213847], + [0.5301320963284643,0.6672172468987596,0.3328936356482392], + [0.5365987366758784,0.6689379351740696,0.33413306118433994], + [0.5430653770232925,0.6706586234493798,0.3353724867204407], + [0.5495320173707067,0.6723793117246899,0.3366119122565414], + [0.5559986577181208,0.6741,0.33785133779264215], + [0.5624652980655349,0.6758206882753102,0.3390907633287429], + [0.5689319384129491,0.6775413765506203,0.34033018886484356], + [0.5753985787603633,0.6792620648259304,0.3415696144009443], + [0.5818652191077773,0.6809827531012406,0.34280903993704503], + [0.5883318594551915,0.6827034413765507,0.34404846547314577], + [0.5947984998026057,0.6844241296518607,0.3452878910092465], + [0.6012651401500198,0.6861448179271709,0.34652731654534724], + [0.6077317804974339,0.687865506202481,0.347766742081448], + [0.6141984208448481,0.6895861944777911,0.3490061676175487], + [0.6206650611922622,0.6913068827531013,0.3502455931536494], + [0.6271317015396761,0.6930275710284113,0.35148501868975013], + [0.6335983418870905,0.6947482593037215,0.35272444422585086], + [0.6400649822345046,0.6964689475790317,0.3539638697619516], + [0.6465316225819188,0.6981896358543418,0.35520329529805234], + [0.6529982629293329,0.6999103241296518,0.35644272083415307], + [0.659464903276747,0.701631012404962,0.3576821463702538], + [0.6659315436241612,0.7033517006802721,0.35892157190635454], + [0.6723981839715754,0.7050723889555822,0.3601609974424552], + [0.6788648243189894,0.7067930772308924,0.36140042297855596], + [0.6853314646664036,0.7085137655062025,0.3626398485146567], + [0.6917981050138178,0.7102344537815126,0.36387927405075743], + [0.6982647453612318,0.7119551420568228,0.36511869958685816], + [0.704731385708646,0.7136758303321329,0.3663581251229589], + [0.7111980260560602,0.715396518607443,0.36759755065905964], + [0.7176163905917134,0.7170661319073083,0.3688369761951603], + [0.7192554497630538,0.713679322638146,0.37007640173126105], + [0.7208945089343941,0.7102925133689839,0.3713158272673618], + [0.7225335681057345,0.7069057040998217,0.3725552528034625], + [0.724172627277075,0.7035188948306594,0.37379467833956326], + [0.7258116864484153,0.7001320855614972,0.375034103875664], + [0.7274507456197556,0.6967452762923351,0.37627352941176473], + [0.7290898047910961,0.6933584670231728,0.3775129549478654], + [0.7307288639624364,0.6899716577540106,0.3787523804839662], + [0.7323679231337769,0.6865848484848485,0.3799918060200669], + [0.7340069823051172,0.6831980392156862,0.3812312315561676], + [0.7356460414764575,0.679811229946524,0.38247065709226835], + [0.737285100647798,0.6764244206773619,0.3837100826283691], + [0.7389241598191383,0.6730376114081996,0.3849495081644698], + [0.7405632189904786,0.6696508021390374,0.3861889337005705], + [0.742202278161819,0.6662639928698753,0.3874283592366713], + [0.7438413373331594,0.662877183600713,0.388667784772772], + [0.7454803965044998,0.6594903743315508,0.3899072103088727], + [0.7471194556758401,0.6561035650623886,0.39114663584497344], + [0.7487585148471805,0.6527167557932264,0.3923860613810742], + [0.7503975740185209,0.6493299465240642,0.3936254869171749], + [0.7520366331898612,0.645943137254902,0.39486491245327565], + [0.7536756923612017,0.6425563279857398,0.3961336262009358], + [0.7553394767538743,0.6392185294117647,0.40574111218257797], + [0.7597257827399136,0.6412773529411765,0.4153485981642202], + [0.764112088725953,0.6429905982905983,0.4249560841458624], + [0.7684983947119923,0.6447,0.4345635701275046], + [0.7728847006980317,0.6464094017094018,0.4441710561091468], + [0.7772710066840711,0.6481371308016878,0.453778542090789], + [0.7816573126701104,0.6515126582278481,0.46338602807243123], + [0.7860436186561498,0.6548881856540084,0.4729935140540734], + [0.7904299246421892,0.6582867973856209,0.4826010000357156], + [0.7948162306282286,0.6616854901960785,0.4922084860173578], + [0.7992025366142679,0.6650841830065359,0.5018159719990001], + [0.8035888426003072,0.6684828758169934,0.5114234579806419], + [0.8079751485863467,0.6718815686274511,0.5210309439622844], + [0.8123614545723861,0.6752802614379085,0.5306384299439266], + [0.8167477605584254,0.6786789542483661,0.5402459159255688], + [0.8211340665444647,0.6820776470588236,0.549853401907211], + [0.8255203725305041,0.6854763398692811,0.5594608878888532], + [0.8299066785165434,0.6888750326797386,0.5690683738704955], + [0.8342929845025828,0.6922737254901962,0.5786758598521377], + [0.8386792904886222,0.6956724183006536,0.5882833458337798], + [0.8430655964746616,0.6990711111111112,0.597890831815422], + [0.8474519024607009,0.7046831070889895,0.6074983177970643], + [0.8518382084467403,0.7103140233308514,0.6171058037787065], + [0.8562245144327797,0.7159233556713825,0.6267132897603487], + [0.860610820418819,0.7215326880119136,0.6363207757419909], + [0.8649971264048584,0.7269150326797386,0.645928261723633], + [0.8693834323908978,0.7322946204122674,0.6555357477052752], + [0.8737697383769369,0.7376742081447961,0.6651531911348106], + [0.8781560443629765,0.7430767066085693,0.6769734433150032], + [0.8825423503490158,0.7507473674655046,0.6887936954951953], + [0.8869286563350552,0.75841802832244,0.7006139476753875], + [0.8913149623210945,0.7660886891793754,0.7124341998555797], + [0.8957012683071339,0.7737593500363108,0.7242544520357719], + [0.9000875742931733,0.7814300108932462,0.7360747042159641], + [0.9044738802792127,0.7891006717501815,0.7478949563961563], + [0.9088601862652521,0.7967713326071169,0.7597152085763484], + [0.9132464922512914,0.8044419934640523,0.7715354607565407], + [0.9176327982373308,0.8121126543209877,0.7833557129367328], + [0.9220191042233701,0.819783315177923,0.795175965116925], + [0.9264054102094095,0.8274539760348584,0.8069962172971172], + [0.9307917161954489,0.8364381790932934,0.8188164694773093], + [0.9351780221814883,0.8454303109778943,0.8306367216575016], + [0.9395643281675277,0.8544224428624954,0.8424569738376937], + [0.9439506341535668,0.863414574747096,0.8542772260178856], + [0.9483369401396063,0.8725135997988939,0.8660974781980781], + [0.9527232461256456,0.8816171787186212,0.8779177303782703], + [0.957109552111685,0.8930696577994255,0.8897379825584625], + [0.9614958580977244,0.9045221368802299,0.9015582347386546], + [0.9658821640837638,0.9159746159610341,0.9133784869188468], + [0.9702684700698031,0.9274270950418385,0.925198739099039], + [0.9746547760558425,0.9388795741226428,0.9370189912792313], + [0.9790410820418819,0.9503320532034472,0.9488392434594234], + [0.9834273880279212,0.9617845322842515,0.9606594956396155], + [0.9878136940139606,0.9732370113650558,0.9724797478198077], + [0.9922,0.9843,0.9843] ], + gist_earth_r: [ + [0.9922,0.9843,0.9843], + [0.9878136940139606,0.9732370113650557,0.9724797478198077], + [0.9834273880279213,0.9617845322842513,0.9606594956396156], + [0.9790410820418819,0.950332053203447,0.9488392434594234], + [0.9746547760558425,0.9388795741226428,0.9370189912792312], + [0.9702684700698031,0.9274270950418385,0.925198739099039], + [0.9658821640837638,0.9159746159610341,0.9133784869188468], + [0.9614958580977244,0.9045221368802299,0.9015582347386546], + [0.957109552111685,0.8930696577994256,0.8897379825584625], + [0.9527232461256457,0.8816171787186212,0.8779177303782703], + [0.9483369401396063,0.872513599798894,0.866097478198078], + [0.943950634153567,0.8634145747470964,0.8542772260178859], + [0.9395643281675277,0.8544224428624954,0.8424569738376937], + [0.9351780221814883,0.8454303109778943,0.8306367216575015], + [0.9307917161954489,0.8364381790932933,0.8188164694773093], + [0.9264054102094095,0.8274539760348584,0.8069962172971171], + [0.9220191042233702,0.8197833151779229,0.795175965116925], + [0.9176327982373308,0.8121126543209876,0.7833557129367328], + [0.9132464922512914,0.8044419934640522,0.7715354607565406], + [0.9088601862652521,0.7967713326071169,0.7597152085763483], + [0.9044738802792127,0.7891006717501815,0.7478949563961562], + [0.9000875742931733,0.7814300108932462,0.736074704215964], + [0.8957012683071339,0.7737593500363108,0.7242544520357719], + [0.8913149623210946,0.7660886891793754,0.7124341998555797], + [0.8869286563350552,0.75841802832244,0.7006139476753874], + [0.8825423503490158,0.7507473674655046,0.6887936954951952], + [0.8781560443629766,0.7430767066085693,0.6769734433150031], + [0.8737697383769372,0.7376742081447963,0.665153191134811], + [0.8693834323908978,0.7322946204122674,0.6555357477052752], + [0.8649971264048584,0.7269150326797386,0.645928261723633], + [0.8606108204188191,0.7215326880119137,0.6363207757419909], + [0.8562245144327797,0.7159233556713825,0.6267132897603486], + [0.8518382084467404,0.7103140233308513,0.6171058037787064], + [0.847451902460701,0.7046831070889895,0.6074983177970643], + [0.8430655964746616,0.6990711111111112,0.597890831815422], + [0.8386792904886222,0.6956724183006536,0.5882833458337798], + [0.8342929845025828,0.6922737254901962,0.5786758598521375], + [0.8299066785165435,0.6888750326797386,0.5690683738704955], + [0.8255203725305041,0.6854763398692811,0.5594608878888532], + [0.8211340665444647,0.6820776470588236,0.549853401907211], + [0.8167477605584255,0.6786789542483661,0.5402459159255688], + [0.8123614545723861,0.6752802614379085,0.5306384299439266], + [0.8079751485863467,0.6718815686274511,0.5210309439622844], + [0.8035888426003073,0.6684828758169935,0.5114234579806423], + [0.799202536614268,0.665084183006536,0.501815971999], + [0.7948162306282287,0.6616854901960785,0.49220848601735784], + [0.7904299246421892,0.658286797385621,0.4826010000357156], + [0.7860436186561499,0.6548881856540085,0.4729935140540734], + [0.7816573126701105,0.6515126582278481,0.46338602807243123], + [0.7772710066840711,0.6481371308016878,0.45377854209078905], + [0.7728847006980317,0.6464094017094018,0.44417105610914676], + [0.7684983947119924,0.6447,0.4345635701275046], + [0.764112088725953,0.6429905982905983,0.4249560841458624], + [0.7597257827399138,0.6412773529411765,0.4153485981642202], + [0.7553394767538744,0.6392185294117647,0.40574111218257797], + [0.7536756923612017,0.6425563279857397,0.3961336262009358], + [0.7520366331898612,0.6459431372549019,0.39486491245327565], + [0.7503975740185209,0.6493299465240642,0.3936254869171749], + [0.7487585148471806,0.6527167557932264,0.3923860613810742], + [0.7471194556758401,0.6561035650623885,0.39114663584497344], + [0.7454803965044998,0.6594903743315508,0.3899072103088727], + [0.7438413373331594,0.662877183600713,0.38866778477277203], + [0.742202278161819,0.6662639928698753,0.3874283592366713], + [0.7405632189904787,0.6696508021390374,0.38618893370057056], + [0.7389241598191383,0.6730376114081996,0.3849495081644698], + [0.737285100647798,0.6764244206773619,0.3837100826283691], + [0.7356460414764576,0.679811229946524,0.38247065709226835], + [0.7340069823051172,0.6831980392156862,0.3812312315561676], + [0.7323679231337767,0.6865848484848485,0.3799918060200669], + [0.7307288639624364,0.6899716577540107,0.3787523804839662], + [0.7290898047910961,0.6933584670231728,0.37751295494786546], + [0.7274507456197556,0.6967452762923351,0.37627352941176473], + [0.7258116864484153,0.7001320855614973,0.375034103875664], + [0.7241726272770749,0.7035188948306594,0.37379467833956326], + [0.7225335681057345,0.7069057040998217,0.3725552528034626], + [0.7208945089343942,0.7102925133689839,0.3713158272673618], + [0.7192554497630538,0.7136793226381462,0.37007640173126105], + [0.7176163905917134,0.7170661319073083,0.36883697619516037], + [0.7111980260560601,0.7153965186074429,0.36759755065905964], + [0.7047313857086459,0.7136758303321328,0.3663581251229589], + [0.6982647453612317,0.7119551420568228,0.36511869958685816], + [0.6917981050138177,0.7102344537815126,0.36387927405075743], + [0.6853314646664036,0.7085137655062025,0.36263984851465675], + [0.6788648243189894,0.7067930772308924,0.36140042297855596], + [0.6723981839715752,0.7050723889555822,0.3601609974424552], + [0.6659315436241611,0.7033517006802721,0.35892157190635454], + [0.659464903276747,0.701631012404962,0.3576821463702538], + [0.6529982629293328,0.6999103241296518,0.35644272083415307], + [0.6465316225819187,0.6981896358543417,0.35520329529805234], + [0.6400649822345046,0.6964689475790317,0.3539638697619516], + [0.6335983418870905,0.6947482593037215,0.3527244442258509], + [0.6271317015396762,0.6930275710284114,0.35148501868975013], + [0.6206650611922622,0.6913068827531013,0.35024559315364945], + [0.614198420844848,0.6895861944777911,0.3490061676175487], + [0.6077317804974339,0.687865506202481,0.347766742081448], + [0.6012651401500198,0.6861448179271709,0.34652731654534724], + [0.5947984998026056,0.6844241296518607,0.3452878910092465], + [0.5883318594551915,0.6827034413765506,0.34404846547314577], + [0.5818652191077774,0.6809827531012406,0.3428090399370451], + [0.5753985787603632,0.6792620648259304,0.34156961440094435], + [0.5689319384129491,0.6775413765506203,0.3403301888648436], + [0.5624652980655349,0.6758206882753102,0.3390907633287429], + [0.5559986577181208,0.6741,0.33785133779264215], + [0.5495320173707067,0.6723793117246899,0.3366119122565414], + [0.5430653770232925,0.6706586234493798,0.3353724867204407], + [0.5365987366758784,0.6689379351740696,0.33413306118433994], + [0.5301320963284644,0.6672172468987596,0.33289363564823926], + [0.5236654559810501,0.6654965586234495,0.3316542101121385], + [0.517198815633636,0.6637758703481393,0.3304147845760378], + [0.5107321752862218,0.6620551820728292,0.32917535903993705], + [0.5042655349388077,0.6603344937975191,0.3279359335038363], + [0.4977988945913936,0.6586138055222089,0.3266965079677356], + [0.4913322542439794,0.6568931172468988,0.32545708243163485], + [0.48486561389656535,0.6551724289715887,0.32421765689553417], + [0.4783989735491513,0.6534517406962785,0.32297823135943343], + [0.471932333201737,0.6517310524209684,0.3217388058233327], + [0.4632265727577061,0.6500103641456583,0.3204988570428171], + [0.45450956045389324,0.6482896758703482,0.31821294267707084], + [0.4457925481500804,0.6465689875950381,0.3159270283113245], + [0.4370755358462675,0.644848299319728,0.31364111394557825], + [0.42835852354245463,0.6431276110444178,0.31135519957983193], + [0.41964151123864174,0.6414069227691077,0.3090692852140856], + [0.410924498934829,0.6396819397993312,0.30678337084833934], + [0.402207486631016,0.6374244147157192,0.304497456482593], + [0.39349047432720313,0.6351668896321071,0.30221154211684675], + [0.38477346202339024,0.6329093645484951,0.29992562775110043], + [0.37605644971957736,0.630651839464883,0.2976397133853541], + [0.36733943741576447,0.628394314381271,0.29535379901960784], + [0.35862242511195164,0.6261367892976589,0.2930678846538615], + [0.34990541280813875,0.6238792642140469,0.29078197028811525], + [0.34118840050432586,0.6216217391304348,0.28849605592236893], + [0.33247138820051303,0.6193642140468228,0.28621014155662267], + [0.32375437589670036,0.6171066889632109,0.2839242271908764], + [0.31503736359288725,0.6148491638795988,0.2816383128251301], + [0.30632035128907437,0.6125916387959867,0.27935239845938376], + [0.2976033389852615,0.6103341137123747,0.27706648409363743], + [0.2888863266814486,0.6080765886287626,0.27484080303852415], + [0.2801693143776357,0.6058190635451506,0.279641160511953], + [0.27145230207382287,0.6035615384615385,0.28444151798538186], + [0.26956146903205724,0.6013040133779265,0.28924187545881075], + [0.2677118402916722,0.5990464882943144,0.29404223293223963], + [0.26586221155128714,0.5967889632107024,0.29884259040566846], + [0.2640125828109021,0.5945314381270903,0.30364294787909735], + [0.2621629540705171,0.5922739130434783,0.30844330535252623], + [0.260313325330132,0.5900163879598663,0.3132436628259551], + [0.258463696589747,0.5877588628762542,0.31804402029938394], + [0.25661406784936197,0.5855013377926422,0.32284437777281283], + [0.2547644391089769,0.5832438127090301,0.3276447352462417], + [0.2529148103685919,0.5809862876254182,0.33244509271967043], + [0.25106518162820685,0.578728762541806,0.3372454501930995], + [0.24921555288782177,0.5764712374581941,0.3420458076665283], + [0.24736592414743674,0.574213712374582,0.3468461651399572], + [0.2455162954070517,0.57195618729097,0.3516465226133861], + [0.24366666666666664,0.5696986622073579,0.3564468800868149], + [0.24181703792628162,0.5674411371237459,0.3612472375602438], + [0.23996740918589657,0.5651836120401338,0.3660475950336727], + [0.23811778044551152,0.5629260869565218,0.37084795250710156], + [0.2362681517051265,0.5606685618729097,0.37564830998053045], + [0.23441852296474144,0.5584110367892977,0.38044866745395933], + [0.2325688942243564,0.5561535117056856,0.38524902492738816], + [0.23071926548397137,0.5538959866220736,0.39004938240081705], + [0.22886963674358632,0.5516384615384615,0.39484973987424593], + [0.22702000800320127,0.5493809364548495,0.39965009734767476], + [0.22517037926281622,0.5471234113712375,0.40445045482110364], + [0.22332075052243125,0.5448658862876256,0.4092508122945324], + [0.22147112178204614,0.5426083612040135,0.4140511697679614], + [0.21962149304166112,0.5403508361204014,0.4188515272413903], + [0.21777186430127607,0.5380933110367894,0.4236518847148192], + [0.21592223556089102,0.5358357859531773,0.428452242188248], + [0.21407260682050597,0.5335782608695653,0.4332525996616769], + [0.21222297808012094,0.5313207357859532,0.4380529571351057], + [0.2103733493397359,0.5290632107023412,0.4428533146085346], + [0.20852372059935084,0.5268056856187291,0.4476536720819635], + [0.2066740918589658,0.5245481605351171,0.4524540295553924], + [0.20482446311858077,0.522290635451505,0.45725438702882126], + [0.20297483437819572,0.520033110367893,0.46205474450225015], + [0.20112520563781067,0.5177755852842809,0.46685510197567903], + [0.19927557689742564,0.5155180602006689,0.47165545944910786], + [0.1974259481570406,0.5132605351170569,0.47645581692253675], + [0.19557631941665554,0.5110030100334448,0.4812561743959656], + [0.19372669067627057,0.5087454849498328,0.48605653186939435], + [0.19187706193588547,0.5064879598662207,0.49085688934282334], + [0.19002743319550042,0.5042304347826088,0.49565724681625223], + [0.18816863856023996,0.501925626872733,0.5003914694164519], + [0.1855551852469033,0.49572786626715026,0.4996805874541051], + [0.18294173193356664,0.48953010566156757,0.4989697054917584], + [0.18032827862022996,0.4833323450559849,0.4982588235294117], + [0.1777148253068933,0.47713458445040213,0.49754794156706506], + [0.17510137199355663,0.47093682384481944,0.49683705960471836], + [0.17248791868021995,0.4647390632392367,0.49612617764237166], + [0.1698744653668833,0.458541302633654,0.49541529568002496], + [0.16726101205354663,0.45234354202807125,0.49470441371767826], + [0.16464755874020998,0.44614578142248856,0.49399353175533156], + [0.1620341054268733,0.4399480208169058,0.49328264979298486], + [0.15942065211353662,0.4337502602113231,0.4925717678306382], + [0.15680719880019997,0.4275524996057404,0.4918608858682915], + [0.15419374548686338,0.42135473900015785,0.4911500039059448], + [0.15158029217352664,0.415156978394575,0.4904391219435981], + [0.14896683886018997,0.40895921778899225,0.4897282399812514], + [0.14635338554685332,0.4027614571834095,0.4890173580189047], + [0.14373993223351664,0.3965636965778268,0.4883064760565581], + [0.14112647892018,0.3903659359722441,0.4875955940942114], + [0.1385130256068433,0.38416817536666137,0.4868847121318647], + [0.13589957229350663,0.37684706337291296,0.486173830169518], + [0.13328611898016998,0.3695134570765661,0.4854629482071713], + [0.1306726656668333,0.36217985078021925,0.4847520662448246], + [0.12805921235349665,0.35484624448387236,0.4840411842824779], + [0.12544575904015998,0.34751263818752554,0.48333030232013124], + [0.12283230572682331,0.3401790318911787,0.48261942035778455], + [0.12021885241348663,0.3328454255948319,0.48190853839543785], + [0.11760539910014997,0.325511819298485,0.48119765643309115], + [0.11499194578681332,0.31817821300213817,0.48048677447074445], + [0.11237849247347671,0.3108446067057915,0.4797758925083978], + [0.10976503916013998,0.30351100040944445,0.47906501054605105], + [0.10715158584680332,0.2953548019572127,0.4783541285837044], + [0.10453813253346665,0.28719736776313437,0.4776432466213577], + [0.10192467922012997,0.279039933569056,0.476932364659011], + [0.09931122590679331,0.27088249937497766,0.4762214826966643], + [0.09669777259345665,0.2627250651808993,0.4755106007343176], + [0.09408431928011998,0.25456763098682095,0.4747997187719709], + [0.09147086596678332,0.2464101967927426,0.4740888368096242], + [0.08885741265344665,0.23825276259866424,0.47337795484727757], + [0.08624395934010998,0.23009532840458588,0.4726670728849309], + [0.08363050602677331,0.22193789421050752,0.4719561909225842], + [0.08101705271343665,0.2137804600164292,0.4712453089602375], + [0.07840359940009999,0.2056230258223508,0.4705344269978908], + [0.07579014608676331,0.19746559162827249,0.4698235450355441], + [0.07317669277342664,0.1893081574341941,0.46911266307319743], + [0.07056323946009008,0.1802889357444074,0.46840178111085073], + [0.06794978614675333,0.17126885140447434,0.46769089914850404], + [0.06533633283341667,0.16224876706454153,0.46698001718615734], + [0.06272287952007999,0.1532286827246087,0.46626913522381064], + [0.06010942620674331,0.14420859838467592,0.46555825326146394], + [0.05749597289340666,0.1351885140447431,0.46484737129911724], + [0.05488251958006998,0.1261684297048103,0.46413648933677054], + [0.052269066266733305,0.11714834536487749,0.4634256073744239], + [0.049655612953396655,0.10812826102494467,0.4627147254120772], + [0.04704215964005998,0.09910817668501186,0.4620038434497305], + [0.04442870632672333,0.09008809234507906,0.4612929614873838], + [0.04181525301338668,0.08106800800514626,0.4605820795250371], + [0.03920179970004997,0.07204792366521343,0.45987119756269046], + [0.03658834638671332,0.06302783932528061,0.45916031560034376], + [0.03397489307337667,0.05400775498534782,0.45844943363799706], + [0.031361439760039994,0.04498767064541501,0.45773855167565036], + [0.0287479864467034,0.03596758630548244,0.45702766971330366], + [0.026134533133366666,0.026947501965549375,0.45631678775095696], + [0.02352107982002999,0.01792741762561656,0.45560590578861027], + [0.02090762650669334,0.008907333285683744,0.4547451483157365], + [0.01829417319335666,0.0,0.43237322583855925], + [0.015680719880019983,0.0,0.39023129292326103], + [0.013067266566683333,0.0,0.3480893600079628], + [0.010453813253346655,0.0,0.30594742709266454], + [0.007840359940010005,0.0,0.2638054941773663], + [0.005226906626673328,0.0,0.2216635612620681], + [0.00261345331333665,0.0,0.16869200603318163], + [0.0,0.0,0.0] ], + gist_gray: [ + [0.0,0.0,0.0], + [0.00392156862745098,0.00392156862745098,0.00392156862745098], + [0.00784313725490196,0.00784313725490196,0.00784313725490196], + [0.011764705882352941,0.011764705882352941,0.011764705882352941], + [0.01568627450980392,0.01568627450980392,0.01568627450980392], + [0.0196078431372549,0.0196078431372549,0.0196078431372549], + [0.023529411764705882,0.023529411764705882,0.023529411764705882], + [0.027450980392156862,0.027450980392156862,0.027450980392156862], + [0.03137254901960784,0.03137254901960784,0.03137254901960784], + [0.03529411764705882,0.03529411764705882,0.03529411764705882], + [0.0392156862745098,0.0392156862745098,0.0392156862745098], + [0.043137254901960784,0.043137254901960784,0.043137254901960784], + [0.047058823529411764,0.047058823529411764,0.047058823529411764], + [0.050980392156862744,0.050980392156862744,0.050980392156862744], + [0.054901960784313725,0.054901960784313725,0.054901960784313725], + [0.058823529411764705,0.058823529411764705,0.058823529411764705], + [0.06274509803921569,0.06274509803921569,0.06274509803921569], + [0.06666666666666667,0.06666666666666667,0.06666666666666667], + [0.07058823529411765,0.07058823529411765,0.07058823529411765], + [0.07450980392156863,0.07450980392156863,0.07450980392156863], + [0.0784313725490196,0.0784313725490196,0.0784313725490196], + [0.08235294117647059,0.08235294117647059,0.08235294117647059], + [0.08627450980392157,0.08627450980392157,0.08627450980392157], + [0.09019607843137255,0.09019607843137255,0.09019607843137255], + [0.09411764705882353,0.09411764705882353,0.09411764705882353], + [0.09803921568627451,0.09803921568627451,0.09803921568627451], + [0.10196078431372549,0.10196078431372549,0.10196078431372549], + [0.10588235294117647,0.10588235294117647,0.10588235294117647], + [0.10980392156862745,0.10980392156862745,0.10980392156862745], + [0.11372549019607843,0.11372549019607843,0.11372549019607843], + [0.11764705882352941,0.11764705882352941,0.11764705882352941], + [0.12156862745098039,0.12156862745098039,0.12156862745098039], + [0.12549019607843137,0.12549019607843137,0.12549019607843137], + [0.12941176470588234,0.12941176470588234,0.12941176470588234], + [0.13333333333333333,0.13333333333333333,0.13333333333333333], + [0.13725490196078433,0.13725490196078433,0.13725490196078433], + [0.1411764705882353,0.1411764705882353,0.1411764705882353], + [0.14509803921568626,0.14509803921568626,0.14509803921568626], + [0.14901960784313725,0.14901960784313725,0.14901960784313725], + [0.15294117647058825,0.15294117647058825,0.15294117647058825], + [0.1568627450980392,0.1568627450980392,0.1568627450980392], + [0.16078431372549018,0.16078431372549018,0.16078431372549018], + [0.16470588235294117,0.16470588235294117,0.16470588235294117], + [0.16862745098039217,0.16862745098039217,0.16862745098039217], + [0.17254901960784313,0.17254901960784313,0.17254901960784313], + [0.1764705882352941,0.1764705882352941,0.1764705882352941], + [0.1803921568627451,0.1803921568627451,0.1803921568627451], + [0.1843137254901961,0.1843137254901961,0.1843137254901961], + [0.18823529411764706,0.18823529411764706,0.18823529411764706], + [0.19215686274509802,0.19215686274509802,0.19215686274509802], + [0.19607843137254902,0.19607843137254902,0.19607843137254902], + [0.2,0.2,0.2], + [0.20392156862745098,0.20392156862745098,0.20392156862745098], + [0.20784313725490194,0.20784313725490194,0.20784313725490194], + [0.21176470588235294,0.21176470588235294,0.21176470588235294], + [0.21568627450980393,0.21568627450980393,0.21568627450980393], + [0.2196078431372549,0.2196078431372549,0.2196078431372549], + [0.22352941176470587,0.22352941176470587,0.22352941176470587], + [0.22745098039215686,0.22745098039215686,0.22745098039215686], + [0.23137254901960785,0.23137254901960785,0.23137254901960785], + [0.23529411764705882,0.23529411764705882,0.23529411764705882], + [0.2392156862745098,0.2392156862745098,0.2392156862745098], + [0.24313725490196078,0.24313725490196078,0.24313725490196078], + [0.24705882352941178,0.24705882352941178,0.24705882352941178], + [0.25098039215686274,0.25098039215686274,0.25098039215686274], + [0.2549019607843137,0.2549019607843137,0.2549019607843137], + [0.2588235294117647,0.2588235294117647,0.2588235294117647], + [0.2627450980392157,0.2627450980392157,0.2627450980392157], + [0.26666666666666666,0.26666666666666666,0.26666666666666666], + [0.27058823529411763,0.27058823529411763,0.27058823529411763], + [0.27450980392156865,0.27450980392156865,0.27450980392156865], + [0.2784313725490196,0.2784313725490196,0.2784313725490196], + [0.2823529411764706,0.2823529411764706,0.2823529411764706], + [0.28627450980392155,0.28627450980392155,0.28627450980392155], + [0.2901960784313725,0.2901960784313725,0.2901960784313725], + [0.29411764705882354,0.29411764705882354,0.29411764705882354], + [0.2980392156862745,0.2980392156862745,0.2980392156862745], + [0.30196078431372547,0.30196078431372547,0.30196078431372547], + [0.3058823529411765,0.3058823529411765,0.3058823529411765], + [0.30980392156862746,0.30980392156862746,0.30980392156862746], + [0.3137254901960784,0.3137254901960784,0.3137254901960784], + [0.3176470588235294,0.3176470588235294,0.3176470588235294], + [0.32156862745098036,0.32156862745098036,0.32156862745098036], + [0.3254901960784314,0.3254901960784314,0.3254901960784314], + [0.32941176470588235,0.32941176470588235,0.32941176470588235], + [0.3333333333333333,0.3333333333333333,0.3333333333333333], + [0.33725490196078434,0.33725490196078434,0.33725490196078434], + [0.3411764705882353,0.3411764705882353,0.3411764705882353], + [0.34509803921568627,0.34509803921568627,0.34509803921568627], + [0.34901960784313724,0.34901960784313724,0.34901960784313724], + [0.3529411764705882,0.3529411764705882,0.3529411764705882], + [0.3568627450980392,0.3568627450980392,0.3568627450980392], + [0.3607843137254902,0.3607843137254902,0.3607843137254902], + [0.36470588235294116,0.36470588235294116,0.36470588235294116], + [0.3686274509803922,0.3686274509803922,0.3686274509803922], + [0.37254901960784315,0.37254901960784315,0.37254901960784315], + [0.3764705882352941,0.3764705882352941,0.3764705882352941], + [0.3803921568627451,0.3803921568627451,0.3803921568627451], + [0.38431372549019605,0.38431372549019605,0.38431372549019605], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.39215686274509803,0.39215686274509803,0.39215686274509803], + [0.396078431372549,0.396078431372549,0.396078431372549], + [0.4,0.4,0.4], + [0.403921568627451,0.403921568627451,0.403921568627451], + [0.40784313725490196,0.40784313725490196,0.40784313725490196], + [0.4117647058823529,0.4117647058823529,0.4117647058823529], + [0.4156862745098039,0.4156862745098039,0.4156862745098039], + [0.4196078431372549,0.4196078431372549,0.4196078431372549], + [0.4235294117647059,0.4235294117647059,0.4235294117647059], + [0.42745098039215684,0.42745098039215684,0.42745098039215684], + [0.43137254901960786,0.43137254901960786,0.43137254901960786], + [0.43529411764705883,0.43529411764705883,0.43529411764705883], + [0.4392156862745098,0.4392156862745098,0.4392156862745098], + [0.44313725490196076,0.44313725490196076,0.44313725490196076], + [0.44705882352941173,0.44705882352941173,0.44705882352941173], + [0.45098039215686275,0.45098039215686275,0.45098039215686275], + [0.4549019607843137,0.4549019607843137,0.4549019607843137], + [0.4588235294117647,0.4588235294117647,0.4588235294117647], + [0.4627450980392157,0.4627450980392157,0.4627450980392157], + [0.4666666666666667,0.4666666666666667,0.4666666666666667], + [0.47058823529411764,0.47058823529411764,0.47058823529411764], + [0.4745098039215686,0.4745098039215686,0.4745098039215686], + [0.4784313725490196,0.4784313725490196,0.4784313725490196], + [0.4823529411764706,0.4823529411764706,0.4823529411764706], + [0.48627450980392156,0.48627450980392156,0.48627450980392156], + [0.49019607843137253,0.49019607843137253,0.49019607843137253], + [0.49411764705882355,0.49411764705882355,0.49411764705882355], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.5019607843137255,0.5019607843137255,0.5019607843137255], + [0.5058823529411764,0.5058823529411764,0.5058823529411764], + [0.5098039215686274,0.5098039215686274,0.5098039215686274], + [0.5137254901960784,0.5137254901960784,0.5137254901960784], + [0.5176470588235293,0.5176470588235293,0.5176470588235293], + [0.5215686274509804,0.5215686274509804,0.5215686274509804], + [0.5254901960784314,0.5254901960784314,0.5254901960784314], + [0.5294117647058824,0.5294117647058824,0.5294117647058824], + [0.5333333333333333,0.5333333333333333,0.5333333333333333], + [0.5372549019607843,0.5372549019607843,0.5372549019607843], + [0.5411764705882353,0.5411764705882353,0.5411764705882353], + [0.5450980392156862,0.5450980392156862,0.5450980392156862], + [0.5490196078431373,0.5490196078431373,0.5490196078431373], + [0.5529411764705883,0.5529411764705883,0.5529411764705883], + [0.5568627450980392,0.5568627450980392,0.5568627450980392], + [0.5607843137254902,0.5607843137254902,0.5607843137254902], + [0.5647058823529412,0.5647058823529412,0.5647058823529412], + [0.5686274509803921,0.5686274509803921,0.5686274509803921], + [0.5725490196078431,0.5725490196078431,0.5725490196078431], + [0.5764705882352941,0.5764705882352941,0.5764705882352941], + [0.580392156862745,0.580392156862745,0.580392156862745], + [0.5843137254901961,0.5843137254901961,0.5843137254901961], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.592156862745098,0.592156862745098,0.592156862745098], + [0.596078431372549,0.596078431372549,0.596078431372549], + [0.6,0.6,0.6], + [0.6039215686274509,0.6039215686274509,0.6039215686274509], + [0.6078431372549019,0.6078431372549019,0.6078431372549019], + [0.611764705882353,0.611764705882353,0.611764705882353], + [0.615686274509804,0.615686274509804,0.615686274509804], + [0.6196078431372549,0.6196078431372549,0.6196078431372549], + [0.6235294117647059,0.6235294117647059,0.6235294117647059], + [0.6274509803921569,0.6274509803921569,0.6274509803921569], + [0.6313725490196078,0.6313725490196078,0.6313725490196078], + [0.6352941176470588,0.6352941176470588,0.6352941176470588], + [0.6392156862745098,0.6392156862745098,0.6392156862745098], + [0.6431372549019607,0.6431372549019607,0.6431372549019607], + [0.6470588235294118,0.6470588235294118,0.6470588235294118], + [0.6509803921568628,0.6509803921568628,0.6509803921568628], + [0.6549019607843137,0.6549019607843137,0.6549019607843137], + [0.6588235294117647,0.6588235294117647,0.6588235294117647], + [0.6627450980392157,0.6627450980392157,0.6627450980392157], + [0.6666666666666666,0.6666666666666666,0.6666666666666666], + [0.6705882352941176,0.6705882352941176,0.6705882352941176], + [0.6745098039215687,0.6745098039215687,0.6745098039215687], + [0.6784313725490196,0.6784313725490196,0.6784313725490196], + [0.6823529411764706,0.6823529411764706,0.6823529411764706], + [0.6862745098039216,0.6862745098039216,0.6862745098039216], + [0.6901960784313725,0.6901960784313725,0.6901960784313725], + [0.6941176470588235,0.6941176470588235,0.6941176470588235], + [0.6980392156862745,0.6980392156862745,0.6980392156862745], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7058823529411764,0.7058823529411764,0.7058823529411764], + [0.7098039215686275,0.7098039215686275,0.7098039215686275], + [0.7137254901960784,0.7137254901960784,0.7137254901960784], + [0.7176470588235294,0.7176470588235294,0.7176470588235294], + [0.7215686274509804,0.7215686274509804,0.7215686274509804], + [0.7254901960784313,0.7254901960784313,0.7254901960784313], + [0.7294117647058823,0.7294117647058823,0.7294117647058823], + [0.7333333333333333,0.7333333333333333,0.7333333333333333], + [0.7372549019607844,0.7372549019607844,0.7372549019607844], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7450980392156863,0.7450980392156863,0.7450980392156863], + [0.7490196078431373,0.7490196078431373,0.7490196078431373], + [0.7529411764705882,0.7529411764705882,0.7529411764705882], + [0.7568627450980392,0.7568627450980392,0.7568627450980392], + [0.7607843137254902,0.7607843137254902,0.7607843137254902], + [0.7647058823529411,0.7647058823529411,0.7647058823529411], + [0.7686274509803921,0.7686274509803921,0.7686274509803921], + [0.7725490196078432,0.7725490196078432,0.7725490196078432], + [0.7764705882352941,0.7764705882352941,0.7764705882352941], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7843137254901961,0.7843137254901961,0.7843137254901961], + [0.788235294117647,0.788235294117647,0.788235294117647], + [0.792156862745098,0.792156862745098,0.792156862745098], + [0.796078431372549,0.796078431372549,0.796078431372549], + [0.8,0.8,0.8], + [0.803921568627451,0.803921568627451,0.803921568627451], + [0.807843137254902,0.807843137254902,0.807843137254902], + [0.8117647058823529,0.8117647058823529,0.8117647058823529], + [0.8156862745098039,0.8156862745098039,0.8156862745098039], + [0.8196078431372549,0.8196078431372549,0.8196078431372549], + [0.8235294117647058,0.8235294117647058,0.8235294117647058], + [0.8274509803921568,0.8274509803921568,0.8274509803921568], + [0.8313725490196078,0.8313725490196078,0.8313725490196078], + [0.8352941176470589,0.8352941176470589,0.8352941176470589], + [0.8392156862745098,0.8392156862745098,0.8392156862745098], + [0.8431372549019608,0.8431372549019608,0.8431372549019608], + [0.8470588235294118,0.8470588235294118,0.8470588235294118], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8549019607843137,0.8549019607843137,0.8549019607843137], + [0.8588235294117647,0.8588235294117647,0.8588235294117647], + [0.8627450980392157,0.8627450980392157,0.8627450980392157], + [0.8666666666666667,0.8666666666666667,0.8666666666666667], + [0.8705882352941177,0.8705882352941177,0.8705882352941177], + [0.8745098039215686,0.8745098039215686,0.8745098039215686], + [0.8784313725490196,0.8784313725490196,0.8784313725490196], + [0.8823529411764706,0.8823529411764706,0.8823529411764706], + [0.8862745098039215,0.8862745098039215,0.8862745098039215], + [0.8901960784313725,0.8901960784313725,0.8901960784313725], + [0.8941176470588235,0.8941176470588235,0.8941176470588235], + [0.8980392156862745,0.8980392156862745,0.8980392156862745], + [0.9019607843137255,0.9019607843137255,0.9019607843137255], + [0.9058823529411765,0.9058823529411765,0.9058823529411765], + [0.9098039215686274,0.9098039215686274,0.9098039215686274], + [0.9137254901960784,0.9137254901960784,0.9137254901960784], + [0.9176470588235294,0.9176470588235294,0.9176470588235294], + [0.9215686274509803,0.9215686274509803,0.9215686274509803], + [0.9254901960784314,0.9254901960784314,0.9254901960784314], + [0.9294117647058824,0.9294117647058824,0.9294117647058824], + [0.9333333333333333,0.9333333333333333,0.9333333333333333], + [0.9372549019607843,0.9372549019607843,0.9372549019607843], + [0.9411764705882353,0.9411764705882353,0.9411764705882353], + [0.9450980392156862,0.9450980392156862,0.9450980392156862], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9529411764705882,0.9529411764705882,0.9529411764705882], + [0.9568627450980391,0.9568627450980391,0.9568627450980391], + [0.9607843137254902,0.9607843137254902,0.9607843137254902], + [0.9647058823529412,0.9647058823529412,0.9647058823529412], + [0.9686274509803922,0.9686274509803922,0.9686274509803922], + [0.9725490196078431,0.9725490196078431,0.9725490196078431], + [0.9764705882352941,0.9764705882352941,0.9764705882352941], + [0.9803921568627451,0.9803921568627451,0.9803921568627451], + [0.984313725490196,0.984313725490196,0.984313725490196], + [0.9882352941176471,0.9882352941176471,0.9882352941176471], + [0.9921568627450981,0.9921568627450981,0.9921568627450981], + [0.996078431372549,0.996078431372549,0.996078431372549], + [1.0,1.0,1.0] ], + gist_gray_r: [ + [1.0,1.0,1.0], + [0.996078431372549,0.996078431372549,0.996078431372549], + [0.9921568627450981,0.9921568627450981,0.9921568627450981], + [0.9882352941176471,0.9882352941176471,0.9882352941176471], + [0.9843137254901961,0.9843137254901961,0.9843137254901961], + [0.9803921568627451,0.9803921568627451,0.9803921568627451], + [0.9764705882352941,0.9764705882352941,0.9764705882352941], + [0.9725490196078431,0.9725490196078431,0.9725490196078431], + [0.9686274509803922,0.9686274509803922,0.9686274509803922], + [0.9647058823529412,0.9647058823529412,0.9647058823529412], + [0.9607843137254902,0.9607843137254902,0.9607843137254902], + [0.9568627450980393,0.9568627450980393,0.9568627450980393], + [0.9529411764705882,0.9529411764705882,0.9529411764705882], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9450980392156862,0.9450980392156862,0.9450980392156862], + [0.9411764705882353,0.9411764705882353,0.9411764705882353], + [0.9372549019607843,0.9372549019607843,0.9372549019607843], + [0.9333333333333333,0.9333333333333333,0.9333333333333333], + [0.9294117647058824,0.9294117647058824,0.9294117647058824], + [0.9254901960784314,0.9254901960784314,0.9254901960784314], + [0.9215686274509804,0.9215686274509804,0.9215686274509804], + [0.9176470588235294,0.9176470588235294,0.9176470588235294], + [0.9137254901960784,0.9137254901960784,0.9137254901960784], + [0.9098039215686274,0.9098039215686274,0.9098039215686274], + [0.9058823529411765,0.9058823529411765,0.9058823529411765], + [0.9019607843137255,0.9019607843137255,0.9019607843137255], + [0.8980392156862745,0.8980392156862745,0.8980392156862745], + [0.8941176470588236,0.8941176470588236,0.8941176470588236], + [0.8901960784313725,0.8901960784313725,0.8901960784313725], + [0.8862745098039215,0.8862745098039215,0.8862745098039215], + [0.8823529411764706,0.8823529411764706,0.8823529411764706], + [0.8784313725490196,0.8784313725490196,0.8784313725490196], + [0.8745098039215686,0.8745098039215686,0.8745098039215686], + [0.8705882352941177,0.8705882352941177,0.8705882352941177], + [0.8666666666666667,0.8666666666666667,0.8666666666666667], + [0.8627450980392157,0.8627450980392157,0.8627450980392157], + [0.8588235294117648,0.8588235294117648,0.8588235294117648], + [0.8549019607843138,0.8549019607843138,0.8549019607843138], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8470588235294118,0.8470588235294118,0.8470588235294118], + [0.8431372549019608,0.8431372549019608,0.8431372549019608], + [0.8392156862745098,0.8392156862745098,0.8392156862745098], + [0.8352941176470589,0.8352941176470589,0.8352941176470589], + [0.8313725490196078,0.8313725490196078,0.8313725490196078], + [0.8274509803921568,0.8274509803921568,0.8274509803921568], + [0.8235294117647058,0.8235294117647058,0.8235294117647058], + [0.8196078431372549,0.8196078431372549,0.8196078431372549], + [0.8156862745098039,0.8156862745098039,0.8156862745098039], + [0.8117647058823529,0.8117647058823529,0.8117647058823529], + [0.807843137254902,0.807843137254902,0.807843137254902], + [0.803921568627451,0.803921568627451,0.803921568627451], + [0.8,0.8,0.8], + [0.7960784313725491,0.7960784313725491,0.7960784313725491], + [0.7921568627450981,0.7921568627450981,0.7921568627450981], + [0.788235294117647,0.788235294117647,0.788235294117647], + [0.7843137254901961,0.7843137254901961,0.7843137254901961], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7764705882352941,0.7764705882352941,0.7764705882352941], + [0.7725490196078432,0.7725490196078432,0.7725490196078432], + [0.7686274509803921,0.7686274509803921,0.7686274509803921], + [0.7647058823529411,0.7647058823529411,0.7647058823529411], + [0.7607843137254902,0.7607843137254902,0.7607843137254902], + [0.7568627450980392,0.7568627450980392,0.7568627450980392], + [0.7529411764705882,0.7529411764705882,0.7529411764705882], + [0.7490196078431373,0.7490196078431373,0.7490196078431373], + [0.7450980392156863,0.7450980392156863,0.7450980392156863], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7372549019607844,0.7372549019607844,0.7372549019607844], + [0.7333333333333334,0.7333333333333334,0.7333333333333334], + [0.7294117647058824,0.7294117647058824,0.7294117647058824], + [0.7254901960784313,0.7254901960784313,0.7254901960784313], + [0.7215686274509804,0.7215686274509804,0.7215686274509804], + [0.7176470588235294,0.7176470588235294,0.7176470588235294], + [0.7137254901960784,0.7137254901960784,0.7137254901960784], + [0.7098039215686275,0.7098039215686275,0.7098039215686275], + [0.7058823529411764,0.7058823529411764,0.7058823529411764], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.6980392156862745,0.6980392156862745,0.6980392156862745], + [0.6941176470588235,0.6941176470588235,0.6941176470588235], + [0.6901960784313725,0.6901960784313725,0.6901960784313725], + [0.6862745098039216,0.6862745098039216,0.6862745098039216], + [0.6823529411764706,0.6823529411764706,0.6823529411764706], + [0.6784313725490196,0.6784313725490196,0.6784313725490196], + [0.6745098039215687,0.6745098039215687,0.6745098039215687], + [0.6705882352941177,0.6705882352941177,0.6705882352941177], + [0.6666666666666667,0.6666666666666667,0.6666666666666667], + [0.6627450980392157,0.6627450980392157,0.6627450980392157], + [0.6588235294117647,0.6588235294117647,0.6588235294117647], + [0.6549019607843137,0.6549019607843137,0.6549019607843137], + [0.6509803921568628,0.6509803921568628,0.6509803921568628], + [0.6470588235294118,0.6470588235294118,0.6470588235294118], + [0.6431372549019607,0.6431372549019607,0.6431372549019607], + [0.6392156862745098,0.6392156862745098,0.6392156862745098], + [0.6352941176470588,0.6352941176470588,0.6352941176470588], + [0.6313725490196078,0.6313725490196078,0.6313725490196078], + [0.6274509803921569,0.6274509803921569,0.6274509803921569], + [0.6235294117647059,0.6235294117647059,0.6235294117647059], + [0.6196078431372549,0.6196078431372549,0.6196078431372549], + [0.615686274509804,0.615686274509804,0.615686274509804], + [0.611764705882353,0.611764705882353,0.611764705882353], + [0.607843137254902,0.607843137254902,0.607843137254902], + [0.603921568627451,0.603921568627451,0.603921568627451], + [0.6,0.6,0.6], + [0.596078431372549,0.596078431372549,0.596078431372549], + [0.592156862745098,0.592156862745098,0.592156862745098], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5843137254901961,0.5843137254901961,0.5843137254901961], + [0.580392156862745,0.580392156862745,0.580392156862745], + [0.5764705882352941,0.5764705882352941,0.5764705882352941], + [0.5725490196078431,0.5725490196078431,0.5725490196078431], + [0.5686274509803921,0.5686274509803921,0.5686274509803921], + [0.5647058823529412,0.5647058823529412,0.5647058823529412], + [0.5607843137254902,0.5607843137254902,0.5607843137254902], + [0.5568627450980392,0.5568627450980392,0.5568627450980392], + [0.5529411764705883,0.5529411764705883,0.5529411764705883], + [0.5490196078431373,0.5490196078431373,0.5490196078431373], + [0.5450980392156863,0.5450980392156863,0.5450980392156863], + [0.5411764705882354,0.5411764705882354,0.5411764705882354], + [0.5372549019607843,0.5372549019607843,0.5372549019607843], + [0.5333333333333333,0.5333333333333333,0.5333333333333333], + [0.5294117647058824,0.5294117647058824,0.5294117647058824], + [0.5254901960784314,0.5254901960784314,0.5254901960784314], + [0.5215686274509804,0.5215686274509804,0.5215686274509804], + [0.5176470588235293,0.5176470588235293,0.5176470588235293], + [0.5137254901960784,0.5137254901960784,0.5137254901960784], + [0.5098039215686274,0.5098039215686274,0.5098039215686274], + [0.5058823529411764,0.5058823529411764,0.5058823529411764], + [0.5019607843137255,0.5019607843137255,0.5019607843137255], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.49411764705882355,0.49411764705882355,0.49411764705882355], + [0.4901960784313726,0.4901960784313726,0.4901960784313726], + [0.4862745098039216,0.4862745098039216,0.4862745098039216], + [0.48235294117647065,0.48235294117647065,0.48235294117647065], + [0.4784313725490196,0.4784313725490196,0.4784313725490196], + [0.4745098039215686,0.4745098039215686,0.4745098039215686], + [0.47058823529411764,0.47058823529411764,0.47058823529411764], + [0.4666666666666667,0.4666666666666667,0.4666666666666667], + [0.4627450980392157,0.4627450980392157,0.4627450980392157], + [0.45882352941176474,0.45882352941176474,0.45882352941176474], + [0.4549019607843138,0.4549019607843138,0.4549019607843138], + [0.4509803921568627,0.4509803921568627,0.4509803921568627], + [0.44705882352941173,0.44705882352941173,0.44705882352941173], + [0.44313725490196076,0.44313725490196076,0.44313725490196076], + [0.4392156862745098,0.4392156862745098,0.4392156862745098], + [0.43529411764705883,0.43529411764705883,0.43529411764705883], + [0.43137254901960786,0.43137254901960786,0.43137254901960786], + [0.4274509803921569,0.4274509803921569,0.4274509803921569], + [0.42352941176470593,0.42352941176470593,0.42352941176470593], + [0.41960784313725497,0.41960784313725497,0.41960784313725497], + [0.4156862745098039,0.4156862745098039,0.4156862745098039], + [0.4117647058823529,0.4117647058823529,0.4117647058823529], + [0.40784313725490196,0.40784313725490196,0.40784313725490196], + [0.403921568627451,0.403921568627451,0.403921568627451], + [0.4,0.4,0.4], + [0.39607843137254906,0.39607843137254906,0.39607843137254906], + [0.3921568627450981,0.3921568627450981,0.3921568627450981], + [0.388235294117647,0.388235294117647,0.388235294117647], + [0.38431372549019605,0.38431372549019605,0.38431372549019605], + [0.3803921568627451,0.3803921568627451,0.3803921568627451], + [0.3764705882352941,0.3764705882352941,0.3764705882352941], + [0.37254901960784315,0.37254901960784315,0.37254901960784315], + [0.3686274509803922,0.3686274509803922,0.3686274509803922], + [0.3647058823529412,0.3647058823529412,0.3647058823529412], + [0.36078431372549025,0.36078431372549025,0.36078431372549025], + [0.3568627450980393,0.3568627450980393,0.3568627450980393], + [0.3529411764705882,0.3529411764705882,0.3529411764705882], + [0.34901960784313724,0.34901960784313724,0.34901960784313724], + [0.34509803921568627,0.34509803921568627,0.34509803921568627], + [0.3411764705882353,0.3411764705882353,0.3411764705882353], + [0.33725490196078434,0.33725490196078434,0.33725490196078434], + [0.33333333333333337,0.33333333333333337,0.33333333333333337], + [0.3294117647058824,0.3294117647058824,0.3294117647058824], + [0.3254901960784313,0.3254901960784313,0.3254901960784313], + [0.32156862745098036,0.32156862745098036,0.32156862745098036], + [0.3176470588235294,0.3176470588235294,0.3176470588235294], + [0.3137254901960784,0.3137254901960784,0.3137254901960784], + [0.30980392156862746,0.30980392156862746,0.30980392156862746], + [0.3058823529411765,0.3058823529411765,0.3058823529411765], + [0.3019607843137255,0.3019607843137255,0.3019607843137255], + [0.29803921568627456,0.29803921568627456,0.29803921568627456], + [0.2941176470588236,0.2941176470588236,0.2941176470588236], + [0.2901960784313725,0.2901960784313725,0.2901960784313725], + [0.28627450980392155,0.28627450980392155,0.28627450980392155], + [0.2823529411764706,0.2823529411764706,0.2823529411764706], + [0.2784313725490196,0.2784313725490196,0.2784313725490196], + [0.27450980392156865,0.27450980392156865,0.27450980392156865], + [0.2705882352941177,0.2705882352941177,0.2705882352941177], + [0.2666666666666667,0.2666666666666667,0.2666666666666667], + [0.26274509803921564,0.26274509803921564,0.26274509803921564], + [0.2588235294117647,0.2588235294117647,0.2588235294117647], + [0.2549019607843137,0.2549019607843137,0.2549019607843137], + [0.25098039215686274,0.25098039215686274,0.25098039215686274], + [0.24705882352941178,0.24705882352941178,0.24705882352941178], + [0.2431372549019608,0.2431372549019608,0.2431372549019608], + [0.23921568627450984,0.23921568627450984,0.23921568627450984], + [0.23529411764705888,0.23529411764705888,0.23529411764705888], + [0.2313725490196079,0.2313725490196079,0.2313725490196079], + [0.22745098039215683,0.22745098039215683,0.22745098039215683], + [0.22352941176470587,0.22352941176470587,0.22352941176470587], + [0.2196078431372549,0.2196078431372549,0.2196078431372549], + [0.21568627450980393,0.21568627450980393,0.21568627450980393], + [0.21176470588235297,0.21176470588235297,0.21176470588235297], + [0.207843137254902,0.207843137254902,0.207843137254902], + [0.20392156862745103,0.20392156862745103,0.20392156862745103], + [0.19999999999999996,0.19999999999999996,0.19999999999999996], + [0.196078431372549,0.196078431372549,0.196078431372549], + [0.19215686274509802,0.19215686274509802,0.19215686274509802], + [0.18823529411764706,0.18823529411764706,0.18823529411764706], + [0.1843137254901961,0.1843137254901961,0.1843137254901961], + [0.18039215686274512,0.18039215686274512,0.18039215686274512], + [0.17647058823529416,0.17647058823529416,0.17647058823529416], + [0.1725490196078432,0.1725490196078432,0.1725490196078432], + [0.16862745098039222,0.16862745098039222,0.16862745098039222], + [0.16470588235294115,0.16470588235294115,0.16470588235294115], + [0.16078431372549018,0.16078431372549018,0.16078431372549018], + [0.1568627450980392,0.1568627450980392,0.1568627450980392], + [0.15294117647058825,0.15294117647058825,0.15294117647058825], + [0.14901960784313728,0.14901960784313728,0.14901960784313728], + [0.14509803921568631,0.14509803921568631,0.14509803921568631], + [0.14117647058823535,0.14117647058823535,0.14117647058823535], + [0.13725490196078427,0.13725490196078427,0.13725490196078427], + [0.1333333333333333,0.1333333333333333,0.1333333333333333], + [0.12941176470588234,0.12941176470588234,0.12941176470588234], + [0.12549019607843137,0.12549019607843137,0.12549019607843137], + [0.1215686274509804,0.1215686274509804,0.1215686274509804], + [0.11764705882352944,0.11764705882352944,0.11764705882352944], + [0.11372549019607847,0.11372549019607847,0.11372549019607847], + [0.1098039215686275,0.1098039215686275,0.1098039215686275], + [0.10588235294117654,0.10588235294117654,0.10588235294117654], + [0.10196078431372546,0.10196078431372546,0.10196078431372546], + [0.0980392156862745,0.0980392156862745,0.0980392156862745], + [0.09411764705882353,0.09411764705882353,0.09411764705882353], + [0.09019607843137256,0.09019607843137256,0.09019607843137256], + [0.0862745098039216,0.0862745098039216,0.0862745098039216], + [0.08235294117647063,0.08235294117647063,0.08235294117647063], + [0.07843137254901966,0.07843137254901966,0.07843137254901966], + [0.07450980392156858,0.07450980392156858,0.07450980392156858], + [0.07058823529411762,0.07058823529411762,0.07058823529411762], + [0.06666666666666665,0.06666666666666665,0.06666666666666665], + [0.06274509803921569,0.06274509803921569,0.06274509803921569], + [0.05882352941176472,0.05882352941176472,0.05882352941176472], + [0.05490196078431375,0.05490196078431375,0.05490196078431375], + [0.050980392156862786,0.050980392156862786,0.050980392156862786], + [0.04705882352941182,0.04705882352941182,0.04705882352941182], + [0.04313725490196085,0.04313725490196085,0.04313725490196085], + [0.039215686274509776,0.039215686274509776,0.039215686274509776], + [0.03529411764705881,0.03529411764705881,0.03529411764705881], + [0.03137254901960784,0.03137254901960784,0.03137254901960784], + [0.027450980392156876,0.027450980392156876,0.027450980392156876], + [0.02352941176470591,0.02352941176470591,0.02352941176470591], + [0.019607843137254943,0.019607843137254943,0.019607843137254943], + [0.015686274509803977,0.015686274509803977,0.015686274509803977], + [0.0117647058823529,0.0117647058823529,0.0117647058823529], + [0.007843137254901933,0.007843137254901933,0.007843137254901933], + [0.0039215686274509665,0.0039215686274509665,0.0039215686274509665], + [0.0,0.0,0.0] ], + gist_heat: [ + [0.0,0.0,0.0], + [0.0058823529411764705,0.0,0.0], + [0.011764705882352941,0.0,0.0], + [0.01764705882352941,0.0,0.0], + [0.023529411764705882,0.0,0.0], + [0.029411764705882353,0.0,0.0], + [0.03529411764705882,0.0,0.0], + [0.041176470588235294,0.0,0.0], + [0.047058823529411764,0.0,0.0], + [0.052941176470588235,0.0,0.0], + [0.058823529411764705,0.0,0.0], + [0.06470588235294117,0.0,0.0], + [0.07058823529411765,0.0,0.0], + [0.07647058823529412,0.0,0.0], + [0.08235294117647059,0.0,0.0], + [0.08823529411764705,0.0,0.0], + [0.09411764705882353,0.0,0.0], + [0.1,0.0,0.0], + [0.10588235294117647,0.0,0.0], + [0.11176470588235293,0.0,0.0], + [0.11764705882352941,0.0,0.0], + [0.12352941176470589,0.0,0.0], + [0.12941176470588234,0.0,0.0], + [0.13529411764705881,0.0,0.0], + [0.1411764705882353,0.0,0.0], + [0.14705882352941177,0.0,0.0], + [0.15294117647058825,0.0,0.0], + [0.1588235294117647,0.0,0.0], + [0.16470588235294117,0.0,0.0], + [0.17058823529411765,0.0,0.0], + [0.1764705882352941,0.0,0.0], + [0.18235294117647058,0.0,0.0], + [0.18823529411764706,0.0,0.0], + [0.1941176470588235,0.0,0.0], + [0.2,0.0,0.0], + [0.2058823529411765,0.0,0.0], + [0.21176470588235294,0.0,0.0], + [0.2176470588235294,0.0,0.0], + [0.22352941176470587,0.0,0.0], + [0.22941176470588237,0.0,0.0], + [0.23529411764705882,0.0,0.0], + [0.24117647058823527,0.0,0.0], + [0.24705882352941178,0.0,0.0], + [0.2529411764705882,0.0,0.0], + [0.2588235294117647,0.0,0.0], + [0.2647058823529411,0.0,0.0], + [0.27058823529411763,0.0,0.0], + [0.27647058823529413,0.0,0.0], + [0.2823529411764706,0.0,0.0], + [0.28823529411764703,0.0,0.0], + [0.29411764705882354,0.0,0.0], + [0.30000000000000004,0.0,0.0], + [0.3058823529411765,0.0,0.0], + [0.31176470588235294,0.0,0.0], + [0.3176470588235294,0.0,0.0], + [0.3235294117647059,0.0,0.0], + [0.32941176470588235,0.0,0.0], + [0.3352941176470588,0.0,0.0], + [0.3411764705882353,0.0,0.0], + [0.34705882352941175,0.0,0.0], + [0.3529411764705882,0.0,0.0], + [0.35882352941176465,0.0,0.0], + [0.36470588235294116,0.0,0.0], + [0.37058823529411766,0.0,0.0], + [0.3764705882352941,0.0,0.0], + [0.38235294117647056,0.0,0.0], + [0.388235294117647,0.0,0.0], + [0.3941176470588236,0.0,0.0], + [0.4,0.0,0.0], + [0.40588235294117647,0.0,0.0], + [0.411764705882353,0.0,0.0], + [0.4176470588235294,0.0,0.0], + [0.4235294117647059,0.0,0.0], + [0.4294117647058823,0.0,0.0], + [0.4352941176470588,0.0,0.0], + [0.4411764705882353,0.0,0.0], + [0.44705882352941173,0.0,0.0], + [0.4529411764705882,0.0,0.0], + [0.45882352941176474,0.0,0.0], + [0.4647058823529412,0.0,0.0], + [0.47058823529411764,0.0,0.0], + [0.4764705882352941,0.0,0.0], + [0.48235294117647054,0.0,0.0], + [0.4882352941176471,0.0,0.0], + [0.49411764705882355,0.0,0.0], + [0.5,0.0,0.0], + [0.5058823529411764,0.0,0.0], + [0.5117647058823529,0.0,0.0], + [0.5176470588235293,0.0,0.0], + [0.5235294117647058,0.0,0.0], + [0.5294117647058822,0.0,0.0], + [0.5352941176470588,0.0,0.0], + [0.5411764705882353,0.0,0.0], + [0.5470588235294117,0.0,0.0], + [0.5529411764705883,0.0,0.0], + [0.5588235294117647,0.0,0.0], + [0.5647058823529412,0.0,0.0], + [0.5705882352941176,0.0,0.0], + [0.5764705882352941,0.0,0.0], + [0.5823529411764706,0.0,0.0], + [0.5882352941176471,0.0,0.0], + [0.5941176470588235,0.0,0.0], + [0.6000000000000001,0.0,0.0], + [0.6058823529411765,0.0,0.0], + [0.611764705882353,0.0,0.0], + [0.6176470588235294,0.0,0.0], + [0.6235294117647059,0.0,0.0], + [0.6294117647058823,0.0,0.0], + [0.6352941176470588,0.0,0.0], + [0.6411764705882352,0.0,0.0], + [0.6470588235294118,0.0,0.0], + [0.6529411764705882,0.0,0.0], + [0.6588235294117647,0.0,0.0], + [0.6647058823529411,0.0,0.0], + [0.6705882352941176,0.0,0.0], + [0.6764705882352942,0.0,0.0], + [0.6823529411764706,0.0,0.0], + [0.6882352941176471,0.0,0.0], + [0.6941176470588235,0.0,0.0], + [0.7,0.0,0.0], + [0.7058823529411764,0.0,0.0], + [0.7117647058823529,0.0,0.0], + [0.7176470588235293,0.0,0.0], + [0.7235294117647059,0.0,0.0], + [0.7294117647058823,0.0,0.0], + [0.7352941176470588,0.0,0.0], + [0.7411764705882353,0.0,0.0], + [0.7470588235294118,0.0,0.0], + [0.7529411764705882,0.0039215686274509665,0.0], + [0.7588235294117647,0.0117647058823529,0.0], + [0.7647058823529411,0.019607843137254832,0.0], + [0.7705882352941176,0.027450980392156765,0.0], + [0.776470588235294,0.0352941176470587,0.0], + [0.7823529411764707,0.04313725490196085,0.0], + [0.7882352941176471,0.050980392156862786,0.0], + [0.7941176470588236,0.05882352941176472,0.0], + [0.8,0.06666666666666665,0.0], + [0.8058823529411765,0.07450980392156858,0.0], + [0.8117647058823529,0.08235294117647052,0.0], + [0.8176470588235294,0.09019607843137245,0.0], + [0.823529411764706,0.0980392156862746,0.0], + [0.8294117647058824,0.10588235294117654,0.0], + [0.8352941176470589,0.11372549019607847,0.0], + [0.8411764705882353,0.1215686274509804,0.0], + [0.8470588235294118,0.12941176470588234,0.0], + [0.8529411764705882,0.13725490196078427,0.0], + [0.8588235294117647,0.1450980392156862,0.0], + [0.8647058823529411,0.15294117647058814,0.0], + [0.8705882352941176,0.16078431372549007,0.0], + [0.8764705882352941,0.16862745098039222,0.0], + [0.8823529411764706,0.17647058823529416,0.0], + [0.888235294117647,0.1843137254901961,0.0], + [0.8941176470588235,0.19215686274509802,0.0], + [0.8999999999999999,0.19999999999999996,0.0], + [0.9058823529411764,0.2078431372549019,0.0], + [0.9117647058823528,0.21568627450980382,0.0], + [0.9176470588235295,0.22352941176470598,0.0], + [0.9235294117647059,0.2313725490196079,0.0], + [0.9294117647058824,0.23921568627450984,0.0], + [0.9352941176470588,0.24705882352941178,0.0], + [0.9411764705882353,0.2549019607843137,0.0], + [0.9470588235294117,0.26274509803921564,0.0], + [0.9529411764705882,0.2705882352941176,0.0], + [0.9588235294117646,0.2784313725490195,0.0], + [0.9647058823529411,0.28627450980392144,0.0], + [0.9705882352941178,0.2941176470588236,0.0], + [0.9764705882352942,0.3019607843137255,0.0], + [0.9823529411764707,0.30980392156862746,0.0], + [0.9882352941176471,0.3176470588235294,0.0], + [0.9941176470588236,0.3254901960784313,0.0], + [1.0,0.33333333333333326,0.0], + [1.0,0.3411764705882352,0.0], + [1.0,0.34901960784313735,0.0], + [1.0,0.3568627450980393,0.0], + [1.0,0.3647058823529412,0.0], + [1.0,0.37254901960784315,0.0], + [1.0,0.3803921568627451,0.0], + [1.0,0.388235294117647,0.0], + [1.0,0.39607843137254894,0.0], + [1.0,0.4039215686274509,0.0], + [1.0,0.4117647058823528,0.0], + [1.0,0.41960784313725497,0.0], + [1.0,0.4274509803921569,0.0], + [1.0,0.43529411764705883,0.0], + [1.0,0.44313725490196076,0.0], + [1.0,0.4509803921568627,0.0], + [1.0,0.45882352941176463,0.0], + [1.0,0.46666666666666656,0.0], + [1.0,0.4745098039215687,0.0], + [1.0,0.48235294117647065,0.0], + [1.0,0.4901960784313726,0.0], + [1.0,0.4980392156862745,0.0], + [1.0,0.5058823529411764,0.0117647058823529], + [1.0,0.5137254901960784,0.027450980392156765], + [1.0,0.5215686274509803,0.04313725490196063], + [1.0,0.5294117647058822,0.0588235294117645], + [1.0,0.5372549019607842,0.07450980392156836], + [1.0,0.5450980392156863,0.09019607843137267], + [1.0,0.5529411764705883,0.10588235294117654], + [1.0,0.5607843137254902,0.1215686274509804], + [1.0,0.5686274509803921,0.13725490196078427], + [1.0,0.5764705882352941,0.15294117647058814], + [1.0,0.584313725490196,0.168627450980392], + [1.0,0.5921568627450979,0.18431372549019587], + [1.0,0.6000000000000001,0.20000000000000018], + [1.0,0.607843137254902,0.21568627450980404], + [1.0,0.615686274509804,0.2313725490196079], + [1.0,0.6235294117647059,0.24705882352941178], + [1.0,0.6313725490196078,0.26274509803921564], + [1.0,0.6392156862745098,0.2784313725490195], + [1.0,0.6470588235294117,0.2941176470588234], + [1.0,0.6549019607843136,0.30980392156862724], + [1.0,0.6627450980392156,0.3254901960784311], + [1.0,0.6705882352941177,0.3411764705882354], + [1.0,0.6784313725490196,0.3568627450980393], + [1.0,0.6862745098039216,0.37254901960784315], + [1.0,0.6941176470588235,0.388235294117647], + [1.0,0.7019607843137254,0.4039215686274509], + [1.0,0.7098039215686274,0.41960784313725474], + [1.0,0.7176470588235293,0.4352941176470586], + [1.0,0.7254901960784315,0.4509803921568629], + [1.0,0.7333333333333334,0.4666666666666668], + [1.0,0.7411764705882353,0.48235294117647065], + [1.0,0.7490196078431373,0.4980392156862745], + [1.0,0.7568627450980392,0.5137254901960784], + [1.0,0.7647058823529411,0.5294117647058822], + [1.0,0.7725490196078431,0.5450980392156861], + [1.0,0.780392156862745,0.56078431372549], + [1.0,0.7882352941176469,0.5764705882352938], + [1.0,0.7960784313725491,0.5921568627450982], + [1.0,0.803921568627451,0.607843137254902], + [1.0,0.8117647058823529,0.6235294117647059], + [1.0,0.8196078431372549,0.6392156862745098], + [1.0,0.8274509803921568,0.6549019607843136], + [1.0,0.8352941176470587,0.6705882352941175], + [1.0,0.8431372549019607,0.6862745098039214], + [1.0,0.8509803921568628,0.7019607843137257], + [1.0,0.8588235294117648,0.7176470588235295], + [1.0,0.8666666666666667,0.7333333333333334], + [1.0,0.8745098039215686,0.7490196078431373], + [1.0,0.8823529411764706,0.7647058823529411], + [1.0,0.8901960784313725,0.780392156862745], + [1.0,0.8980392156862744,0.7960784313725489], + [1.0,0.9058823529411764,0.8117647058823527], + [1.0,0.9137254901960783,0.8274509803921566], + [1.0,0.9215686274509804,0.8431372549019609], + [1.0,0.9294117647058824,0.8588235294117648], + [1.0,0.9372549019607843,0.8745098039215686], + [1.0,0.9450980392156862,0.8901960784313725], + [1.0,0.9529411764705882,0.9058823529411764], + [1.0,0.9607843137254901,0.9215686274509802], + [1.0,0.968627450980392,0.9372549019607841], + [1.0,0.9764705882352942,0.9529411764705884], + [1.0,0.9843137254901961,0.9686274509803923], + [1.0,0.9921568627450981,0.9843137254901961], + [1.0,1.0,1.0] ], + gist_heat_r: [ + [1.0,1.0,1.0], + [1.0,0.9921568627450981,0.9843137254901961], + [1.0,0.9843137254901961,0.9686274509803923], + [1.0,0.9764705882352942,0.9529411764705884], + [1.0,0.9686274509803923,0.9372549019607845], + [1.0,0.9607843137254901,0.9215686274509802], + [1.0,0.9529411764705882,0.9058823529411764], + [1.0,0.9450980392156862,0.8901960784313725], + [1.0,0.9372549019607843,0.8745098039215686], + [1.0,0.9294117647058824,0.8588235294117648], + [1.0,0.9215686274509804,0.8431372549019609], + [1.0,0.9137254901960785,0.827450980392157], + [1.0,0.9058823529411764,0.8117647058823527], + [1.0,0.8980392156862744,0.7960784313725489], + [1.0,0.8901960784313725,0.780392156862745], + [1.0,0.8823529411764706,0.7647058823529411], + [1.0,0.8745098039215686,0.7490196078431373], + [1.0,0.8666666666666667,0.7333333333333334], + [1.0,0.8588235294117648,0.7176470588235295], + [1.0,0.8509803921568628,0.7019607843137257], + [1.0,0.8431372549019609,0.6862745098039218], + [1.0,0.8352941176470587,0.6705882352941175], + [1.0,0.8274509803921568,0.6549019607843136], + [1.0,0.8196078431372549,0.6392156862745098], + [1.0,0.8117647058823529,0.6235294117647059], + [1.0,0.803921568627451,0.607843137254902], + [1.0,0.7960784313725491,0.5921568627450982], + [1.0,0.7882352941176471,0.5764705882352943], + [1.0,0.780392156862745,0.56078431372549], + [1.0,0.7725490196078431,0.5450980392156861], + [1.0,0.7647058823529411,0.5294117647058822], + [1.0,0.7568627450980392,0.5137254901960784], + [1.0,0.7490196078431373,0.4980392156862745], + [1.0,0.7411764705882353,0.48235294117647065], + [1.0,0.7333333333333334,0.4666666666666668], + [1.0,0.7254901960784315,0.4509803921568629], + [1.0,0.7176470588235295,0.43529411764705905], + [1.0,0.7098039215686276,0.4196078431372552], + [1.0,0.7019607843137254,0.4039215686274509], + [1.0,0.6941176470588235,0.388235294117647], + [1.0,0.6862745098039216,0.37254901960784315], + [1.0,0.6784313725490196,0.3568627450980393], + [1.0,0.6705882352941177,0.3411764705882354], + [1.0,0.6627450980392156,0.3254901960784311], + [1.0,0.6549019607843136,0.30980392156862724], + [1.0,0.6470588235294117,0.2941176470588234], + [1.0,0.6392156862745098,0.2784313725490195], + [1.0,0.6313725490196078,0.26274509803921564], + [1.0,0.6235294117647059,0.24705882352941178], + [1.0,0.615686274509804,0.2313725490196079], + [1.0,0.607843137254902,0.21568627450980404], + [1.0,0.6000000000000001,0.20000000000000018], + [1.0,0.5921568627450982,0.1843137254901963], + [1.0,0.5843137254901962,0.16862745098039245], + [1.0,0.5764705882352941,0.15294117647058814], + [1.0,0.5686274509803921,0.13725490196078427], + [1.0,0.5607843137254902,0.1215686274509804], + [1.0,0.5529411764705883,0.10588235294117654], + [1.0,0.5450980392156863,0.09019607843137267], + [1.0,0.5372549019607842,0.07450980392156836], + [1.0,0.5294117647058822,0.0588235294117645], + [1.0,0.5215686274509803,0.04313725490196063], + [1.0,0.5137254901960784,0.027450980392156765], + [1.0,0.5058823529411764,0.0117647058823529], + [1.0,0.4980392156862745,0.0], + [1.0,0.4901960784313726,0.0], + [1.0,0.48235294117647065,0.0], + [1.0,0.4745098039215687,0.0], + [1.0,0.4666666666666668,0.0], + [1.0,0.45882352941176485,0.0], + [1.0,0.4509803921568627,0.0], + [1.0,0.44313725490196076,0.0], + [1.0,0.43529411764705883,0.0], + [1.0,0.4274509803921569,0.0], + [1.0,0.41960784313725497,0.0], + [1.0,0.4117647058823528,0.0], + [1.0,0.4039215686274509,0.0], + [1.0,0.39607843137254894,0.0], + [1.0,0.388235294117647,0.0], + [1.0,0.3803921568627451,0.0], + [1.0,0.37254901960784315,0.0], + [1.0,0.3647058823529412,0.0], + [1.0,0.3568627450980393,0.0], + [1.0,0.34901960784313735,0.0], + [1.0,0.3411764705882354,0.0], + [1.0,0.3333333333333335,0.0], + [0.9941176470588236,0.3254901960784313,0.0], + [0.9882352941176471,0.3176470588235294,0.0], + [0.9823529411764707,0.30980392156862746,0.0], + [0.9764705882352942,0.3019607843137255,0.0], + [0.9705882352941178,0.2941176470588236,0.0], + [0.9647058823529411,0.28627450980392144,0.0], + [0.9588235294117646,0.2784313725490195,0.0], + [0.9529411764705882,0.2705882352941176,0.0], + [0.9470588235294117,0.26274509803921564,0.0], + [0.9411764705882353,0.2549019607843137,0.0], + [0.9352941176470588,0.24705882352941178,0.0], + [0.9294117647058824,0.23921568627450984,0.0], + [0.9235294117647059,0.2313725490196079,0.0], + [0.9176470588235295,0.22352941176470598,0.0], + [0.911764705882353,0.21568627450980404,0.0], + [0.9058823529411766,0.2078431372549021,0.0], + [0.8999999999999999,0.19999999999999996,0.0], + [0.8941176470588235,0.19215686274509802,0.0], + [0.888235294117647,0.1843137254901961,0.0], + [0.8823529411764706,0.17647058823529416,0.0], + [0.8764705882352941,0.16862745098039222,0.0], + [0.8705882352941176,0.16078431372549007,0.0], + [0.8647058823529411,0.15294117647058814,0.0], + [0.8588235294117647,0.1450980392156862,0.0], + [0.8529411764705882,0.13725490196078427,0.0], + [0.8470588235294118,0.12941176470588234,0.0], + [0.8411764705882353,0.1215686274509804,0.0], + [0.8352941176470589,0.11372549019607847,0.0], + [0.8294117647058824,0.10588235294117654,0.0], + [0.823529411764706,0.0980392156862746,0.0], + [0.8176470588235295,0.09019607843137267,0.0], + [0.811764705882353,0.08235294117647074,0.0], + [0.8058823529411765,0.07450980392156858,0.0], + [0.8,0.06666666666666665,0.0], + [0.7941176470588236,0.05882352941176472,0.0], + [0.7882352941176471,0.050980392156862786,0.0], + [0.7823529411764707,0.04313725490196085,0.0], + [0.776470588235294,0.0352941176470587,0.0], + [0.7705882352941176,0.027450980392156765,0.0], + [0.7647058823529411,0.019607843137254832,0.0], + [0.7588235294117647,0.0117647058823529,0.0], + [0.7529411764705882,0.0039215686274509665,0.0], + [0.7470588235294118,0.0,0.0], + [0.7411764705882353,0.0,0.0], + [0.7352941176470589,0.0,0.0], + [0.7294117647058824,0.0,0.0], + [0.723529411764706,0.0,0.0], + [0.7176470588235293,0.0,0.0], + [0.7117647058823529,0.0,0.0], + [0.7058823529411764,0.0,0.0], + [0.7,0.0,0.0], + [0.6941176470588235,0.0,0.0], + [0.6882352941176471,0.0,0.0], + [0.6823529411764706,0.0,0.0], + [0.676470588235294,0.0,0.0], + [0.6705882352941176,0.0,0.0], + [0.6647058823529411,0.0,0.0], + [0.6588235294117647,0.0,0.0], + [0.6529411764705882,0.0,0.0], + [0.6470588235294118,0.0,0.0], + [0.6411764705882353,0.0,0.0], + [0.6352941176470589,0.0,0.0], + [0.6294117647058824,0.0,0.0], + [0.6235294117647059,0.0,0.0], + [0.6176470588235294,0.0,0.0], + [0.611764705882353,0.0,0.0], + [0.6058823529411765,0.0,0.0], + [0.6000000000000001,0.0,0.0], + [0.5941176470588236,0.0,0.0], + [0.5882352941176472,0.0,0.0], + [0.5823529411764705,0.0,0.0], + [0.5764705882352941,0.0,0.0], + [0.5705882352941176,0.0,0.0], + [0.5647058823529412,0.0,0.0], + [0.5588235294117647,0.0,0.0], + [0.5529411764705883,0.0,0.0], + [0.5470588235294118,0.0,0.0], + [0.5411764705882354,0.0,0.0], + [0.5352941176470589,0.0,0.0], + [0.5294117647058822,0.0,0.0], + [0.5235294117647058,0.0,0.0], + [0.5176470588235293,0.0,0.0], + [0.5117647058823529,0.0,0.0], + [0.5058823529411764,0.0,0.0], + [0.5,0.0,0.0], + [0.4941176470588236,0.0,0.0], + [0.488235294117647,0.0,0.0], + [0.48235294117647054,0.0,0.0], + [0.4764705882352941,0.0,0.0], + [0.47058823529411764,0.0,0.0], + [0.4647058823529412,0.0,0.0], + [0.45882352941176474,0.0,0.0], + [0.4529411764705883,0.0,0.0], + [0.44705882352941184,0.0,0.0], + [0.4411764705882354,0.0,0.0], + [0.4352941176470588,0.0,0.0], + [0.4294117647058823,0.0,0.0], + [0.4235294117647059,0.0,0.0], + [0.4176470588235294,0.0,0.0], + [0.411764705882353,0.0,0.0], + [0.4058823529411765,0.0,0.0], + [0.4000000000000001,0.0,0.0], + [0.39411764705882346,0.0,0.0], + [0.388235294117647,0.0,0.0], + [0.38235294117647056,0.0,0.0], + [0.3764705882352941,0.0,0.0], + [0.37058823529411766,0.0,0.0], + [0.3647058823529412,0.0,0.0], + [0.35882352941176476,0.0,0.0], + [0.3529411764705883,0.0,0.0], + [0.34705882352941186,0.0,0.0], + [0.34117647058823525,0.0,0.0], + [0.3352941176470588,0.0,0.0], + [0.32941176470588235,0.0,0.0], + [0.3235294117647059,0.0,0.0], + [0.31764705882352945,0.0,0.0], + [0.311764705882353,0.0,0.0], + [0.30588235294117655,0.0,0.0], + [0.29999999999999993,0.0,0.0], + [0.2941176470588235,0.0,0.0], + [0.28823529411764703,0.0,0.0], + [0.2823529411764706,0.0,0.0], + [0.27647058823529413,0.0,0.0], + [0.2705882352941177,0.0,0.0], + [0.26470588235294124,0.0,0.0], + [0.2588235294117648,0.0,0.0], + [0.25294117647058834,0.0,0.0], + [0.24705882352941172,0.0,0.0], + [0.24117647058823527,0.0,0.0], + [0.23529411764705882,0.0,0.0], + [0.22941176470588237,0.0,0.0], + [0.22352941176470592,0.0,0.0], + [0.21764705882352947,0.0,0.0], + [0.21176470588235302,0.0,0.0], + [0.2058823529411764,0.0,0.0], + [0.19999999999999996,0.0,0.0], + [0.1941176470588235,0.0,0.0], + [0.18823529411764706,0.0,0.0], + [0.1823529411764706,0.0,0.0], + [0.17647058823529416,0.0,0.0], + [0.1705882352941177,0.0,0.0], + [0.16470588235294126,0.0,0.0], + [0.1588235294117648,0.0,0.0], + [0.1529411764705882,0.0,0.0], + [0.14705882352941174,0.0,0.0], + [0.1411764705882353,0.0,0.0], + [0.13529411764705884,0.0,0.0], + [0.1294117647058824,0.0,0.0], + [0.12352941176470594,0.0,0.0], + [0.1176470588235295,0.0,0.0], + [0.11176470588235288,0.0,0.0], + [0.10588235294117643,0.0,0.0], + [0.09999999999999998,0.0,0.0], + [0.09411764705882353,0.0,0.0], + [0.08823529411764708,0.0,0.0], + [0.08235294117647063,0.0,0.0], + [0.07647058823529418,0.0,0.0], + [0.07058823529411773,0.0,0.0], + [0.06470588235294128,0.0,0.0], + [0.05882352941176466,0.0,0.0], + [0.052941176470588214,0.0,0.0], + [0.047058823529411764,0.0,0.0], + [0.041176470588235314,0.0,0.0], + [0.035294117647058865,0.0,0.0], + [0.029411764705882415,0.0,0.0], + [0.023529411764705965,0.0,0.0], + [0.01764705882352935,0.0,0.0], + [0.0117647058823529,0.0,0.0], + [0.00588235294117645,0.0,0.0], + [0.0,0.0,0.0] ], + gist_ncar: [ + [0.0,0.0,0.502], + [0.0,0.028619761630142255,0.46510649750096117], + [0.0,0.05723952326028451,0.42821299500192234], + [0.0,0.08585928489042677,0.3913194925028835], + [0.0,0.11447904652056902,0.35442599000384467], + [0.0,0.14309880815071127,0.31753248750480584], + [0.0,0.17171856978085354,0.280638985005767], + [0.0,0.2003383314109958,0.24374548250672812], + [0.0,0.22895809304113804,0.20685198000768934], + [0.0,0.2575778546712803,0.1699584775086505], + [0.0,0.28619761630142254,0.13306497500961167], + [0.0,0.3148173779315648,0.09617147251057284], + [0.0,0.34343713956170707,0.059277970011533954], + [0.0,0.3720569011918493,0.02238446751249512], + [0.0,0.3457462695096253,0.0870866880085368], + [0.0,0.3191596057002035,0.15229943977591043], + [0.0,0.29257294189078176,0.21751219154328405], + [0.0,0.26598627808136,0.2827249433106577], + [0.0,0.23939961427193826,0.3479376950780313], + [0.0,0.2128129504625165,0.41315044684540486], + [0.0,0.1862262866530947,0.47836319861277854], + [0.0,0.15963962284367297,0.5435759503801522], + [0.0,0.1330529590342512,0.6087887021475258], + [0.0,0.10646629522482942,0.6740014539148994], + [0.0,0.07987963141540771,0.7392142056822729], + [0.0,0.0532929676059859,0.8044269574496467], + [0.0,0.02670630379656419,0.8696397092170203], + [0.0,0.00011963998714242807,0.9348524609843938], + [0.0,0.055129496347558614,1.0], + [0.0,0.11050819684736636,1.0], + [0.0,0.1658868973471741,1.0], + [0.0,0.22126559784698185,1.0], + [0.0,0.2766442983467896,1.0], + [0.0,0.332022998846597,1.0], + [0.0,0.3874016993464051,1.0], + [0.0,0.44278039984621287,1.0], + [0.0,0.4981591003460206,1.0], + [0.0,0.5535378008458279,1.0], + [0.0,0.6089165013456361,1.0], + [0.0,0.6642952018454439,1.0], + [0.0,0.7196739023452516,1.0], + [0.0,0.7535652589240823,1.0], + [0.0,0.7752259284890427,1.0], + [0.0,0.7925115878508266,1.0], + [0.0,0.8097972472126105,1.0], + [0.0,0.8270829065743943,1.0], + [0.0,0.8443685659361784,1.0], + [0.0,0.8616542252979623,1.0], + [0.0,0.8789398846597463,1.0], + [0.0,0.8962255440215301,1.0], + [0.0,0.9135112033833142,1.0], + [0.0,0.930796862745098,1.0], + [0.0,0.9480825221068819,0.999858593437375], + [0.0,0.9653681814686658,0.9741483093237298], + [0.0,0.9826538408304498,0.9484380252100841], + [0.0,0.9999395001922338,0.9227277410964386], + [0.0,0.9982228833992994,0.8970174569827932], + [0.0,0.9964395250443565,0.8713071728691479], + [0.0,0.9946561666894136,0.8455968887555023], + [0.0,0.9928728083344707,0.8198866046418568], + [0.0,0.9910894499795277,0.7941763205282114], + [0.0,0.9893060916245849,0.7684660364145661], + [0.0,0.987522733269642,0.7427557523009205], + [0.0,0.9857393749146991,0.717045468187275], + [0.0,0.9839560165597562,0.6913351840736295], + [0.0,0.9821726582048133,0.6656248999599841], + [0.0,0.9804,0.639914615846339], + [0.0,0.9804,0.6140294949898466], + [0.0,0.9804,0.5731160158460669], + [0.0,0.9804,0.5322025367022871], + [0.0,0.9820304714226117,0.4912890575585073], + [0.0,0.9836658489778891,0.45037557841472753], + [0.0,0.9853012265331665,0.4094620992709478], + [0.0,0.986936604088444,0.368548620127168], + [0.0,0.9885719816437213,0.32763514098338886], + [0.0,0.9902073591989988,0.28672166183960845], + [0.0,0.9918427367542761,0.24580818269582871], + [0.0,0.9934781143095536,0.20489470355204897], + [0.0,0.995113491864831,0.16398122440826918], + [2.497420020616271e-05,0.9967488694201084,0.12306774526448938], + [0.02499917440660453,0.9983842469753859,0.08215426612070964], + [0.0499733746130029,0.9998229296424452,0.04124078697692979], + [0.07494757481940091,0.9850670665128799,0.000327307833150714], + [0.09992177502579963,0.9703112033833141,0.0], + [0.124895975232198,0.9555553402537486,0.0], + [0.14987017543859635,0.940799477124183,0.0], + [0.17484437564499472,0.9260436139946174,0.0], + [0.1998185758513931,0.9112877508650519,0.0], + [0.22479277605779147,0.8965318877354863,0.0], + [0.24976697626418984,0.8817760246059207,0.0], + [0.2747411764705878,0.8670201614763554,0.0], + [0.29971537667698656,0.8522642983467896,0.0], + [0.32468957688338496,0.8375084352172242,0.0], + [0.3496637770897833,0.8227525720876585,0.0], + [0.37463797729618165,0.8081894370651488,0.0], + [0.39939707804690505,0.8209661606578116,0.0], + [0.407163321799308,0.8337428842504745,0.0], + [0.4149295655517109,0.8465196078431373,0.0], + [0.4226958093041137,0.8592963314358,0.0], + [0.43046205305651675,0.872073055028463,0.0], + [0.43822829680891967,0.8848497786211259,0.0], + [0.4459945405613226,0.8976265022137888,0.0], + [0.4537607843137255,0.9104032258064516,0.0], + [0.46152702806612844,0.9231799493991145,0.0], + [0.46929327181853137,0.9359566729917774,0.0], + [0.4770595155709343,0.9487333965844402,0.0], + [0.4848257593233371,0.9615101201771029,0.0], + [0.49259200307574014,0.9742868437697659,0.01556491263171933], + [0.50043385299475,0.9870635673624288,0.031184493797518996], + [0.5182809189613916,0.9998402909550916,0.04680407496331866], + [0.5361279849280333,1.0,0.06242365612911833], + [0.5539750508946749,1.0,0.07804323729491801], + [0.5718221168613166,1.0,0.09366281846071767], + [0.5896691828279582,1.0,0.10928239962651734], + [0.6075162487945996,1.0,0.12490198079231678], + [0.6253633147612415,1.0,0.14052156195811666], + [0.6432103807278832,1.0,0.15614114312391633], + [0.6610574466945248,1.0,0.171760724289716], + [0.6789045126611666,1.0,0.18738030545551568], + [0.6967515786278082,1.0,0.20299988662131535], + [0.7145986445944499,1.0,0.218619467787115], + [0.7324457105610915,1.0,0.23416095104708531], + [0.750292776527733,1.0,0.2185413698812859], + [0.7681398424943748,1.0,0.20292178871548602], + [0.7859869084610165,1.0,0.1873022075496864], + [0.8038339744276581,1.0,0.17168262638388676], + [0.8216810403942998,1.0,0.15606304521808712], + [0.8395281063609414,1.0,0.14044346405228747], + [0.8573751723275831,1.0,0.12482388288648784], + [0.8752222382942247,1.0,0.1092043017206882], + [0.8930693042608664,1.0,0.09358472055488856], + [0.9109163702275082,1.0,0.07796513938908894], + [0.9287634361941493,1.0,0.06234555822328974], + [0.9466105021607915,1.0,0.046725977057489654], + [0.9644575681274331,0.990405600200007,0.03110639589169001], + [0.9823046340940748,0.9807338262080787,0.015486814725890363], + [1.0,0.9710620522161504,0.0], + [1.0,0.9613902782242221,0.0], + [1.0,0.9517185042322938,0.0], + [1.0,0.9420467302403656,0.0], + [1.0,0.9323749562484372,0.0], + [1.0,0.9227031822565089,0.0], + [1.0,0.9130314082645806,0.0], + [1.0,0.9033596342726524,0.0], + [1.0,0.8936878602807241,0.0], + [1.0,0.8840160862887958,0.0], + [1.0,0.8743443122968675,0.0], + [1.0,0.8646725383049392,0.0], + [1.0,0.8550007643130112,0.0], + [1.0,0.8453289903210827,0.004213010380622807], + [1.0,0.8356572163291544,0.00843446366782005], + [1.0,0.8259854423372262,0.012655916955017292], + [1.0,0.8163136683452978,0.016877370242214536], + [1.0,0.8066418943533695,0.021098823529411777], + [1.0,0.7969701203614412,0.02532027681660902], + [1.0,0.7872983463695129,0.02954173010380626], + [1.0,0.7776265723775846,0.0337631833910035], + [1.0,0.7679547983856564,0.03798463667820075], + [1.0,0.7582830243937281,0.042206089965397986], + [1.0,0.7486112504017999,0.04642754325259523], + [1.0,0.7389394764098716,0.050648996539792476], + [1.0,0.7292677024179433,0.054870449826989715], + [1.0,0.6973093753348327,0.051264165666266424], + [1.0,0.665193942640808,0.047602701080432096], + [1.0,0.6330785099467843,0.04394123649459788], + [1.0,0.6009630772527587,0.040279771908763445], + [1.0,0.5688476445587339,0.03661830732292912], + [1.0,0.5367322118647092,0.03295684273709479], + [1.0,0.5046167791706846,0.029295378151260466], + [1.0,0.47250134647665987,0.025633913565426138], + [1.0,0.44038591378263514,0.021972448979591816], + [1.0,0.40827048108861047,0.018310984393757487], + [1.0,0.3761550483945858,0.014649519807923159], + [1.0,0.3440396157005611,0.01098805522208883], + [1.0,0.3119241830065364,0.007326590636254501], + [1.0,0.27980875031251173,0.0036651260504201796], + [1.0,0.2610737494998002,3.661464585850982e-06], + [1.0,0.24242629051620673,0.0], + [1.0,0.22377883153261327,0.0], + [1.0,0.2051313725490198,0.0], + [1.0,0.18648391356542685,0.0], + [1.0,0.16783645458183286,0.0], + [1.0,0.14918899559823937,0.0], + [1.0,0.1305415366146459,0.0], + [1.0,0.11189407763105244,0.0], + [1.0,0.09324661864745895,0.0], + [1.0,0.07459915966386546,0.0], + [1.0,0.055951700680272,0.0], + [1.0,0.03730424169667851,0.0], + [1.0,0.01865678271308502,0.06875969141755169], + [1.0,9.323729491583777e-06,0.13831931854709198], + [1.0,0.0,0.20787894567663226], + [1.0,0.0,0.27743857280617257], + [1.0,0.0,0.34699819993571285], + [1.0,0.0,0.41655782706525313], + [1.0,0.0,0.4861174541947934], + [1.0,0.0,0.5556770813243317], + [1.0,0.0,0.6252367084538739], + [1.0,0.0,0.6947963355834142], + [1.0,0.0,0.7643559627129545], + [1.0,0.0,0.8339155898424948], + [1.0,0.0,0.903475216972035], + [1.0,0.0,0.9730348441015754], + [0.9732819172113288,0.013357348125890886,0.9868275515334339], + [0.9462666666666665,0.026863261296660175,1.0], + [0.9192514161220041,0.040369174467429464,1.0], + [0.8922361655773419,0.05387508763819875,1.0], + [0.8652209150326795,0.06738100080896804,1.0], + [0.8382056644880171,0.08088691397973734,1.0], + [0.8111904139433548,0.09439282715050662,1.0], + [0.7841751633986924,0.10789874032127592,1.0], + [0.7571599128540301,0.1214046534920452,1.0], + [0.7301446623093686,0.13491056666281412,1.0], + [0.7031294117647054,0.14841647983358378,1.0], + [0.6761141612200431,0.16192239300435307,1.0], + [0.6490989106753807,0.17552034001214337,0.9999552805457338], + [0.6220836601307185,0.1987140255009108,0.9952479695703418], + [0.644800281212682,0.22190771098967824,0.9905406585949498], + [0.6680446280673373,0.24510139647844567,0.9858333476195579], + [0.6912889749219927,0.2682950819672131,0.9811260366441659], + [0.7145333217766481,0.2914887674559805,0.9764187256687739], + [0.7377776686313035,0.31468245294474795,0.971711414693382], + [0.7610220154859588,0.3378761384335154,0.96700410371799], + [0.7842663623406141,0.3610698239222828,0.962296792742598], + [0.8075107091952696,0.38426350941105025,0.957589481767206], + [0.8307550560499248,0.4074571948998177,0.952882170791814], + [0.8539994029045802,0.4306508803885851,0.9481748598164221], + [0.8772437497592356,0.45384456587735256,0.9434675488410301], + [0.9004880966138903,0.4770382513661194,0.9387602378656382], + [0.9235279123414071,0.5001816608996538,0.9341238369857747], + [0.9263191464821222,0.5183477508650517,0.936507535563245], + [0.9291103806228374,0.5365138408304497,0.9388912341407152], + [0.9319016147635525,0.5546799307958477,0.9412749327181853], + [0.9346928489042675,0.5728460207612456,0.9436586312956555], + [0.9374840830449827,0.5910121107266435,0.9460423298731258], + [0.9402753171856978,0.6091782006920414,0.948426028450596], + [0.9430665513264129,0.6273442906574394,0.9508097270280661], + [0.945857785467128,0.6455103806228373,0.9531934256055363], + [0.9486490196078431,0.6636764705882352,0.9555771241830066], + [0.9514402537485582,0.6818425605536331,0.9579608227604768], + [0.9542314878892734,0.700008650519031,0.9603445213379469], + [0.9570227220299884,0.718174740484429,0.9627282199154171], + [0.9598139561707035,0.7363408304498269,0.9651119184928874], + [0.9626051903114187,0.7545069204152248,0.9674956170703576], + [0.9653964244521337,0.7726730103806223,0.9698793156478277], + [0.9681876585928488,0.7908391003460207,0.9722630142252979], + [0.970978892733564,0.8090051903114186,0.9746467128027682], + [0.9737701268742791,0.8271712802768165,0.9770304113802384], + [0.9765613610149942,0.8453373702422144,0.9794141099577086], + [0.9793525951557094,0.8635034602076124,0.9817978085351787], + [0.9821438292964244,0.8816695501730103,0.984181507112649], + [0.9849350634371395,0.8998356401384082,0.9865652056901192], + [0.9877262975778547,0.9180017301038063,0.9889489042675894], + [0.9905175317185697,0.9361678200692042,0.9913326028450595], + [0.9933087658592848,0.9543339100346021,0.9937163014225298], + [0.9961,0.9725,0.9961] ], + gist_ncar_r: [ + [0.9961,0.9725,0.9961], + [0.9933087658592848,0.9543339100346021,0.9937163014225298], + [0.9905175317185697,0.9361678200692042,0.9913326028450595], + [0.9877262975778547,0.9180017301038063,0.9889489042675894], + [0.9849350634371395,0.8998356401384083,0.9865652056901192], + [0.9821438292964244,0.8816695501730104,0.984181507112649], + [0.9793525951557093,0.8635034602076125,0.9817978085351787], + [0.9765613610149942,0.8453373702422146,0.9794141099577086], + [0.9737701268742791,0.8271712802768165,0.9770304113802384], + [0.970978892733564,0.8090051903114186,0.9746467128027682], + [0.9681876585928488,0.7908391003460208,0.9722630142252979], + [0.9653964244521338,0.7726730103806229,0.9698793156478278], + [0.9626051903114187,0.7545069204152248,0.9674956170703576], + [0.9598139561707035,0.7363408304498269,0.9651119184928874], + [0.9570227220299885,0.718174740484429,0.9627282199154171], + [0.9542314878892734,0.700008650519031,0.9603445213379469], + [0.9514402537485582,0.6818425605536331,0.9579608227604768], + [0.9486490196078431,0.6636764705882352,0.9555771241830066], + [0.945857785467128,0.6455103806228373,0.9531934256055363], + [0.9430665513264129,0.6273442906574394,0.9508097270280661], + [0.9402753171856978,0.6091782006920414,0.948426028450596], + [0.9374840830449827,0.5910121107266435,0.9460423298731258], + [0.9346928489042676,0.5728460207612456,0.9436586312956555], + [0.9319016147635525,0.5546799307958477,0.9412749327181853], + [0.9291103806228374,0.5365138408304497,0.9388912341407152], + [0.9263191464821222,0.5183477508650518,0.936507535563245], + [0.9235279123414071,0.5001816608996539,0.9341238369857747], + [0.9004880966138911,0.4770382513661201,0.9387602378656381], + [0.8772437497592356,0.45384456587735267,0.9434675488410301], + [0.8539994029045802,0.43065088038858523,0.948174859816422], + [0.8307550560499248,0.4074571948998178,0.952882170791814], + [0.8075107091952695,0.38426350941105036,0.957589481767206], + [0.7842663623406141,0.361069823922283,0.9622967927425979], + [0.7610220154859588,0.3378761384335157,0.96700410371799], + [0.7377776686313033,0.3146824529447481,0.9717114146933818], + [0.7145333217766479,0.2914887674559807,0.9764187256687739], + [0.6912889749219925,0.26829508196721324,0.9811260366441659], + [0.6680446280673373,0.24510139647844598,0.9858333476195578], + [0.6448002812126816,0.22190771098967838,0.9905406585949498], + [0.6220836601307188,0.19871402550091094,0.9952479695703418], + [0.6490989106753812,0.1755203400121435,0.9999552805457337], + [0.6761141612200432,0.16192239300435324,1.0], + [0.7031294117647058,0.14841647983358386,1.0], + [0.7301446623093681,0.13491056666281454,1.0], + [0.7571599128540304,0.12140465349204524,1.0], + [0.7841751633986925,0.10789874032127603,1.0], + [0.811190413943355,0.09439282715050662,1.0], + [0.8382056644880174,0.08088691397973732,1.0], + [0.8652209150326797,0.06738100080896801,1.0], + [0.8922361655773419,0.053875087638198815,1.0], + [0.9192514161220044,0.04036917446742941,1.0], + [0.9462666666666667,0.026863261296660113,0.9999999999999998], + [0.973281917211329,0.013357348125890789,0.9868275515334338], + [1.0,0.0,0.9730348441015754], + [1.0,0.0,0.9034752169720346], + [1.0,0.0,0.8339155898424944], + [1.0,0.0,0.7643559627129541], + [1.0,0.0,0.6947963355834144], + [1.0,0.0,0.6252367084538737], + [1.0,0.0,0.5556770813243335], + [1.0,0.0,0.4861174541947932], + [1.0,0.0,0.41655782706525335], + [1.0,0.0,0.34699819993571257], + [1.0,0.0,0.27743857280617235], + [1.0,0.0,0.20787894567663223], + [1.0,9.323729491841239e-06,0.1383193185470919], + [1.0,0.018656782713085015,0.06875969141755256], + [1.0,0.03730424169667872,0.0], + [1.0,0.05595170068027216,0.0], + [1.0,0.0745991596638656,0.0], + [1.0,0.09324661864745903,0.0], + [1.0,0.11189407763105247,0.0], + [1.0,0.1305415366146459,0.0], + [1.0,0.14918899559823937,0.0], + [1.0,0.16783645458183252,0.0], + [1.0,0.1864839135654262,0.0], + [1.0,0.20513137254901967,0.0], + [1.0,0.2237788315326131,0.0], + [1.0,0.24242629051620654,0.0], + [1.0,0.2610737494998,3.661464585851813e-06], + [1.0,0.27980875031251123,0.0036651260504201822], + [1.0,0.311924183006536,0.007326590636254512], + [1.0,0.3440396157005603,0.01098805522208879], + [1.0,0.3761550483945855,0.014649519807923173], + [1.0,0.4082704810886103,0.0183109843937575], + [1.0,0.44038591378263503,0.021972448979591833], + [1.0,0.47250134647665976,0.025633913565426165], + [1.0,0.5046167791706846,0.02929537815126049], + [1.0,0.5367322118647093,0.03295684273709482], + [1.0,0.568847644558734,0.03661830732292915], + [1.0,0.6009630772527583,0.04027977190876343], + [1.0,0.6330785099467835,0.043941236494597816], + [1.0,0.6651939426408083,0.047602701080432144], + [1.0,0.6973093753348331,0.05126416566626647], + [1.0,0.7292677024179434,0.05487044982698966], + [1.0,0.7389394764098717,0.05064899653979242], + [1.0,0.7486112504017999,0.04642754325259518], + [1.0,0.7582830243937282,0.042206089965397944], + [1.0,0.7679547983856564,0.03798463667820076], + [1.0,0.7776265723775848,0.03376318339100347], + [1.0,0.787298346369513,0.02954173010380623], + [1.0,0.7969701203614413,0.02532027681660899], + [1.0,0.8066418943533696,0.021098823529411753], + [1.0,0.8163136683452978,0.016877370242214522], + [1.0,0.8259854423372262,0.012655916955017277], + [1.0,0.8356572163291545,0.008434463667820039], + [1.0,0.8453289903210826,0.004213010380622863], + [1.0,0.8550007643130111,0.0], + [1.0,0.8646725383049393,0.0], + [1.0,0.8743443122968676,0.0], + [1.0,0.8840160862887958,0.0], + [1.0,0.8936878602807241,0.0], + [1.0,0.9033596342726524,0.0], + [1.0,0.9130314082645807,0.0], + [1.0,0.9227031822565088,0.0], + [1.0,0.9323749562484372,0.0], + [1.0,0.9420467302403656,0.0], + [1.0,0.9517185042322939,0.0], + [1.0,0.9613902782242221,0.0], + [1.0,0.9710620522161504,0.0], + [0.9823046340940748,0.9807338262080787,0.015486814725890358], + [0.9644575681274331,0.990405600200007,0.03110639589168998], + [0.9466105021607917,1.0,0.04672597705748938], + [0.9287634361941497,1.0,0.06234555822328923], + [0.910916370227508,1.0,0.07796513938908885], + [0.8930693042608664,1.0,0.09358472055488848], + [0.8752222382942247,1.0,0.1092043017206881], + [0.8573751723275831,1.0,0.12482388288648773], + [0.8395281063609414,1.0,0.14044346405228733], + [0.8216810403942997,1.0,0.15606304521808698], + [0.803833974427658,1.0,0.1716826263838866], + [0.7859869084610164,1.0,0.1873022075496862], + [0.7681398424943752,1.0,0.20292178871548538], + [0.750292776527733,1.0,0.21854136988128545], + [0.7324457105610913,1.0,0.2341609510470851], + [0.7145986445944497,1.0,0.21861946778711522], + [0.696751578627808,1.0,0.20299988662131552], + [0.6789045126611664,1.0,0.18738030545551584], + [0.6610574466945247,1.0,0.17176072428971617], + [0.6432103807278831,1.0,0.15614114312391647], + [0.6253633147612414,1.0,0.1405215619581168], + [0.6075162487945996,1.0,0.12490198079231712], + [0.5896691828279581,1.0,0.10928239962651742], + [0.5718221168613163,1.0,0.09366281846071778], + [0.5539750508946747,1.0,0.07804323729491808], + [0.5361279849280329,1.0,0.062423656129118404], + [0.5182809189613913,0.9998402909550919,0.046804074963318704], + [0.5004338529947496,0.987063567362429,0.03118449379751903], + [0.49259200307574025,0.9742868437697664,0.015564912631719774], + [0.4848257593233371,0.9615101201771031,0.0], + [0.4770595155709342,0.9487333965844402,0.0], + [0.46929327181853125,0.9359566729917774,0.0], + [0.46152702806612833,0.9231799493991145,0.0], + [0.4537607843137254,0.9104032258064516,0.0], + [0.4459945405613225,0.8976265022137887,0.0], + [0.43822829680891956,0.8848497786211258,0.0], + [0.43046205305651664,0.8720730550284629,0.0], + [0.4226958093041137,0.8592963314358,0.0], + [0.4149295655517108,0.8465196078431371,0.0], + [0.40716332179930786,0.8337428842504742,0.0], + [0.39939707804690494,0.8209661606578113,0.0], + [0.3746379772961813,0.8081894370651483,0.0], + [0.34966377708978297,0.822752572087659,0.0], + [0.32468957688338457,0.8375084352172245,0.0], + [0.2997153766769869,0.8522642983467896,0.0], + [0.2747411764705878,0.8670201614763555,0.0], + [0.24976697626418948,0.8817760246059211,0.0], + [0.22479277605779113,0.8965318877354865,0.0], + [0.19981857585139276,0.9112877508650521,0.0], + [0.1748443756449944,0.9260436139946175,0.0], + [0.14987017543859601,0.9407994771241831,0.0], + [0.12489597523219764,0.9555553402537487,0.0], + [0.09992177502579924,0.9703112033833141,0.0], + [0.0749475748194009,0.9850670665128797,0.0003273078331506376], + [0.04997337461300255,0.9998229296424452,0.04124078697693034], + [0.024999174406604152,0.9983842469753859,0.08215426612071003], + [2.4974200205807318e-05,0.9967488694201084,0.12306774526448973], + [0.0,0.9951134918648311,0.1639812244082694], + [0.0,0.9934781143095537,0.2048947035520491], + [0.0,0.9918427367542763,0.2458081826958288], + [0.0,0.9902073591989988,0.28672166183960734], + [0.0,0.9885719816437214,0.32763514098338825], + [0.0,0.986936604088444,0.3685486201271679], + [0.0,0.9853012265331665,0.40946209927094757], + [0.0,0.9836658489778891,0.4503755784147273], + [0.0,0.9820304714226117,0.491289057558507], + [0.0,0.9804,0.5322025367022867], + [0.0,0.9804,0.5731160158460664], + [0.0,0.9804,0.614029494989846], + [0.0,0.9804,0.6399146158463382], + [0.0,0.9821726582048133,0.6656248999599838], + [0.0,0.9839560165597562,0.6913351840736291], + [0.0,0.9857393749146991,0.7170454681872747], + [0.0,0.987522733269642,0.7427557523009201], + [0.0,0.9893060916245848,0.7684660364145656], + [0.0,0.9910894499795277,0.794176320528211], + [0.0,0.9928728083344707,0.8198866046418557], + [0.0,0.9946561666894136,0.8455968887555019], + [0.0,0.9964395250443565,0.8713071728691473], + [0.0,0.9982228833992994,0.8970174569827929], + [0.0,0.9999395001922338,0.9227277410964383], + [0.0,0.9826538408304498,0.9484380252100837], + [0.0,0.9653681814686659,0.9741483093237292], + [0.0,0.9480825221068819,0.9998585934373747], + [0.0,0.930796862745098,1.0], + [0.0,0.913511203383314,1.0], + [0.0,0.8962255440215301,1.0], + [0.0,0.8789398846597462,1.0], + [0.0,0.8616542252979622,1.0], + [0.0,0.8443685659361783,1.0], + [0.0,0.8270829065743943,1.0], + [0.0,0.8097972472126105,1.0], + [0.0,0.792511587850827,1.0], + [0.0,0.7752259284890426,1.0], + [0.0,0.7535652589240819,1.0], + [0.0,0.7196739023452516,1.0], + [0.0,0.6642952018454439,1.0], + [0.0,0.608916501345636,1.0], + [0.0,0.5535378008458283,1.0], + [0.0,0.4981591003460205,1.0], + [0.0,0.44278039984621276,1.0], + [0.0,0.38740169934640495,1.0], + [0.0,0.33202299884659714,1.0], + [0.0,0.2766442983467894,1.0], + [0.0,0.22126559784698163,1.0], + [0.0,0.16588689734717377,1.0], + [0.0,0.11050819684736601,1.0], + [0.0,0.05512949634755826,1.0], + [0.0,0.00011963998714183588,0.9348524609843958], + [0.0,0.026706303796564385,0.8696397092170202], + [0.0,0.05329296760598618,0.8044269574496464], + [0.0,0.07987963141540796,0.7392142056822728], + [0.0,0.10646629522482977,0.674001453914899], + [0.0,0.13305295903425157,0.6087887021475252], + [0.0,0.15963962284367336,0.5435759503801515], + [0.0,0.18622628665309515,0.47836319861277765], + [0.0,0.21281295046251694,0.41315044684540403], + [0.0,0.23939961427193876,0.3479376950780303], + [0.0,0.26598627808136055,0.28272494331065656], + [0.0,0.2925729418907823,0.21751219154328283], + [0.0,0.31915960570020413,0.15229943977590898], + [0.0,0.34574626950962595,0.08708668800853525], + [0.0,0.3720569011918486,0.022384467512496075], + [0.0,0.3434371395617064,0.05927797001153484], + [0.0,0.314817377931565,0.09617147251057255], + [0.0,0.286197616301422,0.13306497500961237], + [0.0,0.2575778546712798,0.16995847750865112], + [0.0,0.2289580930411376,0.2068519800076899], + [0.0,0.2003383314109954,0.24374548250672864], + [0.0,0.17171856978085318,0.28063898500576745], + [0.0,0.14309880815071097,0.3175324875048062], + [0.0,0.11447904652056884,0.35442599000384495], + [0.0,0.0858592848904266,0.39131949250288367], + [0.0,0.05723952326028442,0.42821299500192245], + [0.0,0.028619761630142182,0.4651064975009612], + [0.0,0.0,0.502] ], + gist_rainbow: [ + [1.0,0.0,0.16], + [1.0,0.0,0.13908496732026143], + [1.0,0.0,0.11816993464052288], + [1.0,0.0,0.0972549019607843], + [1.0,0.0,0.07633986928104575], + [1.0,0.0,0.05542483660130719], + [1.0,0.0,0.034509803921568605], + [1.0,0.0,0.013594771241830061], + [1.0,0.007419183889772136,0.0], + [1.0,0.028616852146263923,0.0], + [1.0,0.04981452040275571,0.0], + [1.0,0.0710121886592475,0.0], + [1.0,0.09220985691573928,0.0], + [1.0,0.11340752517223107,0.0], + [1.0,0.13460519342872285,0.0], + [1.0,0.15580286168521465,0.0], + [1.0,0.17700052994170645,0.0], + [1.0,0.19819819819819823,0.0], + [1.0,0.21939586645469003,0.0], + [1.0,0.2405935347111818,0.0], + [1.0,0.2617912029676736,0.0], + [1.0,0.2829888712241654,0.0], + [1.0,0.30418653948065716,0.0], + [1.0,0.325384207737149,0.0], + [1.0,0.34658187599364076,0.0], + [1.0,0.36777954425013254,0.0], + [1.0,0.3889772125066243,0.0], + [1.0,0.4101748807631161,0.0], + [1.0,0.4313725490196079,0.0], + [1.0,0.4525702172760997,0.0], + [1.0,0.47376788553259147,0.0], + [1.0,0.49496555378908325,0.0], + [1.0,0.5161632220455751,0.0], + [1.0,0.5373608903020667,0.0], + [1.0,0.5585585585585586,0.0], + [1.0,0.5797562268150505,0.0], + [1.0,0.6009538950715422,0.0], + [1.0,0.6221515633280338,0.0], + [1.0,0.6433492315845257,0.0], + [1.0,0.6645468998410176,0.0], + [1.0,0.6857445680975094,0.0], + [1.0,0.706942236354001,0.0], + [1.0,0.7281399046104929,0.0], + [1.0,0.7493375728669847,0.0], + [1.0,0.7705352411234765,0.0], + [1.0,0.7917329093799681,0.0], + [1.0,0.81293057763646,0.0], + [1.0,0.8341282458929519,0.0], + [1.0,0.8553259141494436,0.0], + [1.0,0.8765235824059353,0.0], + [1.0,0.8977212506624273,0.0], + [1.0,0.918918918918919,0.0], + [1.0,0.9401165871754108,0.0], + [1.0,0.9613142554319024,0.0], + [1.0,0.9825119236883944,0.0], + [0.9962904080551138,1.0,0.0], + [0.9750927397986221,1.0,0.0], + [0.9538950715421304,1.0,0.0], + [0.9326974032856385,1.0,0.0], + [0.9114997350291467,1.0,0.0], + [0.8903020667726549,1.0,0.0], + [0.8691043985161633,1.0,0.0], + [0.8479067302596713,1.0,0.0], + [0.8267090620031796,1.0,0.0], + [0.8055113937466878,1.0,0.0], + [0.784313725490196,1.0,0.0], + [0.7631160572337046,1.0,0.0], + [0.7419183889772125,1.0,0.0], + [0.7207207207207207,1.0,0.0], + [0.6995230524642289,1.0,0.0], + [0.678325384207737,1.0,0.0], + [0.6571277159512453,1.0,0.0], + [0.6359300476947536,1.0,0.0], + [0.6147323794382618,1.0,0.0], + [0.5935347111817703,1.0,0.0], + [0.5723370429252781,1.0,0.0], + [0.5511393746687864,1.0,0.0], + [0.5299417064122947,1.0,0.0], + [0.5087440381558028,1.0,0.0], + [0.487546369899311,1.0,0.0], + [0.4663487016428193,1.0,0.0], + [0.44515103338632744,1.0,0.0], + [0.42395336512983595,1.0,0.0], + [0.4027556968733439,1.0,0.0], + [0.38155802861685206,1.0,0.0], + [0.36036036036036034,1.0,0.0], + [0.3391626921038685,1.0,0.0], + [0.3179650238473768,1.0,0.0], + [0.29676735559088496,1.0,0.0], + [0.27556968733439324,1.0,0.0], + [0.25437201907790175,1.0,0.0], + [0.23317435082140958,1.0,0.0], + [0.21197668256491786,1.0,0.0], + [0.19077901430842603,1.0,0.0], + [0.1695813460519343,1.0,0.0], + [0.14838367779544248,1.0,0.0], + [0.12718600953895065,1.0,0.0], + [0.10598834128245893,1.0,0.0], + [0.08479067302596743,1.0,0.0], + [0.06359300476947538,1.0,0.0], + [0.04239533651298355,1.0,0.0], + [0.02119766825649183,1.0,0.0], + [0.0,1.0,0.0], + [0.0,1.0,0.02108370229812356], + [0.0,1.0,0.04216740459624712], + [0.0,1.0,0.06325110689437068], + [0.0,1.0,0.08433480919249393], + [0.0,1.0,0.1054185114906178], + [0.0,1.0,0.12650221378874135], + [0.0,1.0,0.14758591608686492], + [0.0,1.0,0.16866961838498848], + [0.0,1.0,0.18975332068311204], + [0.0,1.0,0.2108370229812356], + [0.0,1.0,0.23192072527935917], + [0.0,1.0,0.2530044275774824], + [0.0,1.0,0.27408812987560627], + [0.0,1.0,0.29517183217372983], + [0.0,1.0,0.3162555344718534], + [0.0,1.0,0.33733923676997696], + [0.0,1.0,0.3584229390681005], + [0.0,1.0,0.3795066413662241], + [0.0,1.0,0.40059034366434765], + [0.0,1.0,0.4216740459624709], + [0.0,1.0,0.4427577482605948], + [0.0,1.0,0.46384145055871834], + [0.0,1.0,0.4849251528568419], + [0.0,1.0,0.5060088551549654], + [0.0,1.0,0.527092557453089], + [0.0,1.0,0.5481762597512125], + [0.0,1.0,0.5692599620493362], + [0.0,1.0,0.5903436643474597], + [0.0,1.0,0.6114273666455833], + [0.0,1.0,0.6325110689437062], + [0.0,1.0,0.6535947712418304], + [0.0,1.0,0.6746784735399539], + [0.0,1.0,0.6957621758380775], + [0.0,1.0,0.716845878136201], + [0.0,1.0,0.7379295804343246], + [0.0,1.0,0.7590132827324482], + [0.0,1.0,0.7800969850305717], + [0.0,1.0,0.8011806873286953], + [0.0,1.0,0.8222643896268188], + [0.0,1.0,0.8433480919249424], + [0.0,1.0,0.8644317942230659], + [0.0,1.0,0.8855154965211895], + [0.0,1.0,0.9065991988193131], + [0.0,1.0,0.9276829011174367], + [0.0,1.0,0.9487666034155602], + [0.0,1.0,0.9698503057136831], + [0.0,1.0,0.9909340080118073], + [0.0,0.9878516624040916,1.0], + [0.0,0.9665387894288145,1.0], + [0.0,0.9452259164535375,1.0], + [0.0,0.9239130434782604,1.0], + [0.0,0.9026001705029834,1.0], + [0.0,0.8812872975277063,1.0], + [0.0,0.8599744245524292,1.0], + [0.0,0.8386615515771522,1.0], + [0.0,0.8173486786018751,1.0], + [0.0,0.796035805626598,1.0], + [0.0,0.774722932651321,1.0], + [0.0,0.753410059676044,1.0], + [0.0,0.7320971867007668,1.0], + [0.0,0.7107843137254899,1.0], + [0.0,0.6894714407502134,1.0], + [0.0,0.6681585677749358,1.0], + [0.0,0.6468456947996586,1.0], + [0.0,0.6255328218243816,1.0], + [0.0,0.6042199488491045,1.0], + [0.0,0.5829070758738275,1.0], + [0.0,0.5615942028985503,1.0], + [0.0,0.5402813299232734,1.0], + [0.0,0.5189684569479963,1.0], + [0.0,0.49765558397271925,1.0], + [0.0,0.4763427109974422,1.0], + [0.0,0.4550298380221651,1.0], + [0.0,0.43371696504688806,1.0], + [0.0,0.412404092071611,1.0], + [0.0,0.39109121909633393,1.0], + [0.0,0.36977834612105687,1.0], + [0.0,0.34846547314578047,1.0], + [0.0,0.32715260017050274,1.0], + [0.0,0.3058397271952257,1.0], + [0.0,0.2845268542199486,1.0], + [0.0,0.26321398124467155,1.0], + [0.0,0.24190110826939448,1.0], + [0.0,0.22058823529411742,1.0], + [0.0,0.19927536231884035,1.0], + [0.0,0.1779624893435633,1.0], + [0.0,0.15664961636828623,1.0], + [0.0,0.13533674339300916,1.0], + [0.0,0.1140238704177321,1.0], + [0.0,0.09271099744245515,1.0], + [0.0,0.07139812446717808,1.0], + [0.0,0.05008525149190102,1.0], + [0.0,0.028772378516623953,1.0], + [0.0,0.007459505541347444,1.0], + [0.013853367433930218,0.0,1.0], + [0.035166240409207294,0.0,1.0], + [0.056479113384484365,0.0,1.0], + [0.07779198635976144,0.0,1.0], + [0.09910485933503851,0.0,1.0], + [0.12041773231031558,0.0,1.0], + [0.14173060528559267,0.0,1.0], + [0.16304347826086973,0.0,1.0], + [0.1843563512361468,0.0,1.0], + [0.20566922421142386,0.0,1.0], + [0.22698209718670095,0.0,1.0], + [0.24829497016197802,0.0,1.0], + [0.2696078431372551,0.0,1.0], + [0.2909207161125322,0.0,1.0], + [0.31223358908780924,0.0,1.0], + [0.3335464620630857,0.0,1.0], + [0.35485933503836337,0.0,1.0], + [0.3761722080136405,0.0,1.0], + [0.39748508098891755,0.0,1.0], + [0.4187979539641946,0.0,1.0], + [0.4401108269394717,0.0,1.0], + [0.46142369991474874,0.0,1.0], + [0.4827365728900258,0.0,1.0], + [0.5040494458653029,0.0,1.0], + [0.5253623188405799,0.0,1.0], + [0.546675191815857,0.0,1.0], + [0.5679880647911341,0.0,1.0], + [0.5893009377664112,0.0,1.0], + [0.6106138107416883,0.0,1.0], + [0.6319266837169654,0.0,1.0], + [0.6532395566922424,0.0,1.0], + [0.6745524296675188,0.0,1.0], + [0.6958653026427966,0.0,1.0], + [0.7171781756180736,0.0,1.0], + [0.7384910485933507,0.0,1.0], + [0.7598039215686277,0.0,1.0], + [0.7811167945439048,0.0,1.0], + [0.8024296675191819,0.0,1.0], + [0.8237425404944589,0.0,1.0], + [0.8450554134697361,0.0,1.0], + [0.8663682864450132,0.0,1.0], + [0.8876811594202902,0.0,1.0], + [0.9089940323955673,0.0,1.0], + [0.9303069053708444,0.0,1.0], + [0.9516197783461214,0.0,1.0], + [0.9729326513213985,0.0,1.0], + [0.9942455242966756,0.0,1.0], + [1.0,0.0,0.984441602728048], + [1.0,0.0,0.9631287297527703], + [1.0,0.0,0.9418158567774934], + [1.0,0.0,0.9205029838022163], + [1.0,0.0,0.8991901108269392], + [1.0,0.0,0.8778772378516622], + [1.0,0.0,0.8565643648763852], + [1.0,0.0,0.8352514919011081], + [1.0,0.0,0.8139386189258311], + [1.0,0.0,0.7926257459505541], + [1.0,0.0,0.7713128729752771], + [1.0,0.0,0.75] ], + gist_rainbow_r: [ + [1.0,0.0,0.75], + [1.0,0.0,0.7713128729752771], + [1.0,0.0,0.7926257459505541], + [1.0,0.0,0.8139386189258311], + [1.0,0.0,0.8352514919011081], + [1.0,0.0,0.8565643648763852], + [1.0,0.0,0.8778772378516623], + [1.0,0.0,0.8991901108269393], + [1.0,0.0,0.9205029838022164], + [1.0,0.0,0.9418158567774935], + [1.0,0.0,0.9631287297527704], + [1.0,0.0,0.9844416027280475], + [0.9942455242966755,0.0,1.0], + [0.9729326513213984,0.0,1.0], + [0.9516197783461213,0.0,1.0], + [0.9303069053708442,0.0,1.0], + [0.9089940323955671,0.0,1.0], + [0.88768115942029,0.0,1.0], + [0.866368286445013,0.0,1.0], + [0.8450554134697359,0.0,1.0], + [0.8237425404944588,0.0,1.0], + [0.8024296675191818,0.0,1.0], + [0.7811167945439047,0.0,1.0], + [0.7598039215686276,0.0,1.0], + [0.7384910485933506,0.0,1.0], + [0.7171781756180735,0.0,1.0], + [0.6958653026427963,0.0,1.0], + [0.6745524296675194,0.0,1.0], + [0.6532395566922422,0.0,1.0], + [0.6319266837169653,0.0,1.0], + [0.6106138107416881,0.0,1.0], + [0.589300937766411,0.0,1.0], + [0.567988064791134,0.0,1.0], + [0.546675191815857,0.0,1.0], + [0.5253623188405798,0.0,1.0], + [0.5040494458653028,0.0,1.0], + [0.4827365728900257,0.0,1.0], + [0.46142369991474874,0.0,1.0], + [0.44011082693947157,0.0,1.0], + [0.4187979539641945,0.0,1.0], + [0.3974850809889173,0.0,1.0], + [0.3761722080136405,0.0,1.0], + [0.3548593350383632,0.0,1.0], + [0.33354646206308614,0.0,1.0], + [0.31223358908780907,0.0,1.0], + [0.2909207161125321,0.0,1.0], + [0.26960784313725494,0.0,1.0], + [0.24829497016197788,0.0,1.0], + [0.22698209718670082,0.0,1.0], + [0.20566922421142386,0.0,1.0], + [0.1843563512361467,0.0,1.0], + [0.16304347826086962,0.0,1.0], + [0.14173060528559256,0.0,1.0], + [0.1204177323103156,0.0,1.0], + [0.09910485933503832,0.0,1.0], + [0.07779198635976126,0.0,1.0], + [0.05647911338448419,0.0,1.0], + [0.03516624040920724,0.0,1.0], + [0.013853367433930064,0.0,1.0], + [0.0,0.007459505541347003,1.0], + [0.0,0.028772378516624064,1.0], + [0.0,0.050085251491900976,1.0], + [0.0,0.07139812446717819,1.0], + [0.0,0.09271099744245526,1.0], + [0.0,0.11402387041773232,1.0], + [0.0,0.13533674339300938,1.0], + [0.0,0.15664961636828614,1.0], + [0.0,0.1779624893435635,1.0], + [0.0,0.19927536231884058,1.0], + [0.0,0.22058823529411764,1.0], + [0.0,0.2419011082693947,1.0], + [0.0,0.26321398124467177,1.0], + [0.0,0.28452685421994883,1.0], + [0.0,0.3058397271952259,1.0], + [0.0,0.3271526001705026,1.0], + [0.0,0.34846547314578,1.0], + [0.0,0.3697783461210571,1.0], + [0.0,0.39109121909633415,1.0], + [0.0,0.4124040920716112,1.0], + [0.0,0.4337169650468883,1.0], + [0.0,0.45502983802216534,1.0], + [0.0,0.4763427109974424,1.0], + [0.0,0.49765558397271914,1.0], + [0.0,0.5189684569479965,1.0], + [0.0,0.5402813299232736,1.0], + [0.0,0.5615942028985507,1.0], + [0.0,0.5829070758738277,1.0], + [0.0,0.6042199488491048,1.0], + [0.0,0.6255328218243819,1.0], + [0.0,0.6468456947996589,1.0], + [0.0,0.6681585677749357,1.0], + [0.0,0.689471440750213,1.0], + [0.0,0.7107843137254901,1.0], + [0.0,0.7320971867007672,1.0], + [0.0,0.7534100596760442,1.0], + [0.0,0.7747229326513213,1.0], + [0.0,0.7960358056265984,1.0], + [0.0,0.8173486786018754,1.0], + [0.0,0.8386615515771522,1.0], + [0.0,0.8599744245524296,1.0], + [0.0,0.8812872975277066,1.0], + [0.0,0.9026001705029837,1.0], + [0.0,0.9239130434782608,1.0], + [0.0,0.9452259164535378,1.0], + [0.0,0.9665387894288149,1.0], + [0.0,0.987851662404092,1.0], + [0.0,1.0,0.9909340080118073], + [0.0,1.0,0.9698503057136835], + [0.0,1.0,0.94876660341556], + [0.0,1.0,0.9276829011174363], + [0.0,1.0,0.9065991988193128], + [0.0,1.0,0.8855154965211892], + [0.0,1.0,0.8644317942230657], + [0.0,1.0,0.8433480919249421], + [0.0,1.0,0.8222643896268189], + [0.0,1.0,0.8011806873286951], + [0.0,1.0,0.7800969850305715], + [0.0,1.0,0.759013282732448], + [0.0,1.0,0.7379295804343244], + [0.0,1.0,0.7168458781362008], + [0.0,1.0,0.6957621758380772], + [0.0,1.0,0.6746784735399537], + [0.0,1.0,0.6535947712418304], + [0.0,1.0,0.6325110689437066], + [0.0,1.0,0.6114273666455831], + [0.0,1.0,0.5903436643474596], + [0.0,1.0,0.5692599620493359], + [0.0,1.0,0.5481762597512124], + [0.0,1.0,0.5270925574530889], + [0.0,1.0,0.5060088551549653], + [0.0,1.0,0.4849251528568418], + [0.0,1.0,0.46384145055871817], + [0.0,1.0,0.4427577482605952], + [0.0,1.0,0.42167404596247104], + [0.0,1.0,0.40059034366434754], + [0.0,1.0,0.3795066413662239], + [0.0,1.0,0.3584229390681004], + [0.0,1.0,0.3373392367699769], + [0.0,1.0,0.3162555344718533], + [0.0,1.0,0.2951718321737298], + [0.0,1.0,0.27408812987560616], + [0.0,1.0,0.25300442757748265], + [0.0,1.0,0.23192072527935914], + [0.0,1.0,0.21083702298123552], + [0.0,1.0,0.18975332068311201], + [0.0,1.0,0.1686696183849884], + [0.0,1.0,0.1475859160868649], + [0.0,1.0,0.12650221378874127], + [0.0,1.0,0.10541851149061832], + [0.0,1.0,0.08433480919249425], + [0.0,1.0,0.06325110689437063], + [0.0,1.0,0.04216740459624713], + [0.0,1.0,0.021083702298123508], + [0.0,1.0,0.0], + [0.021197668256491782,1.0,0.0], + [0.042395336512983564,1.0,0.0], + [0.06359300476947534,1.0,0.0], + [0.08479067302596713,1.0,0.0], + [0.1059883412824589,1.0,0.0], + [0.12718600953895068,1.0,0.0], + [0.14838367779544245,1.0,0.0], + [0.16958134605193426,1.0,0.0], + [0.19077901430842603,1.0,0.0], + [0.2119766825649178,1.0,0.0], + [0.233174350821409,1.0,0.0], + [0.25437201907790136,1.0,0.0], + [0.27556968733439313,1.0,0.0], + [0.2967673555908849,1.0,0.0], + [0.31796502384737674,1.0,0.0], + [0.3391626921038685,1.0,0.0], + [0.3603603603603603,1.0,0.0], + [0.38155802861685206,1.0,0.0], + [0.40275569687334384,1.0,0.0], + [0.4239533651298356,1.0,0.0], + [0.4451510333863274,1.0,0.0], + [0.46634870164281916,1.0,0.0], + [0.48754636989931094,1.0,0.0], + [0.5087440381558027,1.0,0.0], + [0.5299417064122945,1.0,0.0], + [0.5511393746687863,1.0,0.0], + [0.5723370429252774,1.0,0.0], + [0.5935347111817698,1.0,0.0], + [0.6147323794382616,1.0,0.0], + [0.6359300476947535,1.0,0.0], + [0.6571277159512452,1.0,0.0], + [0.678325384207737,1.0,0.0], + [0.6995230524642287,1.0,0.0], + [0.7207207207207206,1.0,0.0], + [0.7419183889772123,1.0,0.0], + [0.7631160572337041,1.0,0.0], + [0.7843137254901958,1.0,0.0], + [0.8055113937466877,1.0,0.0], + [0.8267090620031794,1.0,0.0], + [0.8479067302596712,1.0,0.0], + [0.8691043985161631,1.0,0.0], + [0.8903020667726548,1.0,0.0], + [0.9114997350291459,1.0,0.0], + [0.9326974032856383,1.0,0.0], + [0.9538950715421302,1.0,0.0], + [0.9750927397986219,1.0,0.0], + [0.9962904080551137,1.0,0.0], + [1.0,0.9825119236883945,0.0], + [1.0,0.9613142554319027,0.0], + [1.0,0.9401165871754109,0.0], + [1.0,0.9189189189189191,0.0], + [1.0,0.8977212506624274,0.0], + [1.0,0.8765235824059355,0.0], + [1.0,0.8553259141494438,0.0], + [1.0,0.834128245892952,0.0], + [1.0,0.8129305776364601,0.0], + [1.0,0.7917329093799683,0.0], + [1.0,0.7705352411234766,0.0], + [1.0,0.7493375728669853,0.0], + [1.0,0.728139904610493,0.0], + [1.0,0.7069422363540012,0.0], + [1.0,0.6857445680975094,0.0], + [1.0,0.6645468998410176,0.0], + [1.0,0.6433492315845258,0.0], + [1.0,0.622151563328034,0.0], + [1.0,0.6009538950715423,0.0], + [1.0,0.5797562268150505,0.0], + [1.0,0.5585585585585586,0.0], + [1.0,0.5373608903020668,0.0], + [1.0,0.5161632220455751,0.0], + [1.0,0.49496555378908325,0.0], + [1.0,0.4737678855325914,0.0], + [1.0,0.4525702172760997,0.0], + [1.0,0.43137254901960786,0.0], + [1.0,0.4101748807631167,0.0], + [1.0,0.3889772125066243,0.0], + [1.0,0.3677795442501325,0.0], + [1.0,0.34658187599364065,0.0], + [1.0,0.32538420773714893,0.0], + [1.0,0.3041865394806571,0.0], + [1.0,0.2829888712241653,0.0], + [1.0,0.26179120296767355,0.0], + [1.0,0.24059353471118172,0.0], + [1.0,0.2193958664546899,0.0], + [1.0,0.19819819819819817,0.0], + [1.0,0.17700052994170634,0.0], + [1.0,0.1558028616852145,0.0], + [1.0,0.1346051934287228,0.0], + [1.0,0.11340752517223096,0.0], + [1.0,0.09220985691573913,0.0], + [1.0,0.07101218865924797,0.0], + [1.0,0.04981452040275558,0.0], + [1.0,0.02861685214626375,0.0], + [1.0,0.00741918388977203,0.0], + [1.0,0.0,0.013594771241830174], + [1.0,0.0,0.03450980392156872], + [1.0,0.0,0.055424836601307266], + [1.0,0.0,0.07633986928104582], + [1.0,0.0,0.09725490196078436], + [1.0,0.0,0.1181699346405229], + [1.0,0.0,0.13908496732026146], + [1.0,0.0,0.16] ], + gist_stern: [ + [0.0,0.0,0.0], + [0.0716922966627236,0.00392156862745098,0.00784313725490196], + [0.1433845933254472,0.00784313725490196,0.01568627450980392], + [0.2150768899881708,0.011764705882352941,0.023529411764705882], + [0.2867691866508944,0.01568627450980392,0.03137254901960784], + [0.358461483313618,0.0196078431372549,0.0392156862745098], + [0.4301537799763416,0.023529411764705882,0.047058823529411764], + [0.5018460766390651,0.027450980392156862,0.054901960784313725], + [0.5735383733017888,0.03137254901960784,0.06274509803921569], + [0.6452306699645124,0.03529411764705882,0.07058823529411765], + [0.716922966627236,0.0392156862745098,0.0784313725490196], + [0.7886152632899596,0.043137254901960784,0.08627450980392157], + [0.8603075599526832,0.047058823529411764,0.09411764705882353], + [0.9319998566154067,0.050980392156862744,0.10196078431372549], + [0.9989938154473259,0.054901960784313725,0.10980392156862745], + [0.9794562513177314,0.058823529411764705,0.11764705882352941], + [0.9599186871881369,0.06274509803921569,0.12549019607843137], + [0.9403811230585424,0.06666666666666667,0.13333333333333333], + [0.9208435589289479,0.07058823529411765,0.1411764705882353], + [0.9013059947993535,0.07450980392156863,0.14901960784313725], + [0.881768430669759,0.0784313725490196,0.1568627450980392], + [0.8622308665401645,0.08235294117647059,0.16470588235294117], + [0.8426933024105699,0.08627450980392157,0.17254901960784313], + [0.8231557382809755,0.09019607843137255,0.1803921568627451], + [0.803618174151381,0.09411764705882353,0.18823529411764706], + [0.7840806100217865,0.09803921568627451,0.19607843137254902], + [0.764543045892192,0.10196078431372549,0.20392156862745098], + [0.7450054817625975,0.10588235294117647,0.21176470588235294], + [0.725467917633003,0.10980392156862745,0.2196078431372549], + [0.7059303535034085,0.11372549019607843,0.22745098039215686], + [0.6863927893738141,0.11764705882352941,0.23529411764705882], + [0.6668552252442196,0.12156862745098039,0.24313725490196078], + [0.6473176611146252,0.12549019607843137,0.25098039215686274], + [0.6277800969850307,0.12941176470588234,0.2588235294117647], + [0.6082425328554361,0.13333333333333333,0.26666666666666666], + [0.5887049687258417,0.13725490196078433,0.27450980392156865], + [0.5691674045962472,0.1411764705882353,0.2823529411764706], + [0.5496298404666529,0.14509803921568626,0.2901960784313725], + [0.5300922763370581,0.14901960784313725,0.2980392156862745], + [0.5105547122074636,0.15294117647058825,0.3058823529411765], + [0.4910171480778691,0.1568627450980392,0.3137254901960784], + [0.4714795839482748,0.16078431372549018,0.32156862745098036], + [0.4519420198186802,0.16470588235294117,0.32941176470588235], + [0.4324044556890857,0.16862745098039217,0.33725490196078434], + [0.4128668915594912,0.17254901960784313,0.34509803921568627], + [0.3933293274298969,0.1764705882352941,0.3529411764705882], + [0.3737917633003023,0.1803921568627451,0.3607843137254902], + [0.35425419917070766,0.1843137254901961,0.3686274509803922], + [0.33471663504111326,0.18823529411764706,0.3764705882352941], + [0.3151790709115191,0.19215686274509802,0.38431372549019605], + [0.29564150678192413,0.19607843137254902,0.39215686274509803], + [0.27610394265232974,0.2,0.4], + [0.25656637852273523,0.20392156862745098,0.40784313725490196], + [0.23702881439314105,0.20784313725490194,0.4156862745098039], + [0.2174912502635462,0.21176470588235294,0.4235294117647059], + [0.1979536861339518,0.21568627450980393,0.43137254901960786], + [0.1784161220043573,0.2196078431372549,0.4392156862745098], + [0.15887855787476313,0.22352941176470587,0.44705882352941173], + [0.13934099374516828,0.22745098039215686,0.4549019607843137], + [0.11980342961557389,0.23137254901960785,0.4627450980392157], + [0.10026586548597938,0.23529411764705882,0.47058823529411764], + [0.08072830135638509,0.2392156862745098,0.4784313725490196], + [0.06119073722679036,0.24313725490196078,0.48627450980392156], + [0.04165317309719585,0.24705882352941178,0.49411764705882355], + [0.25098039215686274,0.25098039215686274,0.5019607843137255], + [0.2549019607843137,0.2549019607843137,0.5098039215686274], + [0.2588235294117647,0.2588235294117647,0.5176470588235293], + [0.2627450980392157,0.2627450980392157,0.5254901960784314], + [0.26666666666666666,0.26666666666666666,0.5333333333333333], + [0.27058823529411763,0.27058823529411763,0.5411764705882353], + [0.27450980392156865,0.27450980392156865,0.5490196078431373], + [0.2784313725490196,0.2784313725490196,0.5568627450980392], + [0.2823529411764706,0.2823529411764706,0.5647058823529412], + [0.28627450980392155,0.28627450980392155,0.5725490196078431], + [0.2901960784313725,0.2901960784313725,0.580392156862745], + [0.29411764705882354,0.29411764705882354,0.5882352941176471], + [0.2980392156862745,0.2980392156862745,0.596078431372549], + [0.30196078431372547,0.30196078431372547,0.6039215686274509], + [0.3058823529411765,0.3058823529411765,0.611764705882353], + [0.30980392156862746,0.30980392156862746,0.6196078431372549], + [0.3137254901960784,0.3137254901960784,0.6274509803921569], + [0.3176470588235294,0.3176470588235294,0.6352941176470588], + [0.32156862745098036,0.32156862745098036,0.6431372549019607], + [0.3254901960784314,0.3254901960784314,0.6509803921568628], + [0.32941176470588235,0.32941176470588235,0.6588235294117647], + [0.3333333333333333,0.3333333333333333,0.6666666666666666], + [0.33725490196078434,0.33725490196078434,0.6745098039215687], + [0.3411764705882353,0.3411764705882353,0.6823529411764706], + [0.34509803921568627,0.34509803921568627,0.6901960784313725], + [0.34901960784313724,0.34901960784313724,0.6980392156862745], + [0.3529411764705882,0.3529411764705882,0.7058823529411764], + [0.3568627450980392,0.3568627450980392,0.7137254901960784], + [0.3607843137254902,0.3607843137254902,0.7215686274509804], + [0.3647058823529412,0.36470588235294116,0.7294117647058823], + [0.3686274509803922,0.3686274509803922,0.7372549019607844], + [0.37254901960784315,0.37254901960784315,0.7450980392156863], + [0.3764705882352941,0.3764705882352941,0.7529411764705882], + [0.3803921568627451,0.3803921568627451,0.7607843137254902], + [0.38431372549019605,0.38431372549019605,0.7686274509803921], + [0.38823529411764707,0.38823529411764707,0.7764705882352941], + [0.39215686274509803,0.39215686274509803,0.7843137254901961], + [0.39607843137254906,0.396078431372549,0.792156862745098], + [0.4,0.4,0.8], + [0.403921568627451,0.403921568627451,0.807843137254902], + [0.40784313725490196,0.40784313725490196,0.8156862745098039], + [0.4117647058823529,0.4117647058823529,0.8235294117647058], + [0.4156862745098039,0.4156862745098039,0.8313725490196078], + [0.4196078431372549,0.4196078431372549,0.8392156862745098], + [0.4235294117647059,0.4235294117647059,0.8470588235294118], + [0.42745098039215684,0.42745098039215684,0.8549019607843137], + [0.43137254901960786,0.43137254901960786,0.8627450980392157], + [0.43529411764705883,0.43529411764705883,0.8705882352941177], + [0.4392156862745098,0.4392156862745098,0.8784313725490196], + [0.44313725490196076,0.44313725490196076,0.8862745098039215], + [0.4470588235294117,0.44705882352941173,0.8941176470588235], + [0.45098039215686275,0.45098039215686275,0.9019607843137255], + [0.4549019607843137,0.4549019607843137,0.9098039215686274], + [0.45882352941176474,0.4588235294117647,0.9176470588235294], + [0.4627450980392157,0.4627450980392157,0.9254901960784314], + [0.4666666666666667,0.4666666666666667,0.9333333333333333], + [0.47058823529411764,0.47058823529411764,0.9411764705882353], + [0.4745098039215686,0.4745098039215686,0.9490196078431372], + [0.4784313725490196,0.4784313725490196,0.9568627450980391], + [0.4823529411764706,0.4823529411764706,0.9647058823529412], + [0.48627450980392156,0.48627450980392156,0.9725490196078431], + [0.49019607843137253,0.49019607843137253,0.9803921568627451], + [0.49411764705882355,0.49411764705882355,0.9882352941176471], + [0.4980392156862745,0.4980392156862745,0.996078431372549], + [0.5019607843137255,0.5019607843137255,0.9916562369628703], + [0.5058823529411764,0.5058823529411764,0.9749687108886107], + [0.5098039215686274,0.5098039215686274,0.9582811848143513], + [0.5137254901960784,0.5137254901960784,0.9415936587400917], + [0.5176470588235293,0.5176470588235293,0.9249061326658328], + [0.5215686274509803,0.5215686274509804,0.9082186065915727], + [0.5254901960784314,0.5254901960784314,0.8915310805173133], + [0.5294117647058824,0.5294117647058824,0.8748435544430537], + [0.5333333333333333,0.5333333333333333,0.8581560283687943], + [0.5372549019607844,0.5372549019607843,0.8414685022945347], + [0.5411764705882354,0.5411764705882353,0.8247809762202754], + [0.5450980392156863,0.5450980392156862,0.8080934501460157], + [0.5490196078431373,0.5490196078431373,0.7914059240717564], + [0.5529411764705883,0.5529411764705883,0.7747183979974968], + [0.5568627450980392,0.5568627450980392,0.7580308719232374], + [0.5607843137254902,0.5607843137254902,0.7413433458489778], + [0.5647058823529412,0.5647058823529412,0.7246558197747184], + [0.5686274509803921,0.5686274509803921,0.7079682937004588], + [0.5725490196078431,0.5725490196078431,0.6912807676261994], + [0.5764705882352941,0.5764705882352941,0.6745932415519398], + [0.580392156862745,0.580392156862745,0.6579057154776808], + [0.5843137254901961,0.5843137254901961,0.6412181894034208], + [0.5882352941176471,0.5882352941176471,0.6245306633291614], + [0.592156862745098,0.592156862745098,0.6078431372549018], + [0.596078431372549,0.596078431372549,0.5911556111806424], + [0.6,0.6,0.5744680851063828], + [0.6039215686274509,0.6039215686274509,0.5577805590321234], + [0.607843137254902,0.6078431372549019,0.5410930329578638], + [0.611764705882353,0.611764705882353,0.5244055068836044], + [0.615686274509804,0.615686274509804,0.5077179808093448], + [0.6196078431372549,0.6196078431372549,0.49103045473508533], + [0.6235294117647059,0.6235294117647059,0.47434292866082584], + [0.6274509803921569,0.6274509803921569,0.45765540258656634], + [0.6313725490196078,0.6313725490196078,0.44096787651230684], + [0.6352941176470588,0.6352941176470588,0.42428035043804735], + [0.6392156862745099,0.6392156862745098,0.40759282436378785], + [0.6431372549019606,0.6431372549019607,0.3909052982895289], + [0.6470588235294118,0.6470588235294118,0.37421777221526886], + [0.6509803921568628,0.6509803921568628,0.35753024614100937], + [0.6549019607843137,0.6549019607843137,0.34084272006674987], + [0.6588235294117647,0.6588235294117647,0.3241551939924904], + [0.6627450980392158,0.6627450980392157,0.3074676679182309], + [0.6666666666666667,0.6666666666666666,0.2907801418439714], + [0.6705882352941177,0.6705882352941176,0.2740926157697119], + [0.6745098039215687,0.6745098039215687,0.2574050896954524], + [0.6784313725490196,0.6784313725490196,0.2407175636211929], + [0.6823529411764706,0.6823529411764706,0.2240300375469334], + [0.6862745098039216,0.6862745098039216,0.2073425114726739], + [0.6901960784313725,0.6901960784313725,0.1906549853984144], + [0.6941176470588235,0.6941176470588235,0.17396745932415492], + [0.6980392156862745,0.6980392156862745,0.15727993324989542], + [0.7019607843137254,0.7019607843137254,0.14059240717563593], + [0.7058823529411764,0.7058823529411764,0.12390488110137698], + [0.7098039215686275,0.7098039215686275,0.10721735502711693], + [0.7137254901960784,0.7137254901960784,0.09052982895285744], + [0.7176470588235294,0.7176470588235294,0.07384230287859794], + [0.7215686274509804,0.7215686274509804,0.05715477680433845], + [0.7254901960784313,0.7254901960784313,0.04046725073007895], + [0.7294117647058823,0.7294117647058823,0.023779724655819456], + [0.7333333333333334,0.7333333333333333,0.007092198581559961], + [0.7372549019607844,0.7372549019607844,0.008509064002959924], + [0.7411764705882353,0.7411764705882353,0.023307436182020223], + [0.7450980392156863,0.7450980392156863,0.038105808361080525], + [0.7490196078431373,0.7490196078431373,0.05290418054014082], + [0.7529411764705882,0.7529411764705882,0.06770255271920113], + [0.7568627450980392,0.7568627450980392,0.08250092489826143], + [0.7607843137254902,0.7607843137254902,0.09729929707732173], + [0.7647058823529411,0.7647058823529411,0.11209766925638202], + [0.7686274509803921,0.7686274509803921,0.1268960414354419], + [0.7725490196078431,0.7725490196078432,0.14169441361450263], + [0.776470588235294,0.7764705882352941,0.15649278579356293], + [0.7803921568627451,0.7803921568627451,0.17129115797262323], + [0.7843137254901961,0.7843137254901961,0.18608953015168353], + [0.788235294117647,0.788235294117647,0.20088790233074383], + [0.792156862745098,0.792156862745098,0.21568627450980413], + [0.796078431372549,0.796078431372549,0.23048464668886443], + [0.7999999999999999,0.8,0.24528301886792472], + [0.803921568627451,0.803921568627451,0.260081391046985], + [0.807843137254902,0.807843137254902,0.2748797632260453], + [0.8117647058823529,0.8117647058823529,0.2896781354051056], + [0.8156862745098039,0.8156862745098039,0.3044765075841659], + [0.8196078431372549,0.8196078431372549,0.3192748797632262], + [0.8235294117647058,0.8235294117647058,0.33407325194228654], + [0.8274509803921569,0.8274509803921568,0.3488716241213468], + [0.8313725490196077,0.8313725490196078,0.3636699963004067], + [0.8352941176470589,0.8352941176470589,0.3784683684794674], + [0.8392156862745098,0.8392156862745098,0.39326674065852774], + [0.8431372549019608,0.8431372549019608,0.408065112837588], + [0.8470588235294118,0.8470588235294118,0.42286348501664833], + [0.8509803921568628,0.8509803921568627,0.4376618571957086], + [0.8549019607843138,0.8549019607843137,0.45246022937476893], + [0.8588235294117648,0.8588235294117647,0.4672586015538292], + [0.8627450980392157,0.8627450980392157,0.4820569737328895], + [0.8666666666666667,0.8666666666666667,0.4968553459119498], + [0.8705882352941177,0.8705882352941177,0.5116537180910101], + [0.8745098039215686,0.8745098039215686,0.5264520902700704], + [0.8784313725490196,0.8784313725490196,0.5412504624491307], + [0.8823529411764706,0.8823529411764706,0.556048834628191], + [0.8862745098039215,0.8862745098039215,0.5708472068072513], + [0.8901960784313725,0.8901960784313725,0.5856455789863116], + [0.8941176470588235,0.8941176470588235,0.6004439511653715], + [0.8980392156862745,0.8980392156862745,0.6152423233444322], + [0.9019607843137255,0.9019607843137255,0.6300406955234925], + [0.9058823529411765,0.9058823529411765,0.6448390677025528], + [0.9098039215686274,0.9098039215686274,0.6596374398816132], + [0.9137254901960784,0.9137254901960784,0.6744358120606734], + [0.9176470588235294,0.9176470588235294,0.6892341842397337], + [0.9215686274509804,0.9215686274509803,0.704032556418794], + [0.9254901960784314,0.9254901960784314,0.7188309285978544], + [0.9294117647058824,0.9294117647058824,0.7336293007769146], + [0.9333333333333333,0.9333333333333333,0.7484276729559749], + [0.9372549019607843,0.9372549019607843,0.7632260451350352], + [0.9411764705882353,0.9411764705882353,0.7780244173140956], + [0.9450980392156862,0.9450980392156862,0.7928227894931558], + [0.9490196078431372,0.9490196078431372,0.8076211616722161], + [0.9529411764705882,0.9529411764705882,0.8224195338512764], + [0.9568627450980391,0.9568627450980391,0.8372179060303363], + [0.9607843137254901,0.9607843137254902,0.852016278209397], + [0.9647058823529411,0.9647058823529412,0.8668146503884573], + [0.9686274509803922,0.9686274509803922,0.8816130225675176], + [0.9725490196078431,0.9725490196078431,0.8964113947465779], + [0.9764705882352941,0.9764705882352941,0.9112097669256382], + [0.9803921568627451,0.9803921568627451,0.9260081391046985], + [0.984313725490196,0.984313725490196,0.9408065112837588], + [0.988235294117647,0.9882352941176471,0.9556048834628191], + [0.9921568627450981,0.9921568627450981,0.9704032556418793], + [0.996078431372549,0.996078431372549,0.9852016278209397], + [1.0,1.0,1.0] ], + gist_stern_r: [ + [1.0,1.0,1.0], + [0.996078431372549,0.996078431372549,0.9852016278209397], + [0.9921568627450981,0.9921568627450981,0.9704032556418793], + [0.9882352941176471,0.9882352941176471,0.9556048834628191], + [0.9843137254901961,0.9843137254901961,0.9408065112837588], + [0.9803921568627451,0.9803921568627451,0.9260081391046985], + [0.9764705882352941,0.9764705882352941,0.9112097669256382], + [0.9725490196078431,0.9725490196078431,0.8964113947465779], + [0.9686274509803922,0.9686274509803922,0.8816130225675176], + [0.9647058823529412,0.9647058823529412,0.8668146503884573], + [0.9607843137254902,0.9607843137254902,0.852016278209397], + [0.9568627450980393,0.9568627450980393,0.8372179060303366], + [0.9529411764705882,0.9529411764705882,0.8224195338512763], + [0.9490196078431372,0.9490196078431372,0.8076211616722161], + [0.9450980392156862,0.9450980392156862,0.7928227894931558], + [0.9411764705882353,0.9411764705882353,0.7780244173140954], + [0.9372549019607843,0.9372549019607843,0.7632260451350352], + [0.9333333333333333,0.9333333333333333,0.7484276729559749], + [0.9294117647058824,0.9294117647058824,0.7336293007769146], + [0.9254901960784314,0.9254901960784314,0.7188309285978542], + [0.9215686274509804,0.9215686274509804,0.7040325564187939], + [0.9176470588235294,0.9176470588235294,0.6892341842397336], + [0.9137254901960784,0.9137254901960784,0.6744358120606733], + [0.9098039215686274,0.9098039215686274,0.659637439881613], + [0.9058823529411765,0.9058823529411765,0.6448390677025527], + [0.9019607843137255,0.9019607843137255,0.6300406955234925], + [0.8980392156862745,0.8980392156862745,0.6152423233444322], + [0.8941176470588236,0.8941176470588236,0.6004439511653719], + [0.8901960784313725,0.8901960784313725,0.5856455789863115], + [0.8862745098039215,0.8862745098039215,0.5708472068072512], + [0.8823529411764706,0.8823529411764706,0.5560488346281909], + [0.8784313725490196,0.8784313725490196,0.5412504624491306], + [0.8745098039215686,0.8745098039215686,0.5264520902700703], + [0.8705882352941177,0.8705882352941177,0.5116537180910101], + [0.8666666666666667,0.8666666666666667,0.4968553459119497], + [0.8627450980392157,0.8627450980392157,0.48205697373288936], + [0.8588235294117648,0.8588235294117648,0.46725860155382914], + [0.8549019607843138,0.8549019607843138,0.45246022937476893], + [0.8509803921568627,0.8509803921568627,0.4376618571957085], + [0.8470588235294118,0.8470588235294118,0.42286348501664817], + [0.8431372549019608,0.8431372549019608,0.40806511283758784], + [0.8392156862745098,0.8392156862745098,0.39326674065852774], + [0.8352941176470589,0.8352941176470589,0.3784683684794673], + [0.8313725490196078,0.8313725490196078,0.363669996300407], + [0.8274509803921568,0.8274509803921568,0.34887162412134665], + [0.8235294117647058,0.8235294117647058,0.33407325194228643], + [0.8196078431372549,0.8196078431372549,0.3192748797632261], + [0.8156862745098039,0.8156862745098039,0.3044765075841658], + [0.8117647058823529,0.8117647058823529,0.28967813540510545], + [0.807843137254902,0.807843137254902,0.27487976322604524], + [0.803921568627451,0.803921568627451,0.2600813910469849], + [0.8,0.8,0.24528301886792458], + [0.7960784313725491,0.7960784313725491,0.23048464668886426], + [0.7921568627450981,0.7921568627450981,0.21568627450980404], + [0.788235294117647,0.788235294117647,0.2008879023307436], + [0.7843137254901961,0.7843137254901961,0.1860895301516834], + [0.7803921568627451,0.7803921568627451,0.17129115797262306], + [0.7764705882352941,0.7764705882352941,0.15649278579356285], + [0.7725490196078432,0.7725490196078432,0.1416944136145024], + [0.7686274509803921,0.7686274509803921,0.1268960414354421], + [0.7647058823529411,0.7647058823529411,0.11209766925638187], + [0.7607843137254902,0.7607843137254902,0.09729929707732166], + [0.7568627450980392,0.7568627450980392,0.08250092489826122], + [0.7529411764705882,0.7529411764705882,0.06770255271920089], + [0.7490196078431373,0.7490196078431373,0.05290418054014068], + [0.7450980392156863,0.7450980392156863,0.03810580836108035], + [0.7411764705882353,0.7411764705882353,0.023307436182020247], + [0.7372549019607844,0.7372549019607844,0.008509064002959699], + [0.7333333333333334,0.7333333333333334,0.007092198581560237], + [0.7294117647058824,0.7294117647058824,0.023779724655819727], + [0.7254901960784315,0.7254901960784313,0.04046725073007922], + [0.7215686274509804,0.7215686274509804,0.05715477680433871], + [0.7176470588235294,0.7176470588235294,0.0738423028785982], + [0.7137254901960784,0.7137254901960784,0.0905298289528577], + [0.7098039215686276,0.7098039215686275,0.10721735502711695], + [0.7058823529411764,0.7058823529411764,0.12390488110137668], + [0.7019607843137254,0.7019607843137254,0.14059240717563617], + [0.6980392156862745,0.6980392156862745,0.15727993324989567], + [0.6941176470588235,0.6941176470588235,0.17396745932415517], + [0.6901960784313725,0.6901960784313725,0.19065498539841463], + [0.6862745098039216,0.6862745098039216,0.20734251147267413], + [0.6823529411764706,0.6823529411764706,0.22403003754693362], + [0.6784313725490196,0.6784313725490196,0.2407175636211929], + [0.6745098039215687,0.6745098039215687,0.2574050896954526], + [0.6705882352941177,0.6705882352941177,0.2740926157697121], + [0.6666666666666667,0.6666666666666667,0.2907801418439716], + [0.6627450980392157,0.6627450980392157,0.3074676679182311], + [0.6588235294117647,0.6588235294117647,0.3241551939924906], + [0.6549019607843137,0.6549019607843137,0.3408427200667501], + [0.6509803921568628,0.6509803921568628,0.3575302461410096], + [0.6470588235294118,0.6470588235294118,0.3742177722152688], + [0.6431372549019608,0.6431372549019607,0.3909052982895285], + [0.6392156862745098,0.6392156862745098,0.407592824363788], + [0.6352941176470588,0.6352941176470588,0.4242803504380475], + [0.6313725490196078,0.6313725490196078,0.440967876512307], + [0.6274509803921569,0.6274509803921569,0.4576554025865665], + [0.6235294117647059,0.6235294117647059,0.474342928660826], + [0.6196078431372549,0.6196078431372549,0.4910304547350855], + [0.615686274509804,0.615686274509804,0.5077179808093447], + [0.6117647058823529,0.611764705882353,0.5244055068836044], + [0.6078431372549019,0.607843137254902,0.5410930329578639], + [0.6039215686274509,0.603921568627451,0.5577805590321234], + [0.6,0.6,0.5744680851063829], + [0.596078431372549,0.596078431372549,0.5911556111806424], + [0.592156862745098,0.592156862745098,0.6078431372549019], + [0.588235294117647,0.5882352941176471,0.6245306633291614], + [0.5843137254901961,0.5843137254901961,0.6412181894034207], + [0.580392156862745,0.580392156862745,0.6579057154776804], + [0.5764705882352941,0.5764705882352941,0.6745932415519399], + [0.5725490196078431,0.5725490196078431,0.6912807676261994], + [0.5686274509803921,0.5686274509803921,0.7079682937004589], + [0.5647058823529412,0.5647058823529412,0.7246558197747184], + [0.5607843137254902,0.5607843137254902,0.7413433458489779], + [0.5568627450980392,0.5568627450980392,0.7580308719232374], + [0.5529411764705883,0.5529411764705883,0.7747183979974966], + [0.5490196078431373,0.5490196078431373,0.7914059240717564], + [0.5450980392156863,0.5450980392156863,0.8080934501460159], + [0.5411764705882353,0.5411764705882354,0.8247809762202754], + [0.5372549019607843,0.5372549019607843,0.8414685022945348], + [0.5333333333333333,0.5333333333333333,0.8581560283687943], + [0.5294117647058824,0.5294117647058824,0.8748435544430538], + [0.5254901960784314,0.5254901960784314,0.8915310805173133], + [0.5215686274509804,0.5215686274509804,0.9082186065915726], + [0.5176470588235293,0.5176470588235293,0.9249061326658323], + [0.5137254901960784,0.5137254901960784,0.9415936587400918], + [0.5098039215686274,0.5098039215686274,0.9582811848143513], + [0.5058823529411764,0.5058823529411764,0.9749687108886108], + [0.5019607843137255,0.5019607843137255,0.9916562369628703], + [0.4980392156862745,0.4980392156862745,0.996078431372549], + [0.49411764705882355,0.49411764705882355,0.9882352941176471], + [0.4901960784313726,0.4901960784313726,0.9803921568627451], + [0.4862745098039216,0.4862745098039216,0.9725490196078431], + [0.48235294117647065,0.48235294117647065,0.9647058823529414], + [0.4784313725490197,0.4784313725490196,0.9568627450980393], + [0.4745098039215687,0.4745098039215686,0.9490196078431372], + [0.47058823529411764,0.47058823529411764,0.9411764705882353], + [0.4666666666666667,0.4666666666666667,0.9333333333333333], + [0.4627450980392157,0.4627450980392157,0.9254901960784314], + [0.45882352941176474,0.45882352941176474,0.9176470588235294], + [0.4549019607843138,0.4549019607843138,0.9098039215686274], + [0.4509803921568628,0.4509803921568627,0.9019607843137255], + [0.44705882352941173,0.44705882352941173,0.8941176470588236], + [0.44313725490196076,0.44313725490196076,0.8862745098039215], + [0.4392156862745098,0.4392156862745098,0.8784313725490196], + [0.43529411764705883,0.43529411764705883,0.8705882352941177], + [0.43137254901960786,0.43137254901960786,0.8627450980392157], + [0.4274509803921569,0.4274509803921569,0.8549019607843137], + [0.4235294117647058,0.42352941176470593,0.8470588235294118], + [0.4196078431372551,0.41960784313725497,0.83921568627451], + [0.4156862745098039,0.4156862745098039,0.8313725490196078], + [0.4117647058823529,0.4117647058823529,0.8235294117647058], + [0.40784313725490196,0.40784313725490196,0.8156862745098039], + [0.403921568627451,0.403921568627451,0.807843137254902], + [0.3999999999999999,0.4,0.8], + [0.39607843137254894,0.39607843137254906,0.792156862745098], + [0.392156862745098,0.3921568627450981,0.7843137254901961], + [0.388235294117647,0.388235294117647,0.7764705882352941], + [0.38431372549019605,0.38431372549019605,0.7686274509803921], + [0.3803921568627451,0.3803921568627451,0.7607843137254902], + [0.3764705882352941,0.3764705882352941,0.7529411764705882], + [0.37254901960784315,0.37254901960784315,0.7450980392156863], + [0.3686274509803922,0.3686274509803922,0.7372549019607844], + [0.3647058823529412,0.3647058823529412,0.7294117647058824], + [0.36078431372549025,0.36078431372549025,0.7215686274509804], + [0.3568627450980393,0.3568627450980393,0.7137254901960787], + [0.3529411764705882,0.3529411764705882,0.7058823529411764], + [0.34901960784313724,0.34901960784313724,0.6980392156862745], + [0.34509803921568627,0.34509803921568627,0.6901960784313725], + [0.3411764705882353,0.3411764705882353,0.6823529411764706], + [0.33725490196078434,0.33725490196078434,0.6745098039215687], + [0.33333333333333337,0.33333333333333337,0.6666666666666667], + [0.3294117647058823,0.3294117647058824,0.6588235294117647], + [0.3254901960784313,0.3254901960784313,0.6509803921568628], + [0.32156862745098036,0.32156862745098036,0.6431372549019607], + [0.3176470588235294,0.3176470588235294,0.6352941176470588], + [0.3137254901960784,0.3137254901960784,0.6274509803921569], + [0.30980392156862746,0.30980392156862746,0.6196078431372549], + [0.3058823529411765,0.3058823529411765,0.611764705882353], + [0.3019607843137255,0.3019607843137255,0.603921568627451], + [0.29803921568627456,0.29803921568627456,0.596078431372549], + [0.2941176470588236,0.2941176470588236,0.5882352941176473], + [0.29019607843137263,0.2901960784313725,0.580392156862745], + [0.28627450980392166,0.28627450980392155,0.5725490196078431], + [0.2823529411764706,0.2823529411764706,0.5647058823529412], + [0.2784313725490196,0.2784313725490196,0.5568627450980392], + [0.27450980392156865,0.27450980392156865,0.5490196078431373], + [0.2705882352941177,0.2705882352941177,0.5411764705882354], + [0.2666666666666667,0.2666666666666667,0.5333333333333333], + [0.26274509803921575,0.26274509803921564,0.5254901960784314], + [0.2588235294117647,0.2588235294117647,0.5176470588235293], + [0.2549019607843137,0.2549019607843137,0.5098039215686274], + [0.25098039215686274,0.25098039215686274,0.5019607843137255], + [0.041653173097195864,0.24705882352941178,0.49411764705882355], + [0.06119073722679036,0.2431372549019608,0.4862745098039216], + [0.08072830135638484,0.23921568627450984,0.4784313725490196], + [0.10026586548597932,0.23529411764705888,0.47058823529411764], + [0.11980342961557325,0.2313725490196079,0.46274509803921593], + [0.1393409937451683,0.22745098039215683,0.4549019607843138], + [0.1588785578747628,0.22352941176470587,0.44705882352941173], + [0.17841612200435727,0.2196078431372549,0.4392156862745098], + [0.19795368613395176,0.21568627450980393,0.43137254901960786], + [0.21749125026354624,0.21176470588235297,0.42352941176470593], + [0.23702881439314075,0.207843137254902,0.4156862745098039], + [0.25656637852273523,0.20392156862745103,0.40784313725490196], + [0.27610394265232974,0.19999999999999996,0.4], + [0.29564150678192425,0.196078431372549,0.3921568627450981], + [0.3151790709115187,0.19215686274509802,0.38431372549019605], + [0.3347166350411132,0.18823529411764706,0.3764705882352941], + [0.3542541991707077,0.1843137254901961,0.3686274509803922], + [0.37379176330030217,0.18039215686274512,0.36078431372549025], + [0.3933293274298967,0.17647058823529416,0.3529411764705882], + [0.41286689155949113,0.1725490196078432,0.34509803921568627], + [0.4324044556890851,0.16862745098039222,0.33725490196078456], + [0.45194201981868015,0.16470588235294115,0.3294117647058824], + [0.47147958394827466,0.16078431372549018,0.32156862745098036], + [0.4910171480778691,0.1568627450980392,0.3137254901960784], + [0.5105547122074636,0.15294117647058825,0.3058823529411765], + [0.5300922763370581,0.14901960784313728,0.29803921568627456], + [0.5496298404666525,0.14509803921568631,0.2901960784313725], + [0.569167404596247,0.14117647058823535,0.2823529411764706], + [0.5887049687258415,0.13725490196078427,0.27450980392156865], + [0.6082425328554361,0.1333333333333333,0.2666666666666667], + [0.6277800969850306,0.12941176470588234,0.2588235294117647], + [0.647317661114625,0.12549019607843137,0.25098039215686274], + [0.6668552252442196,0.1215686274509804,0.2431372549019608], + [0.686392789373814,0.11764705882352944,0.23529411764705888], + [0.7059303535034085,0.11372549019607847,0.22745098039215683], + [0.7254679176330029,0.1098039215686275,0.2196078431372549], + [0.745005481762597,0.10588235294117654,0.2117647058823532], + [0.7645430458921919,0.10196078431372546,0.20392156862745103], + [0.7840806100217864,0.0980392156862745,0.196078431372549], + [0.8036181741513808,0.09411764705882353,0.18823529411764706], + [0.8231557382809754,0.09019607843137256,0.18039215686274512], + [0.8426933024105699,0.0862745098039216,0.1725490196078432], + [0.8622308665401643,0.08235294117647063,0.16470588235294115], + [0.881768430669759,0.07843137254901966,0.1568627450980392], + [0.9013059947993534,0.07450980392156858,0.14901960784313728], + [0.9208435589289479,0.07058823529411762,0.14117647058823535], + [0.9403811230585423,0.06666666666666665,0.1333333333333333], + [0.9599186871881369,0.06274509803921569,0.12549019607843137], + [0.9794562513177313,0.05882352941176472,0.11764705882352944], + [0.9989938154473258,0.05490196078431375,0.1098039215686275], + [0.931999856615407,0.050980392156862786,0.10196078431372546], + [0.8603075599526834,0.04705882352941182,0.09411764705882353], + [0.7886152632899618,0.04313725490196085,0.08627450980392182], + [0.7169229666272361,0.039215686274509776,0.07843137254901966], + [0.6452306699645125,0.03529411764705881,0.07058823529411762], + [0.5735383733017889,0.03137254901960784,0.06274509803921569], + [0.5018460766390653,0.027450980392156876,0.05490196078431375], + [0.43015377997634163,0.02352941176470591,0.04705882352941182], + [0.35846148331361805,0.019607843137254943,0.039215686274509776], + [0.28676918665089446,0.015686274509803977,0.03137254901960784], + [0.21507688998817087,0.0117647058823529,0.02352941176470591], + [0.14338459332544717,0.007843137254901933,0.015686274509803977], + [0.07169229666272359,0.0039215686274509665,0.007843137254901933], + [0.0,0.0,0.0] ], + gist_yarg: [ + [1.0,1.0,1.0], + [0.996078431372549,0.996078431372549,0.996078431372549], + [0.9921568627450981,0.9921568627450981,0.9921568627450981], + [0.9882352941176471,0.9882352941176471,0.9882352941176471], + [0.9843137254901961,0.9843137254901961,0.9843137254901961], + [0.9803921568627451,0.9803921568627451,0.9803921568627451], + [0.9764705882352941,0.9764705882352941,0.9764705882352941], + [0.9725490196078431,0.9725490196078431,0.9725490196078431], + [0.9686274509803922,0.9686274509803922,0.9686274509803922], + [0.9647058823529412,0.9647058823529412,0.9647058823529412], + [0.9607843137254902,0.9607843137254902,0.9607843137254902], + [0.9568627450980393,0.9568627450980393,0.9568627450980393], + [0.9529411764705882,0.9529411764705882,0.9529411764705882], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9450980392156862,0.9450980392156862,0.9450980392156862], + [0.9411764705882353,0.9411764705882353,0.9411764705882353], + [0.9372549019607843,0.9372549019607843,0.9372549019607843], + [0.9333333333333333,0.9333333333333333,0.9333333333333333], + [0.9294117647058824,0.9294117647058824,0.9294117647058824], + [0.9254901960784314,0.9254901960784314,0.9254901960784314], + [0.9215686274509804,0.9215686274509804,0.9215686274509804], + [0.9176470588235294,0.9176470588235294,0.9176470588235294], + [0.9137254901960784,0.9137254901960784,0.9137254901960784], + [0.9098039215686274,0.9098039215686274,0.9098039215686274], + [0.9058823529411765,0.9058823529411765,0.9058823529411765], + [0.9019607843137255,0.9019607843137255,0.9019607843137255], + [0.8980392156862745,0.8980392156862745,0.8980392156862745], + [0.8941176470588236,0.8941176470588236,0.8941176470588236], + [0.8901960784313725,0.8901960784313725,0.8901960784313725], + [0.8862745098039215,0.8862745098039215,0.8862745098039215], + [0.8823529411764706,0.8823529411764706,0.8823529411764706], + [0.8784313725490196,0.8784313725490196,0.8784313725490196], + [0.8745098039215686,0.8745098039215686,0.8745098039215686], + [0.8705882352941177,0.8705882352941177,0.8705882352941177], + [0.8666666666666667,0.8666666666666667,0.8666666666666667], + [0.8627450980392157,0.8627450980392157,0.8627450980392157], + [0.8588235294117648,0.8588235294117648,0.8588235294117648], + [0.8549019607843138,0.8549019607843138,0.8549019607843138], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8470588235294118,0.8470588235294118,0.8470588235294118], + [0.8431372549019608,0.8431372549019608,0.8431372549019608], + [0.8392156862745098,0.8392156862745098,0.8392156862745098], + [0.8352941176470589,0.8352941176470589,0.8352941176470589], + [0.8313725490196078,0.8313725490196078,0.8313725490196078], + [0.8274509803921568,0.8274509803921568,0.8274509803921568], + [0.8235294117647058,0.8235294117647058,0.8235294117647058], + [0.8196078431372549,0.8196078431372549,0.8196078431372549], + [0.8156862745098039,0.8156862745098039,0.8156862745098039], + [0.8117647058823529,0.8117647058823529,0.8117647058823529], + [0.807843137254902,0.807843137254902,0.807843137254902], + [0.803921568627451,0.803921568627451,0.803921568627451], + [0.8,0.8,0.8], + [0.7960784313725491,0.7960784313725491,0.7960784313725491], + [0.7921568627450981,0.7921568627450981,0.7921568627450981], + [0.788235294117647,0.788235294117647,0.788235294117647], + [0.7843137254901961,0.7843137254901961,0.7843137254901961], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7764705882352941,0.7764705882352941,0.7764705882352941], + [0.7725490196078432,0.7725490196078432,0.7725490196078432], + [0.7686274509803921,0.7686274509803921,0.7686274509803921], + [0.7647058823529411,0.7647058823529411,0.7647058823529411], + [0.7607843137254902,0.7607843137254902,0.7607843137254902], + [0.7568627450980392,0.7568627450980392,0.7568627450980392], + [0.7529411764705882,0.7529411764705882,0.7529411764705882], + [0.7490196078431373,0.7490196078431373,0.7490196078431373], + [0.7450980392156863,0.7450980392156863,0.7450980392156863], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7372549019607844,0.7372549019607844,0.7372549019607844], + [0.7333333333333334,0.7333333333333334,0.7333333333333334], + [0.7294117647058824,0.7294117647058824,0.7294117647058824], + [0.7254901960784313,0.7254901960784313,0.7254901960784313], + [0.7215686274509804,0.7215686274509804,0.7215686274509804], + [0.7176470588235294,0.7176470588235294,0.7176470588235294], + [0.7137254901960784,0.7137254901960784,0.7137254901960784], + [0.7098039215686275,0.7098039215686275,0.7098039215686275], + [0.7058823529411764,0.7058823529411764,0.7058823529411764], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.6980392156862745,0.6980392156862745,0.6980392156862745], + [0.6941176470588235,0.6941176470588235,0.6941176470588235], + [0.6901960784313725,0.6901960784313725,0.6901960784313725], + [0.6862745098039216,0.6862745098039216,0.6862745098039216], + [0.6823529411764706,0.6823529411764706,0.6823529411764706], + [0.6784313725490196,0.6784313725490196,0.6784313725490196], + [0.6745098039215687,0.6745098039215687,0.6745098039215687], + [0.6705882352941177,0.6705882352941177,0.6705882352941177], + [0.6666666666666667,0.6666666666666667,0.6666666666666667], + [0.6627450980392157,0.6627450980392157,0.6627450980392157], + [0.6588235294117647,0.6588235294117647,0.6588235294117647], + [0.6549019607843137,0.6549019607843137,0.6549019607843137], + [0.6509803921568628,0.6509803921568628,0.6509803921568628], + [0.6470588235294118,0.6470588235294118,0.6470588235294118], + [0.6431372549019607,0.6431372549019607,0.6431372549019607], + [0.6392156862745098,0.6392156862745098,0.6392156862745098], + [0.6352941176470588,0.6352941176470588,0.6352941176470588], + [0.6313725490196078,0.6313725490196078,0.6313725490196078], + [0.6274509803921569,0.6274509803921569,0.6274509803921569], + [0.6235294117647059,0.6235294117647059,0.6235294117647059], + [0.6196078431372549,0.6196078431372549,0.6196078431372549], + [0.615686274509804,0.615686274509804,0.615686274509804], + [0.611764705882353,0.611764705882353,0.611764705882353], + [0.607843137254902,0.607843137254902,0.607843137254902], + [0.603921568627451,0.603921568627451,0.603921568627451], + [0.6,0.6,0.6], + [0.596078431372549,0.596078431372549,0.596078431372549], + [0.592156862745098,0.592156862745098,0.592156862745098], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5843137254901961,0.5843137254901961,0.5843137254901961], + [0.580392156862745,0.580392156862745,0.580392156862745], + [0.5764705882352941,0.5764705882352941,0.5764705882352941], + [0.5725490196078431,0.5725490196078431,0.5725490196078431], + [0.5686274509803921,0.5686274509803921,0.5686274509803921], + [0.5647058823529412,0.5647058823529412,0.5647058823529412], + [0.5607843137254902,0.5607843137254902,0.5607843137254902], + [0.5568627450980392,0.5568627450980392,0.5568627450980392], + [0.5529411764705883,0.5529411764705883,0.5529411764705883], + [0.5490196078431373,0.5490196078431373,0.5490196078431373], + [0.5450980392156863,0.5450980392156863,0.5450980392156863], + [0.5411764705882354,0.5411764705882354,0.5411764705882354], + [0.5372549019607843,0.5372549019607843,0.5372549019607843], + [0.5333333333333333,0.5333333333333333,0.5333333333333333], + [0.5294117647058824,0.5294117647058824,0.5294117647058824], + [0.5254901960784314,0.5254901960784314,0.5254901960784314], + [0.5215686274509804,0.5215686274509804,0.5215686274509804], + [0.5176470588235293,0.5176470588235293,0.5176470588235293], + [0.5137254901960784,0.5137254901960784,0.5137254901960784], + [0.5098039215686274,0.5098039215686274,0.5098039215686274], + [0.5058823529411764,0.5058823529411764,0.5058823529411764], + [0.5019607843137255,0.5019607843137255,0.5019607843137255], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.49411764705882355,0.49411764705882355,0.49411764705882355], + [0.4901960784313726,0.4901960784313726,0.4901960784313726], + [0.4862745098039216,0.4862745098039216,0.4862745098039216], + [0.48235294117647065,0.48235294117647065,0.48235294117647065], + [0.4784313725490196,0.4784313725490196,0.4784313725490196], + [0.4745098039215686,0.4745098039215686,0.4745098039215686], + [0.47058823529411764,0.47058823529411764,0.47058823529411764], + [0.4666666666666667,0.4666666666666667,0.4666666666666667], + [0.4627450980392157,0.4627450980392157,0.4627450980392157], + [0.45882352941176474,0.45882352941176474,0.45882352941176474], + [0.4549019607843138,0.4549019607843138,0.4549019607843138], + [0.4509803921568627,0.4509803921568627,0.4509803921568627], + [0.44705882352941173,0.44705882352941173,0.44705882352941173], + [0.44313725490196076,0.44313725490196076,0.44313725490196076], + [0.4392156862745098,0.4392156862745098,0.4392156862745098], + [0.43529411764705883,0.43529411764705883,0.43529411764705883], + [0.43137254901960786,0.43137254901960786,0.43137254901960786], + [0.4274509803921569,0.4274509803921569,0.4274509803921569], + [0.42352941176470593,0.42352941176470593,0.42352941176470593], + [0.41960784313725497,0.41960784313725497,0.41960784313725497], + [0.4156862745098039,0.4156862745098039,0.4156862745098039], + [0.4117647058823529,0.4117647058823529,0.4117647058823529], + [0.40784313725490196,0.40784313725490196,0.40784313725490196], + [0.403921568627451,0.403921568627451,0.403921568627451], + [0.4,0.4,0.4], + [0.39607843137254906,0.39607843137254906,0.39607843137254906], + [0.3921568627450981,0.3921568627450981,0.3921568627450981], + [0.388235294117647,0.388235294117647,0.388235294117647], + [0.38431372549019605,0.38431372549019605,0.38431372549019605], + [0.3803921568627451,0.3803921568627451,0.3803921568627451], + [0.3764705882352941,0.3764705882352941,0.3764705882352941], + [0.37254901960784315,0.37254901960784315,0.37254901960784315], + [0.3686274509803922,0.3686274509803922,0.3686274509803922], + [0.3647058823529412,0.3647058823529412,0.3647058823529412], + [0.36078431372549025,0.36078431372549025,0.36078431372549025], + [0.3568627450980393,0.3568627450980393,0.3568627450980393], + [0.3529411764705882,0.3529411764705882,0.3529411764705882], + [0.34901960784313724,0.34901960784313724,0.34901960784313724], + [0.34509803921568627,0.34509803921568627,0.34509803921568627], + [0.3411764705882353,0.3411764705882353,0.3411764705882353], + [0.33725490196078434,0.33725490196078434,0.33725490196078434], + [0.33333333333333337,0.33333333333333337,0.33333333333333337], + [0.3294117647058824,0.3294117647058824,0.3294117647058824], + [0.3254901960784313,0.3254901960784313,0.3254901960784313], + [0.32156862745098036,0.32156862745098036,0.32156862745098036], + [0.3176470588235294,0.3176470588235294,0.3176470588235294], + [0.3137254901960784,0.3137254901960784,0.3137254901960784], + [0.30980392156862746,0.30980392156862746,0.30980392156862746], + [0.3058823529411765,0.3058823529411765,0.3058823529411765], + [0.3019607843137255,0.3019607843137255,0.3019607843137255], + [0.29803921568627456,0.29803921568627456,0.29803921568627456], + [0.2941176470588236,0.2941176470588236,0.2941176470588236], + [0.2901960784313725,0.2901960784313725,0.2901960784313725], + [0.28627450980392155,0.28627450980392155,0.28627450980392155], + [0.2823529411764706,0.2823529411764706,0.2823529411764706], + [0.2784313725490196,0.2784313725490196,0.2784313725490196], + [0.27450980392156865,0.27450980392156865,0.27450980392156865], + [0.2705882352941177,0.2705882352941177,0.2705882352941177], + [0.2666666666666667,0.2666666666666667,0.2666666666666667], + [0.26274509803921564,0.26274509803921564,0.26274509803921564], + [0.2588235294117647,0.2588235294117647,0.2588235294117647], + [0.2549019607843137,0.2549019607843137,0.2549019607843137], + [0.25098039215686274,0.25098039215686274,0.25098039215686274], + [0.24705882352941178,0.24705882352941178,0.24705882352941178], + [0.2431372549019608,0.2431372549019608,0.2431372549019608], + [0.23921568627450984,0.23921568627450984,0.23921568627450984], + [0.23529411764705888,0.23529411764705888,0.23529411764705888], + [0.2313725490196079,0.2313725490196079,0.2313725490196079], + [0.22745098039215683,0.22745098039215683,0.22745098039215683], + [0.22352941176470587,0.22352941176470587,0.22352941176470587], + [0.2196078431372549,0.2196078431372549,0.2196078431372549], + [0.21568627450980393,0.21568627450980393,0.21568627450980393], + [0.21176470588235297,0.21176470588235297,0.21176470588235297], + [0.207843137254902,0.207843137254902,0.207843137254902], + [0.20392156862745103,0.20392156862745103,0.20392156862745103], + [0.19999999999999996,0.19999999999999996,0.19999999999999996], + [0.196078431372549,0.196078431372549,0.196078431372549], + [0.19215686274509802,0.19215686274509802,0.19215686274509802], + [0.18823529411764706,0.18823529411764706,0.18823529411764706], + [0.1843137254901961,0.1843137254901961,0.1843137254901961], + [0.18039215686274512,0.18039215686274512,0.18039215686274512], + [0.17647058823529416,0.17647058823529416,0.17647058823529416], + [0.1725490196078432,0.1725490196078432,0.1725490196078432], + [0.16862745098039222,0.16862745098039222,0.16862745098039222], + [0.16470588235294115,0.16470588235294115,0.16470588235294115], + [0.16078431372549018,0.16078431372549018,0.16078431372549018], + [0.1568627450980392,0.1568627450980392,0.1568627450980392], + [0.15294117647058825,0.15294117647058825,0.15294117647058825], + [0.14901960784313728,0.14901960784313728,0.14901960784313728], + [0.14509803921568631,0.14509803921568631,0.14509803921568631], + [0.14117647058823535,0.14117647058823535,0.14117647058823535], + [0.13725490196078427,0.13725490196078427,0.13725490196078427], + [0.1333333333333333,0.1333333333333333,0.1333333333333333], + [0.12941176470588234,0.12941176470588234,0.12941176470588234], + [0.12549019607843137,0.12549019607843137,0.12549019607843137], + [0.1215686274509804,0.1215686274509804,0.1215686274509804], + [0.11764705882352944,0.11764705882352944,0.11764705882352944], + [0.11372549019607847,0.11372549019607847,0.11372549019607847], + [0.1098039215686275,0.1098039215686275,0.1098039215686275], + [0.10588235294117654,0.10588235294117654,0.10588235294117654], + [0.10196078431372546,0.10196078431372546,0.10196078431372546], + [0.0980392156862745,0.0980392156862745,0.0980392156862745], + [0.09411764705882353,0.09411764705882353,0.09411764705882353], + [0.09019607843137256,0.09019607843137256,0.09019607843137256], + [0.0862745098039216,0.0862745098039216,0.0862745098039216], + [0.08235294117647063,0.08235294117647063,0.08235294117647063], + [0.07843137254901966,0.07843137254901966,0.07843137254901966], + [0.07450980392156858,0.07450980392156858,0.07450980392156858], + [0.07058823529411762,0.07058823529411762,0.07058823529411762], + [0.06666666666666665,0.06666666666666665,0.06666666666666665], + [0.06274509803921569,0.06274509803921569,0.06274509803921569], + [0.05882352941176472,0.05882352941176472,0.05882352941176472], + [0.05490196078431375,0.05490196078431375,0.05490196078431375], + [0.050980392156862786,0.050980392156862786,0.050980392156862786], + [0.04705882352941182,0.04705882352941182,0.04705882352941182], + [0.04313725490196085,0.04313725490196085,0.04313725490196085], + [0.039215686274509776,0.039215686274509776,0.039215686274509776], + [0.03529411764705881,0.03529411764705881,0.03529411764705881], + [0.03137254901960784,0.03137254901960784,0.03137254901960784], + [0.027450980392156876,0.027450980392156876,0.027450980392156876], + [0.02352941176470591,0.02352941176470591,0.02352941176470591], + [0.019607843137254943,0.019607843137254943,0.019607843137254943], + [0.015686274509803977,0.015686274509803977,0.015686274509803977], + [0.0117647058823529,0.0117647058823529,0.0117647058823529], + [0.007843137254901933,0.007843137254901933,0.007843137254901933], + [0.0039215686274509665,0.0039215686274509665,0.0039215686274509665], + [0.0,0.0,0.0] ], + gist_yarg_r: [ + [0.0,0.0,0.0], + [0.0039215686274509665,0.0039215686274509665,0.0039215686274509665], + [0.007843137254901933,0.007843137254901933,0.007843137254901933], + [0.0117647058823529,0.0117647058823529,0.0117647058823529], + [0.015686274509803866,0.015686274509803866,0.015686274509803866], + [0.019607843137254943,0.019607843137254943,0.019607843137254943], + [0.02352941176470591,0.02352941176470591,0.02352941176470591], + [0.027450980392156876,0.027450980392156876,0.027450980392156876], + [0.03137254901960784,0.03137254901960784,0.03137254901960784], + [0.03529411764705881,0.03529411764705881,0.03529411764705881], + [0.039215686274509776,0.039215686274509776,0.039215686274509776], + [0.04313725490196074,0.04313725490196074,0.04313725490196074], + [0.04705882352941182,0.04705882352941182,0.04705882352941182], + [0.050980392156862786,0.050980392156862786,0.050980392156862786], + [0.05490196078431375,0.05490196078431375,0.05490196078431375], + [0.05882352941176472,0.05882352941176472,0.05882352941176472], + [0.06274509803921569,0.06274509803921569,0.06274509803921569], + [0.06666666666666665,0.06666666666666665,0.06666666666666665], + [0.07058823529411762,0.07058823529411762,0.07058823529411762], + [0.07450980392156858,0.07450980392156858,0.07450980392156858], + [0.07843137254901955,0.07843137254901955,0.07843137254901955], + [0.08235294117647063,0.08235294117647063,0.08235294117647063], + [0.0862745098039216,0.0862745098039216,0.0862745098039216], + [0.09019607843137256,0.09019607843137256,0.09019607843137256], + [0.09411764705882353,0.09411764705882353,0.09411764705882353], + [0.0980392156862745,0.0980392156862745,0.0980392156862745], + [0.10196078431372546,0.10196078431372546,0.10196078431372546], + [0.10588235294117643,0.10588235294117643,0.10588235294117643], + [0.1098039215686275,0.1098039215686275,0.1098039215686275], + [0.11372549019607847,0.11372549019607847,0.11372549019607847], + [0.11764705882352944,0.11764705882352944,0.11764705882352944], + [0.1215686274509804,0.1215686274509804,0.1215686274509804], + [0.12549019607843137,0.12549019607843137,0.12549019607843137], + [0.12941176470588234,0.12941176470588234,0.12941176470588234], + [0.1333333333333333,0.1333333333333333,0.1333333333333333], + [0.13725490196078427,0.13725490196078427,0.13725490196078427], + [0.14117647058823524,0.14117647058823524,0.14117647058823524], + [0.1450980392156862,0.1450980392156862,0.1450980392156862], + [0.14901960784313728,0.14901960784313728,0.14901960784313728], + [0.15294117647058825,0.15294117647058825,0.15294117647058825], + [0.1568627450980392,0.1568627450980392,0.1568627450980392], + [0.16078431372549018,0.16078431372549018,0.16078431372549018], + [0.16470588235294115,0.16470588235294115,0.16470588235294115], + [0.16862745098039222,0.16862745098039222,0.16862745098039222], + [0.1725490196078432,0.1725490196078432,0.1725490196078432], + [0.17647058823529416,0.17647058823529416,0.17647058823529416], + [0.18039215686274512,0.18039215686274512,0.18039215686274512], + [0.1843137254901961,0.1843137254901961,0.1843137254901961], + [0.18823529411764706,0.18823529411764706,0.18823529411764706], + [0.19215686274509802,0.19215686274509802,0.19215686274509802], + [0.196078431372549,0.196078431372549,0.196078431372549], + [0.19999999999999996,0.19999999999999996,0.19999999999999996], + [0.20392156862745092,0.20392156862745092,0.20392156862745092], + [0.2078431372549019,0.2078431372549019,0.2078431372549019], + [0.21176470588235297,0.21176470588235297,0.21176470588235297], + [0.21568627450980393,0.21568627450980393,0.21568627450980393], + [0.2196078431372549,0.2196078431372549,0.2196078431372549], + [0.22352941176470587,0.22352941176470587,0.22352941176470587], + [0.22745098039215683,0.22745098039215683,0.22745098039215683], + [0.2313725490196079,0.2313725490196079,0.2313725490196079], + [0.23529411764705888,0.23529411764705888,0.23529411764705888], + [0.23921568627450984,0.23921568627450984,0.23921568627450984], + [0.2431372549019608,0.2431372549019608,0.2431372549019608], + [0.24705882352941178,0.24705882352941178,0.24705882352941178], + [0.25098039215686274,0.25098039215686274,0.25098039215686274], + [0.2549019607843137,0.2549019607843137,0.2549019607843137], + [0.2588235294117647,0.2588235294117647,0.2588235294117647], + [0.26274509803921564,0.26274509803921564,0.26274509803921564], + [0.2666666666666666,0.2666666666666666,0.2666666666666666], + [0.2705882352941176,0.2705882352941176,0.2705882352941176], + [0.27450980392156865,0.27450980392156865,0.27450980392156865], + [0.2784313725490196,0.2784313725490196,0.2784313725490196], + [0.2823529411764706,0.2823529411764706,0.2823529411764706], + [0.28627450980392155,0.28627450980392155,0.28627450980392155], + [0.2901960784313725,0.2901960784313725,0.2901960784313725], + [0.2941176470588236,0.2941176470588236,0.2941176470588236], + [0.29803921568627456,0.29803921568627456,0.29803921568627456], + [0.3019607843137255,0.3019607843137255,0.3019607843137255], + [0.3058823529411765,0.3058823529411765,0.3058823529411765], + [0.30980392156862746,0.30980392156862746,0.30980392156862746], + [0.3137254901960784,0.3137254901960784,0.3137254901960784], + [0.3176470588235294,0.3176470588235294,0.3176470588235294], + [0.32156862745098036,0.32156862745098036,0.32156862745098036], + [0.3254901960784313,0.3254901960784313,0.3254901960784313], + [0.3294117647058823,0.3294117647058823,0.3294117647058823], + [0.33333333333333326,0.33333333333333326,0.33333333333333326], + [0.33725490196078434,0.33725490196078434,0.33725490196078434], + [0.3411764705882353,0.3411764705882353,0.3411764705882353], + [0.34509803921568627,0.34509803921568627,0.34509803921568627], + [0.34901960784313724,0.34901960784313724,0.34901960784313724], + [0.3529411764705882,0.3529411764705882,0.3529411764705882], + [0.3568627450980393,0.3568627450980393,0.3568627450980393], + [0.36078431372549025,0.36078431372549025,0.36078431372549025], + [0.3647058823529412,0.3647058823529412,0.3647058823529412], + [0.3686274509803922,0.3686274509803922,0.3686274509803922], + [0.37254901960784315,0.37254901960784315,0.37254901960784315], + [0.3764705882352941,0.3764705882352941,0.3764705882352941], + [0.3803921568627451,0.3803921568627451,0.3803921568627451], + [0.38431372549019605,0.38431372549019605,0.38431372549019605], + [0.388235294117647,0.388235294117647,0.388235294117647], + [0.392156862745098,0.392156862745098,0.392156862745098], + [0.39607843137254894,0.39607843137254894,0.39607843137254894], + [0.4,0.4,0.4], + [0.403921568627451,0.403921568627451,0.403921568627451], + [0.40784313725490196,0.40784313725490196,0.40784313725490196], + [0.4117647058823529,0.4117647058823529,0.4117647058823529], + [0.4156862745098039,0.4156862745098039,0.4156862745098039], + [0.41960784313725497,0.41960784313725497,0.41960784313725497], + [0.42352941176470593,0.42352941176470593,0.42352941176470593], + [0.4274509803921569,0.4274509803921569,0.4274509803921569], + [0.43137254901960786,0.43137254901960786,0.43137254901960786], + [0.43529411764705883,0.43529411764705883,0.43529411764705883], + [0.4392156862745098,0.4392156862745098,0.4392156862745098], + [0.44313725490196076,0.44313725490196076,0.44313725490196076], + [0.44705882352941173,0.44705882352941173,0.44705882352941173], + [0.4509803921568627,0.4509803921568627,0.4509803921568627], + [0.45490196078431366,0.45490196078431366,0.45490196078431366], + [0.45882352941176463,0.45882352941176463,0.45882352941176463], + [0.4627450980392157,0.4627450980392157,0.4627450980392157], + [0.4666666666666667,0.4666666666666667,0.4666666666666667], + [0.47058823529411764,0.47058823529411764,0.47058823529411764], + [0.4745098039215686,0.4745098039215686,0.4745098039215686], + [0.4784313725490196,0.4784313725490196,0.4784313725490196], + [0.48235294117647065,0.48235294117647065,0.48235294117647065], + [0.4862745098039216,0.4862745098039216,0.4862745098039216], + [0.4901960784313726,0.4901960784313726,0.4901960784313726], + [0.49411764705882355,0.49411764705882355,0.49411764705882355], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.5019607843137255,0.5019607843137255,0.5019607843137255], + [0.5058823529411764,0.5058823529411764,0.5058823529411764], + [0.5098039215686274,0.5098039215686274,0.5098039215686274], + [0.5137254901960784,0.5137254901960784,0.5137254901960784], + [0.5176470588235293,0.5176470588235293,0.5176470588235293], + [0.5215686274509804,0.5215686274509804,0.5215686274509804], + [0.5254901960784314,0.5254901960784314,0.5254901960784314], + [0.5294117647058824,0.5294117647058824,0.5294117647058824], + [0.5333333333333333,0.5333333333333333,0.5333333333333333], + [0.5372549019607843,0.5372549019607843,0.5372549019607843], + [0.5411764705882353,0.5411764705882353,0.5411764705882353], + [0.5450980392156862,0.5450980392156862,0.5450980392156862], + [0.5490196078431373,0.5490196078431373,0.5490196078431373], + [0.5529411764705883,0.5529411764705883,0.5529411764705883], + [0.5568627450980392,0.5568627450980392,0.5568627450980392], + [0.5607843137254902,0.5607843137254902,0.5607843137254902], + [0.5647058823529412,0.5647058823529412,0.5647058823529412], + [0.5686274509803921,0.5686274509803921,0.5686274509803921], + [0.5725490196078431,0.5725490196078431,0.5725490196078431], + [0.5764705882352941,0.5764705882352941,0.5764705882352941], + [0.580392156862745,0.580392156862745,0.580392156862745], + [0.5843137254901961,0.5843137254901961,0.5843137254901961], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.592156862745098,0.592156862745098,0.592156862745098], + [0.596078431372549,0.596078431372549,0.596078431372549], + [0.6,0.6,0.6], + [0.6039215686274509,0.6039215686274509,0.6039215686274509], + [0.6078431372549019,0.6078431372549019,0.6078431372549019], + [0.611764705882353,0.611764705882353,0.611764705882353], + [0.615686274509804,0.615686274509804,0.615686274509804], + [0.6196078431372549,0.6196078431372549,0.6196078431372549], + [0.6235294117647059,0.6235294117647059,0.6235294117647059], + [0.6274509803921569,0.6274509803921569,0.6274509803921569], + [0.6313725490196078,0.6313725490196078,0.6313725490196078], + [0.6352941176470588,0.6352941176470588,0.6352941176470588], + [0.6392156862745098,0.6392156862745098,0.6392156862745098], + [0.6431372549019607,0.6431372549019607,0.6431372549019607], + [0.6470588235294118,0.6470588235294118,0.6470588235294118], + [0.6509803921568628,0.6509803921568628,0.6509803921568628], + [0.6549019607843137,0.6549019607843137,0.6549019607843137], + [0.6588235294117647,0.6588235294117647,0.6588235294117647], + [0.6627450980392157,0.6627450980392157,0.6627450980392157], + [0.6666666666666666,0.6666666666666666,0.6666666666666666], + [0.6705882352941176,0.6705882352941176,0.6705882352941176], + [0.6745098039215687,0.6745098039215687,0.6745098039215687], + [0.6784313725490196,0.6784313725490196,0.6784313725490196], + [0.6823529411764706,0.6823529411764706,0.6823529411764706], + [0.6862745098039216,0.6862745098039216,0.6862745098039216], + [0.6901960784313725,0.6901960784313725,0.6901960784313725], + [0.6941176470588235,0.6941176470588235,0.6941176470588235], + [0.6980392156862745,0.6980392156862745,0.6980392156862745], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7058823529411764,0.7058823529411764,0.7058823529411764], + [0.7098039215686275,0.7098039215686275,0.7098039215686275], + [0.7137254901960784,0.7137254901960784,0.7137254901960784], + [0.7176470588235294,0.7176470588235294,0.7176470588235294], + [0.7215686274509804,0.7215686274509804,0.7215686274509804], + [0.7254901960784313,0.7254901960784313,0.7254901960784313], + [0.7294117647058823,0.7294117647058823,0.7294117647058823], + [0.7333333333333333,0.7333333333333333,0.7333333333333333], + [0.7372549019607844,0.7372549019607844,0.7372549019607844], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7450980392156863,0.7450980392156863,0.7450980392156863], + [0.7490196078431373,0.7490196078431373,0.7490196078431373], + [0.7529411764705882,0.7529411764705882,0.7529411764705882], + [0.7568627450980392,0.7568627450980392,0.7568627450980392], + [0.7607843137254902,0.7607843137254902,0.7607843137254902], + [0.7647058823529411,0.7647058823529411,0.7647058823529411], + [0.7686274509803921,0.7686274509803921,0.7686274509803921], + [0.7725490196078432,0.7725490196078432,0.7725490196078432], + [0.7764705882352941,0.7764705882352941,0.7764705882352941], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7843137254901961,0.7843137254901961,0.7843137254901961], + [0.788235294117647,0.788235294117647,0.788235294117647], + [0.792156862745098,0.792156862745098,0.792156862745098], + [0.796078431372549,0.796078431372549,0.796078431372549], + [0.8,0.8,0.8], + [0.803921568627451,0.803921568627451,0.803921568627451], + [0.807843137254902,0.807843137254902,0.807843137254902], + [0.8117647058823529,0.8117647058823529,0.8117647058823529], + [0.8156862745098039,0.8156862745098039,0.8156862745098039], + [0.8196078431372549,0.8196078431372549,0.8196078431372549], + [0.8235294117647058,0.8235294117647058,0.8235294117647058], + [0.8274509803921568,0.8274509803921568,0.8274509803921568], + [0.8313725490196078,0.8313725490196078,0.8313725490196078], + [0.8352941176470589,0.8352941176470589,0.8352941176470589], + [0.8392156862745098,0.8392156862745098,0.8392156862745098], + [0.8431372549019608,0.8431372549019608,0.8431372549019608], + [0.8470588235294118,0.8470588235294118,0.8470588235294118], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8549019607843137,0.8549019607843137,0.8549019607843137], + [0.8588235294117647,0.8588235294117647,0.8588235294117647], + [0.8627450980392157,0.8627450980392157,0.8627450980392157], + [0.8666666666666667,0.8666666666666667,0.8666666666666667], + [0.8705882352941177,0.8705882352941177,0.8705882352941177], + [0.8745098039215686,0.8745098039215686,0.8745098039215686], + [0.8784313725490196,0.8784313725490196,0.8784313725490196], + [0.8823529411764706,0.8823529411764706,0.8823529411764706], + [0.8862745098039215,0.8862745098039215,0.8862745098039215], + [0.8901960784313725,0.8901960784313725,0.8901960784313725], + [0.8941176470588235,0.8941176470588235,0.8941176470588235], + [0.8980392156862745,0.8980392156862745,0.8980392156862745], + [0.9019607843137255,0.9019607843137255,0.9019607843137255], + [0.9058823529411765,0.9058823529411765,0.9058823529411765], + [0.9098039215686274,0.9098039215686274,0.9098039215686274], + [0.9137254901960784,0.9137254901960784,0.9137254901960784], + [0.9176470588235294,0.9176470588235294,0.9176470588235294], + [0.9215686274509803,0.9215686274509803,0.9215686274509803], + [0.9254901960784314,0.9254901960784314,0.9254901960784314], + [0.9294117647058824,0.9294117647058824,0.9294117647058824], + [0.9333333333333333,0.9333333333333333,0.9333333333333333], + [0.9372549019607843,0.9372549019607843,0.9372549019607843], + [0.9411764705882353,0.9411764705882353,0.9411764705882353], + [0.9450980392156862,0.9450980392156862,0.9450980392156862], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9529411764705882,0.9529411764705882,0.9529411764705882], + [0.9568627450980391,0.9568627450980391,0.9568627450980391], + [0.9607843137254902,0.9607843137254902,0.9607843137254902], + [0.9647058823529412,0.9647058823529412,0.9647058823529412], + [0.9686274509803922,0.9686274509803922,0.9686274509803922], + [0.9725490196078431,0.9725490196078431,0.9725490196078431], + [0.9764705882352941,0.9764705882352941,0.9764705882352941], + [0.9803921568627451,0.9803921568627451,0.9803921568627451], + [0.984313725490196,0.984313725490196,0.984313725490196], + [0.9882352941176471,0.9882352941176471,0.9882352941176471], + [0.9921568627450981,0.9921568627450981,0.9921568627450981], + [0.996078431372549,0.996078431372549,0.996078431372549], + [1.0,1.0,1.0] ], + gnuplot: [ + [0.0,0.0,0.0], + [0.06262242910851495,6.030862941101084e-08,0.02463744919538197], + [0.08856148855400953,4.824690352880868e-07,0.04925994109281685], + [0.10846522890932808,1.6283329940972927e-06,0.07385252747487396], + [0.1252448582170299,3.859752282304694e-06,0.0984002782796427], + [0.14002800840280097,7.538578676376356e-06,0.12288829066471411], + [0.1533929977694741,1.3026663952778342e-05,0.1473016980546375], + [0.1656833739159028,2.068585988797672e-05,0.1716256791663596], + [0.17712297710801905,3.087801825843755e-05,0.19584546700716696], + [0.18786728732554484,4.396499084062691e-05,0.2199463578396686], + [0.19802950859533486,6.0308629411010845e-05,0.24391372010837714], + [0.20769510081357428,8.027078574605544e-05,0.2677330033224679], + [0.21693045781865616,0.00010421331162222673,0.2913897468893246], + [0.22578837914485933,0.00013249805881599083,0.31486958889350786], + [0.23431167445160245,0.00016548687910381376,0.33815827481581706], + [0.24253562503633297,0.0002035416242621616,0.3612416661871529], + [0.2504897164340598,0.0002470241460675004,0.38410574917192586], + [0.2581988897471611,0.0002962962962962963,0.40673664307580015], + [0.2656844656620286,0.00035171992672501526,0.42912060877260894], + [0.27296484008305655,0.0004136568891301234,0.45124405704532283], + [0.28005601680560194,0.00048246903528808676,0.47309355683601007], + [0.2869720215917757,0.0005585182169753714,0.4946558433997788], + [0.293725228409004,0.0006421662859684435,0.5159178263577511], + [0.30032661958503204,0.000733775094043769,0.53686659764418], + [0.3067859955389482,0.0008337064929778139,0.5574894393428855], + [0.3131121455425747,0.0009423223345470445,0.5777738314082511], + [0.31931298801289854,0.0010599844705279267,0.5977074592660936], + [0.32539568672798425,0.0011870547526969264,0.6172782212897929], + [0.3313667478318056,0.00132389503283051,0.6364742361471414], + [0.3372321013724501,0.0014708671627051435,0.6552838500134536], + [0.3429971702850177,0.001628332994097293,0.6736956436465572], + [0.34866692910423897,0.001796654378783424,0.6916984393193699], + [0.3542459542160381,0.0019761931685400034,0.7092813076058534], + [0.3597384670922507,0.0021673112151434962,0.7264335740162241], + [0.3651483716701107,0.0023703703703703703,0.7431448254773941], + [0.3704792868174742,0.002585732485997091,0.7594049166547072], + [0.37573457465108967,0.002813759413800122,0.7752039761111298], + [0.38091736533753123,0.0030548130055559316,0.7905324123001632], + [0.3860305788964616,0.0033092551130409873,0.8053809193888326], + [0.39107694443752145,0.003577447588031753,0.8197404829072211], + [0.3960590171906697,0.003859752282304694,0.8336023852211195], + [0.4009791936316524,0.0041565310476362775,0.846958210824467], + [0.4058397249567139,0.004468145735802971,0.8597998514483723], + [0.4106427291215469,0.00479495819858124,0.8721195109836108], + [0.41539020162714857,0.005137330287747548,0.883909710213612], + [0.42008402520840293,0.005495623855078362,0.8951632913550623], + [0.4247259785588175,0.005870200752350152,0.9058734224033671], + [0.42931774420607877,0.00626142283133938,0.9160336012803335], + [0.4338609156373123,0.006669651943822511,0.9256376597815562], + [0.4383570037596046,0.007095249941576013,0.9346797673211106], + [0.44280744277004763,0.007538578676376356,0.9431544344712774], + [0.4472135954999579,0.008000000000000002,0.9510565162951535], + [0.45157675828971866,0.008479875764223413,0.9583812154701222], + [0.45589816544366785,0.00897856782082306,0.965124085200289], + [0.46017899330842227,0.009496438021575411,0.9712810319161138], + [0.464420364012824,0.010033848218256931,0.9768483177596007], + [0.4686233489032049,0.01059116026264408,0.9818225628535369], + [0.4727889717037675,0.01116873600651333,0.9862007473534026], + [0.47691821142849733,0.011766937301641148,0.989980213280707], + [0.48101200506807296,0.012386125999803998,0.9931586661366362], + [0.48507125007266594,0.013026663952778343,0.9957341762950345], + [0.4890968066492663,0.01368891301234065,0.9977051801738729], + [0.49308949989019313,0.014373235030267393,0.9990704811844932], + [0.4970501217477084,0.01507999185833503,0.9998292504580527], + [0.5009794328681196,0.015809545348320027,0.9999810273487268], + [0.5048781642974013,0.01656225735199885,0.9995257197133659], + [0.5087470190691683,0.01733848972114797,0.9984636039674339], + [0.5125866736847688,0.018138604307543858,0.9967953249171991], + [0.5163977794943222,0.018962962962962963,0.9945218953682734], + [0.5201809639866857,0.01981192753918176,0.9916446955107427], + [0.5239368319955838,0.020685859887976728,0.9881654720812594], + [0.5276659668284659,0.021585121861124306,0.9840863373026044], + [0.5313689313240572,0.022510075310400977,0.9794097676013659], + [0.5350462688440333,0.023461082087583202,0.9741386021045102], + [0.5386985042037638,0.024438504044447452,0.9682760409157589], + [0.5423261445466404,0.025442703032770204,0.961825643172819], + [0.5459296801661131,0.026474040904327898,0.9547913248866443], + [0.5495095852792065,0.027532879510897012,0.9471773565640402], + [0.5530663187549721,0.028619580704254025,0.9389883606150565], + [0.5566003248010438,0.02973450633617538,0.9302293085467404], + [0.5601120336112039,0.030878018258437553,0.9209055179449537], + [0.5636018619766345,0.03205047832281701,0.9110226492460884], + [0.5670702138633102,0.03325224838109022,0.9005867023006376], + [0.570517480957798,0.03448369028503366,0.8896040127307095], + [0.5739440431835514,0.03574516588642377,0.878081248083698], + [0.5773502691896257,0.03703703703703703,0.8660254037844387], + [0.5807365168135928,0.03835966558864992,0.8534437988883159], + [0.5841031335203016,0.03971341339303888,0.8403440716378927], + [0.587450456818008,0.04109864230198038,0.8267341748257635], + [0.5907788146532823,0.0425157141672509,0.8126223709664456], + [0.5940885257860046,0.0439649908406269,0.7980172272802396], + [0.5973799001456604,0.045446834173884856,0.7829276104921029], + [0.6006532391700641,0.046961606018801214,0.7673626814486971], + [0.6039088361275575,0.04850966822715245,0.7513318895568735], + [0.6071469764236599,0.05009138265071504,0.7348449670469757], + [0.6103679378930738,0.05170711114126543,0.717911923064442], + [0.6135719910778964,0.05335721555058009,0.7005430375932911], + [0.6167593994928209,0.055042057730435495,0.6827488552151856], + [0.6199304198780666,0.056761999532608104,0.6645401787078582], + [0.6230853024407228,0.05851740280887442,0.6459280624867872], + [0.6262242910851494,0.060308629411010846,0.6269238058941065], + [0.6293476236330355,0.06213604119079388,0.6075389463388169], + [0.6324555320336759,0.06400000000000002,0.5877852522924732], + [0.6355482425649929,0.06590086769040565,0.5676747161445903], + [0.6386259760257971,0.0678390061137873,0.5472195469221114], + [0.6416889479197478,0.06981477712192143,0.5264321628773561], + [0.6447373686314481,0.07182854256658448,0.5053251839489484], + [0.6477714435950808,0.07388066429955296,0.4839114241003016], + [0.6507913734559685,0.07597150417260329,0.4622038835403133], + [0.6537973542254181,0.07810142403751195,0.44021574083098747], + [0.6567895774291853,0.08027078574605545,0.41796034488678324], + [0.6597682302498801,0.08247995115001018,0.3954512068705424], + [0.6627334956636112,0.08472928210115264,0.37270199199091436], + [0.6656855525711526,0.0870191404512593,0.3497265112062616], + [0.6686245759238975,0.08934988805210664,0.3265387128400838], + [0.6715507368448513,0.09172188675547113,0.30315267411304364], + [0.6744642027449002,0.09413549841312918,0.279582592596744], + [0.6773651374345779,0.0965910848768573,0.25584277759443586], + [0.6802537012315447,0.09908900799843198,0.23194764145389804], + [0.6831300510639732,0.10162962962962964,0.20791169081775931], + [0.6859943405700354,0.10421331162222675,0.18374951781657037], + [0.6888467201936644,0.10684041582799977,0.1594757912099809], + [0.6916873372767638,0.1095113040987252,0.13510524748139313], + [0.6945163361480208,0.11222633828617953,0.1106526818915011], + [0.6973338582084779,0.11498588024213914,0.08613293949614632], + [0.7001400420140049,0.11779029181838055,0.06156090613394323], + [0.7029350233548074,0.12063993486668025,0.03695149938914491], + [0.7057189353321013,0.12353517123881463,0.012319659535238529], + [0.7084919084320762,0.12647636278656021,0.0], + [0.7112540705972631,0.12946387136169346,0.0], + [0.7140055472954167,0.1324980588159908,0.0], + [0.7167464615860188,0.13557928700122876,0.0], + [0.7194769341845014,0.13870791776918376,0.0], + [0.7221970835242831,0.14188431297163237,0.0], + [0.7249070258167122,0.14510883446035086,0.0], + [0.7276068751089989,0.14838184408711583,0.0], + [0.7302967433402214,0.1517037037037037,0.0], + [0.732976740395481,0.15507477516189097,0.0], + [0.7356469741582815,0.15849542031345407,0.0], + [0.738307550561205,0.1619660010101695,0.0], + [0.7409585736349484,0.16548687910381382,0.0], + [0.7436001455557875,0.16905841644616326,0.0], + [0.746232366691528,0.17268097488899445,0.0], + [0.7488553356460046,0.1763549162840838,0.0], + [0.7514691493021793,0.1800806024832078,0.0], + [0.7540739028638984,0.18385839533814294,0.0], + [0.7566696898963531,0.18768865670066562,0.0], + [0.7592566023652966,0.19157174842255237,0.0], + [0.7618347306750625,0.19550803235557962,0.0], + [0.7644041637054289,0.19949787035152397,0.0], + [0.7669649888473704,0.20354162426216163,0.0], + [0.769517292037741,0.20763965593926922,0.0], + [0.7720611577929232,0.21179232723462318,0.0], + [0.7745966692414834,0.21599999999999997,0.0], + [0.7771239081558686,0.2202630360871761,0.0], + [0.7796429549831781,0.22458179734792796,0.0], + [0.7821538888750429,0.2289566456340322,0.0], + [0.7846567877166449,0.23338794279726505,0.0], + [0.787151728154906,0.23787605068940304,0.0], + [0.7896387856258745,0.24242133116222267,0.0], + [0.7921180343813394,0.24702414606750042,0.0], + [0.794589547514695,0.25168485725701273,0.0], + [0.7970533969860857,0.2564038265825361,0.0], + [0.7995096536468523,0.2611814158958469,0.0], + [0.8019583872633048,0.26601798704872176,0.0], + [0.8043996665398437,0.2709139018929371,0.0], + [0.8068335591414519,0.2758695222802693,0.0], + [0.8092601317155774,0.28088521006249484,0.0], + [0.8116794499134278,0.28596132709139016,0.0], + [0.8140915784106943,0.29109823521873185,0.0], + [0.816496580927726,0.2962962962962962,0.0], + [0.8188945202491695,0.3015558721758599,0.0], + [0.8212854582430938,0.3068773247091994,0.0], + [0.8236694558796142,0.3122610157480909,0.0], + [0.8260465732490333,0.31770730714431106,0.0], + [0.828416869579514,0.3232165607496363,0.0], + [0.8307804032542971,0.32878913841584306,0.0], + [0.8331372318284807,0.3344254019947079,0.0], + [0.8354874120453728,0.3401257133380072,0.0], + [0.8378309998524317,0.3458904342975175,0.0], + [0.8401680504168059,0.3517199267250152,0.0], + [0.8424986181404854,0.3576145524722769,0.0], + [0.8448227566750782,0.36357467339107885,0.0], + [0.8471405189362208,0.36960065133319764,0.0], + [0.849451957117635,0.3756928481504097,0.0], + [0.851757122704842,0.38185162569449155,0.0], + [0.8540560664885428,0.3880773458172196,0.0], + [0.8563488385776752,0.39437037037037026,0.0], + [0.8586354884121575,0.40073106120572033,0.0], + [0.8609160647753271,0.40715978017504584,0.0], + [0.8631906158060839,0.41365688913012344,0.0], + [0.8654591890107455,0.42022274992272957,0.0], + [0.8677218312746247,0.4268577244046407,0.0], + [0.869978588873335,0.4335621744276334,0.0], + [0.8722295074838331,0.44033646184348396,0.0], + [0.8744746321952062,0.44718094850396894,0.0], + [0.8767140075192092,0.45409599626086483,0.0], + [0.8789476774005625,0.4610819669659483,0.0], + [0.881175685227012,0.4681392224709954,0.0], + [0.883398073839164,0.4752681246277827,0.0], + [0.8856148855400953,0.48246903528808677,0.0], + [0.8878261621047484,0.48974231630368403,0.0], + [0.8900319447891171,0.497088329526351,0.0], + [0.8922322743392266,0.5045074368078641,0.0], + [0.8944271909999159,0.5120000000000001,0.0], + [0.8966167345234256,0.5195663809545349,0.0], + [0.8988009441777984,0.5272069415232452,0.0], + [0.9009798587550961,0.5349220435579076,0.0], + [0.9031535165794373,0.5427120489102985,0.0], + [0.9053219555148626,0.5505773194321942,0.0], + [0.9074852129730301,0.5585182169753714,0.0], + [0.9096433259207461,0.5665351033916064,0.0], + [0.9117963308873357,0.5746283405326759,0.0], + [0.9139442639718567,0.5827982902503562,0.0], + [0.9160871608501616,0.5910453143964237,0.0], + [0.9182250567818114,0.599369774822655,0.0], + [0.9203579866168445,0.6077720333808263,0.0], + [0.9224859848024048,0.6162524519227144,0.0], + [0.9246090853892328,0.6248113923000956,0.0], + [0.9267273220380225,0.6334492163647465,0.0], + [0.928840728025648,0.6421662859684436,0.0], + [0.9309493362512627,0.6509629629629631,0.0], + [0.9330531792422754,0.6598396092000814,0.0], + [0.9351522891602034,0.6687965865315754,0.0], + [0.9372466978064098,0.6778342568092212,0.0], + [0.9393364366277243,0.6869529818847954,0.0], + [0.941421536721952,0.6961531236100744,0.0], + [0.943502028843273,0.7054350438368349,0.0], + [0.945577943407535,0.7147991044168531,0.0], + [0.9476493104974406,0.7242456672019059,0.0], + [0.9497161598676341,0.7337750940437691,0.0], + [0.9517785209496884,0.7433877467942194,0.0], + [0.9538364228569947,0.7530839873050335,0.0], + [0.955889894389557,0.7628641774279876,0.0], + [0.9579389640386956,0.7727286790148584,0.0], + [0.9599836599916586,0.7826778539174223,0.0], + [0.9620240101361459,0.7927120639874559,0.0], + [0.9640600420647474,0.8028316710767353,0.0], + [0.9660917830792959,0.8130370370370371,0.0], + [0.9681192601951395,0.8233285237201378,0.0], + [0.9701425001453319,0.833706492977814,0.0], + [0.9721615293847449,0.8441713066618419,0.0], + [0.9741763740941048,0.8547233266239982,0.0], + [0.9761870601839527,0.8653629147160593,0.0], + [0.9781936132985326,0.8760904327898016,0.0], + [0.9801960588196069,0.886906242697002,0.0], + [0.9821944218702024,0.8978107062894363,0.0], + [0.9841887273182883,0.9088041854188811,0.0], + [0.9861789997803863,0.9198870419371131,0.0], + [0.9881652636251156,0.9310596376959087,0.0], + [0.9901475429766743,0.9423223345470444,0.0], + [0.992125861718258,0.9536754943422966,0.0], + [0.9941002434954168,0.965119478933442,0.0], + [0.9960707117193528,0.9766546501722566,0.0], + [0.9980372895701588,0.9882813699105171,0.0], + [1.0,1.0,0.0] ], + gnuplot2: [ + [0.0,0.0,0.0], + [0.0,0.0,0.01568627450980392], + [0.0,0.0,0.03137254901960784], + [0.0,0.0,0.047058823529411764], + [0.0,0.0,0.06274509803921569], + [0.0,0.0,0.0784313725490196], + [0.0,0.0,0.09411764705882353], + [0.0,0.0,0.10980392156862745], + [0.0,0.0,0.12549019607843137], + [0.0,0.0,0.1411764705882353], + [0.0,0.0,0.1568627450980392], + [0.0,0.0,0.17254901960784313], + [0.0,0.0,0.18823529411764706], + [0.0,0.0,0.20392156862745098], + [0.0,0.0,0.2196078431372549], + [0.0,0.0,0.23529411764705882], + [0.0,0.0,0.25098039215686274], + [0.0,0.0,0.26666666666666666], + [0.0,0.0,0.2823529411764706], + [0.0,0.0,0.2980392156862745], + [0.0,0.0,0.3137254901960784], + [0.0,0.0,0.32941176470588235], + [0.0,0.0,0.34509803921568627], + [0.0,0.0,0.3607843137254902], + [0.0,0.0,0.3764705882352941], + [0.0,0.0,0.39215686274509803], + [0.0,0.0,0.40784313725490196], + [0.0,0.0,0.4235294117647059], + [0.0,0.0,0.4392156862745098], + [0.0,0.0,0.4549019607843137], + [0.0,0.0,0.47058823529411764], + [0.0,0.0,0.48627450980392156], + [0.0,0.0,0.5019607843137255], + [0.0,0.0,0.5176470588235293], + [0.0,0.0,0.5333333333333333], + [0.0,0.0,0.5490196078431373], + [0.0,0.0,0.5647058823529412], + [0.0,0.0,0.580392156862745], + [0.0,0.0,0.596078431372549], + [0.0,0.0,0.611764705882353], + [0.0,0.0,0.6274509803921569], + [0.0,0.0,0.6431372549019607], + [0.0,0.0,0.6588235294117647], + [0.0,0.0,0.6745098039215687], + [0.0,0.0,0.6901960784313725], + [0.0,0.0,0.7058823529411764], + [0.0,0.0,0.7215686274509804], + [0.0,0.0,0.7372549019607844], + [0.0,0.0,0.7529411764705882], + [0.0,0.0,0.7686274509803921], + [0.0,0.0,0.7843137254901961], + [0.0,0.0,0.8], + [0.0,0.0,0.8156862745098039], + [0.0,0.0,0.8313725490196078], + [0.0,0.0,0.8470588235294118], + [0.0,0.0,0.8627450980392157], + [0.0,0.0,0.8784313725490196], + [0.0,0.0,0.8941176470588235], + [0.0,0.0,0.9098039215686274], + [0.0,0.0,0.9254901960784314], + [0.0,0.0,0.9411764705882353], + [0.0,0.0,0.9568627450980391], + [0.0,0.0,0.9725490196078431], + [0.0,0.0,0.9882352941176471], + [0.0030637254901960675,0.0,1.0], + [0.015318627450980338,0.0,1.0], + [0.027573529411764608,0.0,1.0], + [0.03982843137254899,0.0,1.0], + [0.05208333333333326,0.0,1.0], + [0.06433823529411753,0.0,1.0], + [0.07659313725490202,0.0,1.0], + [0.08884803921568629,0.0,1.0], + [0.10110294117647056,0.0,1.0], + [0.11335784313725483,0.0,1.0], + [0.1256127450980391,0.0,1.0], + [0.1378676470588236,0.0,1.0], + [0.15012254901960786,0.0,1.0], + [0.16237745098039214,0.0,1.0], + [0.17463235294117652,0.0,1.0], + [0.1868872549019608,0.0,1.0], + [0.19914215686274506,0.0,1.0], + [0.21139705882352933,0.0,1.0], + [0.2236519607843137,0.0,1.0], + [0.23590686274509798,0.0,1.0], + [0.24816176470588225,0.0,1.0], + [0.2604166666666665,0.0,1.0], + [0.272671568627451,0.0,1.0], + [0.2849264705882353,0.0,1.0], + [0.29718137254901955,0.0,1.0], + [0.3094362745098038,0.0,1.0], + [0.3216911764705881,0.0,1.0], + [0.3339460784313726,0.0,1.0], + [0.34620098039215685,0.0,1.0], + [0.3584558823529411,0.0,1.0], + [0.3707107843137256,0.0,1.0], + [0.3829656862745099,0.0,1.0], + [0.39522058823529416,0.0,1.0], + [0.4074754901960784,0.0,1.0], + [0.4197303921568627,0.0,1.0], + [0.43198529411764697,0.0,1.0], + [0.44424019607843124,0.0,1.0], + [0.4564950980392155,0.0,1.0], + [0.46875,0.0,1.0], + [0.48100490196078427,0.0,1.0], + [0.49325980392156854,0.0,1.0], + [0.5055147058823528,0.0,1.0], + [0.5177696078431371,0.0,1.0], + [0.5300245098039216,0.0,1.0], + [0.5422794117647058,0.007058823529411784,0.9929411764705883], + [0.5545343137254901,0.014901960784313717,0.9850980392156864], + [0.5667892156862746,0.02274509803921576,0.9772549019607844], + [0.5790441176470589,0.030588235294117694,0.9694117647058824], + [0.5912990196078431,0.03843137254901963,0.9615686274509805], + [0.6035539215686274,0.04627450980392156,0.9537254901960786], + [0.6158088235294117,0.05411764705882349,0.9458823529411766], + [0.6280637254901962,0.061960784313725537,0.9380392156862746], + [0.6403186274509804,0.06980392156862747,0.9301960784313726], + [0.6525735294117647,0.0776470588235294,0.9223529411764707], + [0.664828431372549,0.08549019607843145,0.9145098039215687], + [0.6770833333333333,0.09333333333333338,0.9066666666666667], + [0.6893382352941175,0.10117647058823531,0.8988235294117648], + [0.7015931372549018,0.10901960784313725,0.8909803921568629], + [0.7138480392156861,0.11686274509803918,0.8831372549019609], + [0.7261029411764706,0.12470588235294122,0.8752941176470589], + [0.7383578431372548,0.13254901960784315,0.867450980392157], + [0.7506127450980391,0.1403921568627451,0.859607843137255], + [0.7628676470588236,0.14823529411764713,0.851764705882353], + [0.7751225490196079,0.15607843137254906,0.843921568627451], + [0.7873774509803921,0.163921568627451,0.8360784313725491], + [0.7996323529411764,0.17176470588235293,0.8282352941176472], + [0.8118872549019607,0.17960784313725486,0.8203921568627452], + [0.824142156862745,0.1874509803921568,0.8125490196078433], + [0.8363970588235292,0.19529411764705873,0.8047058823529414], + [0.8486519607843137,0.20313725490196088,0.7968627450980392], + [0.860906862745098,0.21098039215686282,0.7890196078431373], + [0.8731617647058822,0.21882352941176475,0.7811764705882354], + [0.8854166666666665,0.22666666666666668,0.7733333333333334], + [0.8976715686274508,0.23450980392156862,0.7654901960784315], + [0.9099264705882351,0.24235294117647055,0.7576470588235296], + [0.9221813725490193,0.2501960784313725,0.7498039215686276], + [0.934436274509804,0.25803921568627464,0.7419607843137255], + [0.9466911764705883,0.26588235294117657,0.7341176470588235], + [0.9589460784313726,0.2737254901960785,0.7262745098039216], + [0.9712009803921569,0.28156862745098044,0.7184313725490197], + [0.9834558823529411,0.28941176470588237,0.7105882352941177], + [0.9957107843137254,0.2972549019607843,0.7027450980392158], + [1.0,0.30509803921568623,0.6949019607843139], + [1.0,0.31294117647058817,0.6870588235294119], + [1.0,0.3207843137254901,0.67921568627451], + [1.0,0.32862745098039225,0.6713725490196079], + [1.0,0.3364705882352942,0.6635294117647059], + [1.0,0.3443137254901961,0.655686274509804], + [1.0,0.35215686274509805,0.6478431372549021], + [1.0,0.36,0.6400000000000001], + [1.0,0.3678431372549019,0.6321568627450982], + [1.0,0.37568627450980385,0.6243137254901963], + [1.0,0.383529411764706,0.6164705882352941], + [1.0,0.39137254901960794,0.6086274509803922], + [1.0,0.3992156862745099,0.6007843137254902], + [1.0,0.4070588235294118,0.5929411764705883], + [1.0,0.41490196078431374,0.5850980392156864], + [1.0,0.42274509803921567,0.5772549019607844], + [1.0,0.4305882352941176,0.5694117647058825], + [1.0,0.43843137254901954,0.5615686274509806], + [1.0,0.44627450980392147,0.5537254901960786], + [1.0,0.4541176470588236,0.5458823529411765], + [1.0,0.46196078431372556,0.5380392156862746], + [1.0,0.4698039215686275,0.5301960784313726], + [1.0,0.4776470588235294,0.5223529411764707], + [1.0,0.48549019607843136,0.5145098039215688], + [1.0,0.4933333333333333,0.5066666666666668], + [1.0,0.5011764705882352,0.4988235294117649], + [1.0,0.5090196078431374,0.49098039215686273], + [1.0,0.5168627450980393,0.4831372549019608], + [1.0,0.5247058823529412,0.47529411764705887], + [1.0,0.5325490196078432,0.46745098039215693], + [1.0,0.5403921568627451,0.459607843137255], + [1.0,0.548235294117647,0.45176470588235307], + [1.0,0.556078431372549,0.44392156862745114], + [1.0,0.5639215686274509,0.4360784313725492], + [1.0,0.5717647058823528,0.42823529411764727], + [1.0,0.579607843137255,0.4203921568627451], + [1.0,0.5874509803921569,0.4125490196078432], + [1.0,0.5952941176470589,0.40470588235294125], + [1.0,0.6031372549019608,0.3968627450980393], + [1.0,0.6109803921568627,0.3890196078431374], + [1.0,0.6188235294117647,0.38117647058823545], + [1.0,0.6266666666666666,0.3733333333333335], + [1.0,0.6345098039215687,0.36549019607843136], + [1.0,0.6423529411764707,0.35764705882352943], + [1.0,0.6501960784313726,0.3498039215686275], + [1.0,0.6580392156862745,0.34196078431372556], + [1.0,0.6658823529411765,0.33411764705882363], + [1.0,0.6737254901960784,0.3262745098039217], + [1.0,0.6815686274509803,0.31843137254901976], + [1.0,0.6894117647058823,0.31058823529411783], + [1.0,0.6972549019607842,0.3027450980392159], + [1.0,0.7050980392156864,0.29490196078431374], + [1.0,0.7129411764705883,0.2870588235294118], + [1.0,0.7207843137254902,0.2792156862745099], + [1.0,0.7286274509803922,0.27137254901960794], + [1.0,0.7364705882352941,0.263529411764706], + [1.0,0.744313725490196,0.2556862745098041], + [1.0,0.752156862745098,0.24784313725490215], + [1.0,0.7600000000000001,0.24], + [1.0,0.767843137254902,0.23215686274509806], + [1.0,0.775686274509804,0.22431372549019613], + [1.0,0.7835294117647059,0.2164705882352942], + [1.0,0.7913725490196079,0.20862745098039226], + [1.0,0.7992156862745098,0.20078431372549033], + [1.0,0.8070588235294117,0.1929411764705884], + [1.0,0.8149019607843137,0.18509803921568646], + [1.0,0.8227450980392156,0.17725490196078453], + [1.0,0.8305882352941177,0.16941176470588237], + [1.0,0.8384313725490197,0.16156862745098044], + [1.0,0.8462745098039216,0.1537254901960785], + [1.0,0.8541176470588235,0.14588235294117657], + [1.0,0.8619607843137255,0.13803921568627464], + [1.0,0.8698039215686274,0.1301960784313727], + [1.0,0.8776470588235293,0.12235294117647078], + [1.0,0.8854901960784315,0.11450980392156862], + [1.0,0.8933333333333334,0.10666666666666669], + [1.0,0.9011764705882354,0.09882352941176475], + [1.0,0.9090196078431373,0.09098039215686282], + [1.0,0.9168627450980392,0.08313725490196089], + [1.0,0.9247058823529412,0.07529411764705896], + [1.0,0.9325490196078431,0.06745098039215702], + [1.0,0.940392156862745,0.05960784313725509], + [1.0,0.948235294117647,0.05176470588235316], + [1.0,0.9560784313725491,0.043921568627451], + [1.0,0.963921568627451,0.03607843137254907], + [1.0,0.971764705882353,0.028235294117647136], + [1.0,0.9796078431372549,0.020392156862745203], + [1.0,0.9874509803921568,0.01254901960784327], + [1.0,0.9952941176470588,0.004705882352941337], + [1.0,1.0,0.019607843137254832], + [1.0,1.0,0.06862745098039191], + [1.0,1.0,0.117647058823529], + [1.0,1.0,0.16666666666666607], + [1.0,1.0,0.21568627450980316], + [1.0,1.0,0.26470588235294024], + [1.0,1.0,0.3137254901960773], + [1.0,1.0,0.3627450980392144], + [1.0,1.0,0.4117647058823515], + [1.0,1.0,0.46078431372548856], + [1.0,1.0,0.5098039215686274], + [1.0,1.0,0.5588235294117645], + [1.0,1.0,0.6078431372549016], + [1.0,1.0,0.6568627450980387], + [1.0,1.0,0.7058823529411757], + [1.0,1.0,0.7549019607843128], + [1.0,1.0,0.8039215686274499], + [1.0,1.0,0.8529411764705888], + [1.0,1.0,0.9019607843137258], + [1.0,1.0,0.9509803921568629], + [1.0,1.0,1.0] ], + gnuplot2_r: [ + [1.0,1.0,1.0], + [1.0,1.0,0.9509803921568629], + [1.0,1.0,0.9019607843137258], + [1.0,1.0,0.8529411764705888], + [1.0,1.0,0.8039215686274517], + [1.0,1.0,0.7549019607843128], + [1.0,1.0,0.7058823529411757], + [1.0,1.0,0.6568627450980387], + [1.0,1.0,0.6078431372549016], + [1.0,1.0,0.5588235294117645], + [1.0,1.0,0.5098039215686274], + [1.0,1.0,0.46078431372549034], + [1.0,1.0,0.4117647058823515], + [1.0,1.0,0.3627450980392144], + [1.0,1.0,0.3137254901960773], + [1.0,1.0,0.26470588235294024], + [1.0,1.0,0.21568627450980316], + [1.0,1.0,0.16666666666666607], + [1.0,1.0,0.117647058823529], + [1.0,1.0,0.06862745098039191], + [1.0,1.0,0.019607843137254832], + [1.0,0.9952941176470588,0.004705882352941337], + [1.0,0.9874509803921568,0.01254901960784327], + [1.0,0.9796078431372549,0.020392156862745203], + [1.0,0.971764705882353,0.028235294117647136], + [1.0,0.963921568627451,0.03607843137254907], + [1.0,0.9560784313725491,0.043921568627451], + [1.0,0.9482352941176472,0.051764705882352935], + [1.0,0.940392156862745,0.05960784313725509], + [1.0,0.9325490196078431,0.06745098039215702], + [1.0,0.9247058823529412,0.07529411764705896], + [1.0,0.9168627450980392,0.08313725490196089], + [1.0,0.9090196078431373,0.09098039215686282], + [1.0,0.9011764705882354,0.09882352941176475], + [1.0,0.8933333333333334,0.10666666666666669], + [1.0,0.8854901960784315,0.11450980392156862], + [1.0,0.8776470588235296,0.12235294117647055], + [1.0,0.8698039215686276,0.1301960784313725], + [1.0,0.8619607843137255,0.13803921568627464], + [1.0,0.8541176470588235,0.14588235294117657], + [1.0,0.8462745098039216,0.1537254901960785], + [1.0,0.8384313725490197,0.16156862745098044], + [1.0,0.8305882352941177,0.16941176470588237], + [1.0,0.8227450980392156,0.17725490196078453], + [1.0,0.8149019607843137,0.18509803921568646], + [1.0,0.8070588235294117,0.1929411764705884], + [1.0,0.7992156862745098,0.20078431372549033], + [1.0,0.7913725490196079,0.20862745098039226], + [1.0,0.7835294117647059,0.2164705882352942], + [1.0,0.775686274509804,0.22431372549019613], + [1.0,0.767843137254902,0.23215686274509806], + [1.0,0.7600000000000001,0.24], + [1.0,0.7521568627450982,0.24784313725490192], + [1.0,0.7443137254901963,0.25568627450980386], + [1.0,0.7364705882352941,0.263529411764706], + [1.0,0.7286274509803922,0.27137254901960794], + [1.0,0.7207843137254902,0.2792156862745099], + [1.0,0.7129411764705883,0.2870588235294118], + [1.0,0.7050980392156864,0.29490196078431374], + [1.0,0.6972549019607842,0.3027450980392159], + [1.0,0.6894117647058823,0.31058823529411783], + [1.0,0.6815686274509803,0.31843137254901976], + [1.0,0.6737254901960784,0.3262745098039217], + [1.0,0.6658823529411765,0.33411764705882363], + [1.0,0.6580392156862745,0.34196078431372556], + [1.0,0.6501960784313726,0.3498039215686275], + [1.0,0.6423529411764707,0.35764705882352943], + [1.0,0.6345098039215687,0.36549019607843136], + [1.0,0.6266666666666668,0.3733333333333333], + [1.0,0.6188235294117649,0.38117647058823523], + [1.0,0.6109803921568627,0.3890196078431374], + [1.0,0.6031372549019608,0.3968627450980393], + [1.0,0.5952941176470589,0.40470588235294125], + [1.0,0.5874509803921569,0.4125490196078432], + [1.0,0.579607843137255,0.4203921568627451], + [1.0,0.5717647058823528,0.42823529411764727], + [1.0,0.5639215686274509,0.4360784313725492], + [1.0,0.556078431372549,0.44392156862745114], + [1.0,0.548235294117647,0.45176470588235307], + [1.0,0.5403921568627451,0.459607843137255], + [1.0,0.5325490196078432,0.46745098039215693], + [1.0,0.5247058823529412,0.47529411764705887], + [1.0,0.5168627450980393,0.4831372549019608], + [1.0,0.5090196078431374,0.49098039215686273], + [1.0,0.5011764705882354,0.49882352941176467], + [1.0,0.4933333333333335,0.5066666666666666], + [1.0,0.48549019607843136,0.5145098039215688], + [1.0,0.4776470588235294,0.5223529411764707], + [1.0,0.4698039215686275,0.5301960784313726], + [1.0,0.46196078431372556,0.5380392156862746], + [1.0,0.4541176470588236,0.5458823529411765], + [1.0,0.44627450980392147,0.5537254901960786], + [1.0,0.43843137254901954,0.5615686274509806], + [1.0,0.4305882352941176,0.5694117647058825], + [1.0,0.42274509803921567,0.5772549019607844], + [1.0,0.41490196078431374,0.5850980392156864], + [1.0,0.4070588235294118,0.5929411764705883], + [1.0,0.3992156862745099,0.6007843137254902], + [1.0,0.39137254901960794,0.6086274509803922], + [1.0,0.383529411764706,0.6164705882352941], + [1.0,0.3756862745098041,0.624313725490196], + [1.0,0.36784313725490214,0.632156862745098], + [1.0,0.36,0.6400000000000001], + [1.0,0.35215686274509805,0.6478431372549021], + [1.0,0.3443137254901961,0.655686274509804], + [1.0,0.3364705882352942,0.6635294117647059], + [1.0,0.32862745098039225,0.6713725490196079], + [1.0,0.3207843137254901,0.67921568627451], + [1.0,0.31294117647058817,0.6870588235294119], + [1.0,0.30509803921568623,0.6949019607843139], + [0.9957107843137254,0.2972549019607843,0.7027450980392158], + [0.9834558823529411,0.28941176470588237,0.7105882352941177], + [0.9712009803921569,0.28156862745098044,0.7184313725490197], + [0.9589460784313726,0.2737254901960785,0.7262745098039216], + [0.9466911764705883,0.26588235294117657,0.7341176470588235], + [0.934436274509804,0.25803921568627464,0.7419607843137255], + [0.9221813725490198,0.2501960784313727,0.7498039215686274], + [0.9099264705882355,0.24235294117647077,0.7576470588235293], + [0.8976715686274508,0.23450980392156862,0.7654901960784315], + [0.8854166666666665,0.22666666666666668,0.7733333333333334], + [0.8731617647058822,0.21882352941176475,0.7811764705882354], + [0.860906862745098,0.21098039215686282,0.7890196078431373], + [0.8486519607843137,0.20313725490196088,0.7968627450980392], + [0.8363970588235292,0.19529411764705873,0.8047058823529414], + [0.824142156862745,0.1874509803921568,0.8125490196078433], + [0.8118872549019607,0.17960784313725486,0.8203921568627452], + [0.7996323529411764,0.17176470588235293,0.8282352941176472], + [0.7873774509803921,0.163921568627451,0.8360784313725491], + [0.7751225490196079,0.15607843137254906,0.843921568627451], + [0.7628676470588236,0.14823529411764713,0.851764705882353], + [0.7506127450980393,0.1403921568627452,0.8596078431372549], + [0.738357843137255,0.13254901960784327,0.8674509803921568], + [0.7261029411764708,0.12470588235294133,0.8752941176470588], + [0.7138480392156861,0.11686274509803918,0.8831372549019609], + [0.7015931372549018,0.10901960784313725,0.8909803921568629], + [0.6893382352941175,0.10117647058823531,0.8988235294117648], + [0.6770833333333333,0.09333333333333338,0.9066666666666667], + [0.664828431372549,0.08549019607843145,0.9145098039215687], + [0.6525735294117647,0.07764705882352951,0.9223529411764706], + [0.6403186274509804,0.06980392156862758,0.9301960784313725], + [0.628063725490196,0.061960784313725425,0.9380392156862747], + [0.6158088235294117,0.05411764705882349,0.9458823529411766], + [0.6035539215686274,0.04627450980392156,0.9537254901960786], + [0.5912990196078431,0.03843137254901963,0.9615686274509805], + [0.5790441176470589,0.030588235294117694,0.9694117647058824], + [0.5667892156862746,0.02274509803921576,0.9772549019607844], + [0.5545343137254903,0.014901960784313828,0.9850980392156863], + [0.5422794117647061,0.007058823529411895,0.9929411764705882], + [0.5300245098039218,0.0,1.0], + [0.5177696078431371,0.0,1.0], + [0.5055147058823528,0.0,1.0], + [0.49325980392156854,0.0,1.0], + [0.48100490196078427,0.0,1.0], + [0.46875,0.0,1.0], + [0.45649509803921573,0.0,1.0], + [0.44424019607843146,0.0,1.0], + [0.43198529411764697,0.0,1.0], + [0.4197303921568627,0.0,1.0], + [0.4074754901960784,0.0,1.0], + [0.39522058823529416,0.0,1.0], + [0.3829656862745099,0.0,1.0], + [0.3707107843137256,0.0,1.0], + [0.35845588235294135,0.0,1.0], + [0.3462009803921571,0.0,1.0], + [0.3339460784313728,0.0,1.0], + [0.3216911764705881,0.0,1.0], + [0.3094362745098038,0.0,1.0], + [0.29718137254901955,0.0,1.0], + [0.2849264705882353,0.0,1.0], + [0.272671568627451,0.0,1.0], + [0.26041666666666674,0.0,1.0], + [0.24816176470588247,0.0,1.0], + [0.23590686274509798,0.0,1.0], + [0.2236519607843137,0.0,1.0], + [0.21139705882352933,0.0,1.0], + [0.19914215686274506,0.0,1.0], + [0.1868872549019608,0.0,1.0], + [0.17463235294117652,0.0,1.0], + [0.16237745098039225,0.0,1.0], + [0.15012254901960798,0.0,1.0], + [0.1378676470588237,0.0,1.0], + [0.1256127450980391,0.0,1.0], + [0.11335784313725483,0.0,1.0], + [0.10110294117647056,0.0,1.0], + [0.08884803921568629,0.0,1.0], + [0.07659313725490202,0.0,1.0], + [0.06433823529411775,0.0,1.0], + [0.05208333333333348,0.0,1.0], + [0.03982843137254888,0.0,1.0], + [0.027573529411764608,0.0,1.0], + [0.015318627450980338,0.0,1.0], + [0.0030637254901960675,0.0,1.0], + [0.0,0.0,0.9882352941176471], + [0.0,0.0,0.9725490196078432], + [0.0,0.0,0.9568627450980394], + [0.0,0.0,0.9411764705882355], + [0.0,0.0,0.9254901960784316], + [0.0,0.0,0.9098039215686273], + [0.0,0.0,0.8941176470588235], + [0.0,0.0,0.8784313725490196], + [0.0,0.0,0.8627450980392157], + [0.0,0.0,0.8470588235294119], + [0.0,0.0,0.831372549019608], + [0.0,0.0,0.8156862745098041], + [0.0,0.0,0.7999999999999998], + [0.0,0.0,0.784313725490196], + [0.0,0.0,0.7686274509803921], + [0.0,0.0,0.7529411764705882], + [0.0,0.0,0.7372549019607844], + [0.0,0.0,0.7215686274509805], + [0.0,0.0,0.7058823529411766], + [0.0,0.0,0.6901960784313728], + [0.0,0.0,0.6745098039215689], + [0.0,0.0,0.6588235294117646], + [0.0,0.0,0.6431372549019607], + [0.0,0.0,0.6274509803921569], + [0.0,0.0,0.611764705882353], + [0.0,0.0,0.5960784313725491], + [0.0,0.0,0.5803921568627453], + [0.0,0.0,0.5647058823529414], + [0.0,0.0,0.5490196078431371], + [0.0,0.0,0.5333333333333332], + [0.0,0.0,0.5176470588235293], + [0.0,0.0,0.5019607843137255], + [0.0,0.0,0.4862745098039216], + [0.0,0.0,0.47058823529411775], + [0.0,0.0,0.4549019607843139], + [0.0,0.0,0.43921568627451], + [0.0,0.0,0.42352941176470615], + [0.0,0.0,0.40784313725490184], + [0.0,0.0,0.392156862745098], + [0.0,0.0,0.3764705882352941], + [0.0,0.0,0.36078431372549025], + [0.0,0.0,0.3450980392156864], + [0.0,0.0,0.3294117647058825], + [0.0,0.0,0.31372549019607865], + [0.0,0.0,0.29803921568627434], + [0.0,0.0,0.2823529411764705], + [0.0,0.0,0.2666666666666666], + [0.0,0.0,0.25098039215686274], + [0.0,0.0,0.23529411764705888], + [0.0,0.0,0.219607843137255], + [0.0,0.0,0.20392156862745114], + [0.0,0.0,0.18823529411764728], + [0.0,0.0,0.1725490196078434], + [0.0,0.0,0.1568627450980391], + [0.0,0.0,0.14117647058823524], + [0.0,0.0,0.12549019607843137], + [0.0,0.0,0.1098039215686275], + [0.0,0.0,0.09411764705882364], + [0.0,0.0,0.07843137254901977], + [0.0,0.0,0.06274509803921591], + [0.0,0.0,0.0470588235294116], + [0.0,0.0,0.03137254901960773], + [0.0,0.0,0.015686274509803866], + [0.0,0.0,0.0] ], + gnuplot_r: [ + [1.0,1.0,0.0], + [0.9980372895701588,0.9882813699105171,0.0], + [0.9960707117193528,0.9766546501722566,0.0], + [0.9941002434954168,0.965119478933442,0.0], + [0.9921258617182581,0.9536754943422968,0.0], + [0.9901475429766743,0.9423223345470444,0.0], + [0.9881652636251156,0.9310596376959087,0.0], + [0.9861789997803863,0.9198870419371131,0.0], + [0.9841887273182883,0.9088041854188811,0.0], + [0.9821944218702024,0.8978107062894363,0.0], + [0.9801960588196069,0.886906242697002,0.0], + [0.9781936132985327,0.8760904327898019,0.0], + [0.9761870601839527,0.8653629147160593,0.0], + [0.9741763740941048,0.8547233266239982,0.0], + [0.9721615293847449,0.8441713066618419,0.0], + [0.9701425001453319,0.833706492977814,0.0], + [0.9681192601951395,0.8233285237201378,0.0], + [0.9660917830792959,0.8130370370370371,0.0], + [0.9640600420647474,0.8028316710767353,0.0], + [0.9620240101361459,0.7927120639874559,0.0], + [0.9599836599916587,0.7826778539174225,0.0], + [0.9579389640386956,0.7727286790148584,0.0], + [0.955889894389557,0.7628641774279876,0.0], + [0.9538364228569947,0.7530839873050335,0.0], + [0.9517785209496884,0.7433877467942194,0.0], + [0.9497161598676341,0.7337750940437691,0.0], + [0.9476493104974406,0.7242456672019059,0.0], + [0.9455779434075351,0.7147991044168533,0.0], + [0.943502028843273,0.7054350438368349,0.0], + [0.941421536721952,0.6961531236100744,0.0], + [0.9393364366277243,0.6869529818847954,0.0], + [0.9372466978064098,0.6778342568092212,0.0], + [0.9351522891602034,0.6687965865315754,0.0], + [0.9330531792422754,0.6598396092000814,0.0], + [0.9309493362512627,0.6509629629629631,0.0], + [0.928840728025648,0.6421662859684436,0.0], + [0.9267273220380225,0.6334492163647467,0.0], + [0.9246090853892329,0.6248113923000959,0.0], + [0.9224859848024048,0.6162524519227144,0.0], + [0.9203579866168445,0.6077720333808263,0.0], + [0.9182250567818114,0.599369774822655,0.0], + [0.9160871608501616,0.5910453143964237,0.0], + [0.9139442639718567,0.5827982902503562,0.0], + [0.9117963308873357,0.5746283405326759,0.0], + [0.9096433259207461,0.5665351033916064,0.0], + [0.9074852129730301,0.5585182169753714,0.0], + [0.9053219555148626,0.5505773194321942,0.0], + [0.9031535165794373,0.5427120489102985,0.0], + [0.9009798587550961,0.5349220435579076,0.0], + [0.8988009441777984,0.5272069415232452,0.0], + [0.8966167345234256,0.5195663809545349,0.0], + [0.8944271909999159,0.5120000000000001,0.0], + [0.8922322743392267,0.5045074368078644,0.0], + [0.8900319447891172,0.49708832952635124,0.0], + [0.8878261621047484,0.48974231630368403,0.0], + [0.8856148855400953,0.48246903528808677,0.0], + [0.883398073839164,0.4752681246277827,0.0], + [0.881175685227012,0.4681392224709954,0.0], + [0.8789476774005625,0.4610819669659483,0.0], + [0.8767140075192092,0.45409599626086483,0.0], + [0.8744746321952062,0.44718094850396894,0.0], + [0.8722295074838331,0.44033646184348396,0.0], + [0.869978588873335,0.4335621744276334,0.0], + [0.8677218312746247,0.4268577244046407,0.0], + [0.8654591890107455,0.42022274992272957,0.0], + [0.8631906158060839,0.41365688913012344,0.0], + [0.8609160647753271,0.40715978017504584,0.0], + [0.8586354884121575,0.40073106120572033,0.0], + [0.8563488385776753,0.3943703703703705,0.0], + [0.8540560664885429,0.38807734581721975,0.0], + [0.851757122704842,0.38185162569449155,0.0], + [0.849451957117635,0.3756928481504097,0.0], + [0.8471405189362208,0.36960065133319764,0.0], + [0.8448227566750782,0.36357467339107885,0.0], + [0.8424986181404854,0.3576145524722769,0.0], + [0.8401680504168059,0.3517199267250152,0.0], + [0.8378309998524317,0.3458904342975175,0.0], + [0.8354874120453728,0.3401257133380072,0.0], + [0.8331372318284807,0.3344254019947079,0.0], + [0.8307804032542971,0.32878913841584306,0.0], + [0.828416869579514,0.3232165607496363,0.0], + [0.8260465732490333,0.31770730714431106,0.0], + [0.8236694558796142,0.3122610157480909,0.0], + [0.8212854582430938,0.3068773247091994,0.0], + [0.8188945202491696,0.30155587217586005,0.0], + [0.816496580927726,0.2962962962962964,0.0], + [0.8140915784106943,0.29109823521873185,0.0], + [0.8116794499134278,0.28596132709139016,0.0], + [0.8092601317155774,0.28088521006249484,0.0], + [0.8068335591414519,0.2758695222802693,0.0], + [0.8043996665398437,0.2709139018929371,0.0], + [0.8019583872633048,0.26601798704872176,0.0], + [0.7995096536468523,0.2611814158958469,0.0], + [0.7970533969860857,0.2564038265825361,0.0], + [0.794589547514695,0.25168485725701273,0.0], + [0.7921180343813394,0.24702414606750042,0.0], + [0.7896387856258745,0.24242133116222267,0.0], + [0.787151728154906,0.23787605068940304,0.0], + [0.7846567877166449,0.23338794279726505,0.0], + [0.7821538888750429,0.2289566456340322,0.0], + [0.7796429549831781,0.2245817973479281,0.0], + [0.7771239081558687,0.2202630360871762,0.0], + [0.7745966692414834,0.21599999999999997,0.0], + [0.7720611577929232,0.21179232723462318,0.0], + [0.769517292037741,0.20763965593926922,0.0], + [0.7669649888473704,0.20354162426216163,0.0], + [0.7644041637054289,0.19949787035152397,0.0], + [0.7618347306750625,0.19550803235557962,0.0], + [0.7592566023652966,0.19157174842255237,0.0], + [0.7566696898963531,0.18768865670066562,0.0], + [0.7540739028638984,0.18385839533814294,0.0], + [0.7514691493021793,0.1800806024832078,0.0], + [0.7488553356460046,0.1763549162840838,0.0], + [0.746232366691528,0.17268097488899445,0.0], + [0.7436001455557875,0.16905841644616326,0.0], + [0.7409585736349484,0.16548687910381382,0.0], + [0.738307550561205,0.16196600101016959,0.0], + [0.7356469741582815,0.15849542031345418,0.0], + [0.732976740395481,0.15507477516189097,0.0], + [0.7302967433402214,0.1517037037037037,0.0], + [0.7276068751089989,0.14838184408711583,0.0], + [0.7249070258167122,0.14510883446035086,0.0], + [0.7221970835242831,0.14188431297163237,0.0], + [0.7194769341845014,0.13870791776918376,0.0], + [0.7167464615860188,0.13557928700122876,0.0], + [0.7140055472954167,0.1324980588159908,0.0], + [0.7112540705972631,0.12946387136169346,0.0], + [0.7084919084320762,0.12647636278656021,0.0], + [0.7057189353321013,0.12353517123881463,0.012319659535238529], + [0.7029350233548074,0.12063993486668025,0.03695149938914491], + [0.7001400420140049,0.11779029181838059,0.061560906133942786], + [0.6973338582084779,0.11498588024213918,0.08613293949614588], + [0.6945163361480208,0.11222633828617956,0.11065268189150065], + [0.6916873372767638,0.1095113040987252,0.13510524748139313], + [0.6888467201936644,0.10684041582799977,0.1594757912099809], + [0.6859943405700354,0.10421331162222675,0.18374951781657037], + [0.6831300510639732,0.10162962962962964,0.20791169081775931], + [0.6802537012315447,0.09908900799843198,0.23194764145389804], + [0.677365137434578,0.09659108487685734,0.2558427775944354], + [0.6744642027449002,0.09413549841312922,0.27958259259674356], + [0.6715507368448513,0.09172188675547109,0.30315267411304403], + [0.6686245759238975,0.08934988805210664,0.3265387128400838], + [0.6656855525711526,0.0870191404512593,0.3497265112062616], + [0.6627334956636112,0.08472928210115264,0.37270199199091436], + [0.6597682302498801,0.08247995115001018,0.3954512068705424], + [0.6567895774291853,0.08027078574605545,0.41796034488678324], + [0.6537973542254182,0.07810142403751198,0.4402157408309871], + [0.6507913734559686,0.07597150417260333,0.46220388354031283], + [0.6477714435950808,0.07388066429955299,0.4839114241003012], + [0.6447373686314481,0.07182854256658448,0.5053251839489484], + [0.6416889479197478,0.06981477712192143,0.5264321628773561], + [0.6386259760257971,0.0678390061137873,0.5472195469221114], + [0.6355482425649929,0.06590086769040565,0.5676747161445903], + [0.6324555320336759,0.06400000000000002,0.5877852522924732], + [0.6293476236330356,0.062136041190793904,0.6075389463388169], + [0.6262242910851495,0.060308629411010874,0.6269238058941065], + [0.6230853024407228,0.058517402808874394,0.6459280624867876], + [0.6199304198780666,0.056761999532608104,0.6645401787078582], + [0.6167593994928209,0.055042057730435495,0.6827488552151856], + [0.6135719910778964,0.05335721555058009,0.7005430375932911], + [0.6103679378930738,0.05170711114126543,0.717911923064442], + [0.6071469764236599,0.05009138265071504,0.7348449670469757], + [0.6039088361275576,0.04850966822715247,0.7513318895568732], + [0.6006532391700641,0.046961606018801234,0.7673626814486968], + [0.5973799001456604,0.04544683417388488,0.7829276104921027], + [0.5940885257860046,0.0439649908406269,0.7980172272802396], + [0.5907788146532823,0.0425157141672509,0.8126223709664456], + [0.587450456818008,0.04109864230198038,0.8267341748257635], + [0.5841031335203016,0.03971341339303888,0.8403440716378927], + [0.5807365168135928,0.03835966558864992,0.8534437988883159], + [0.5773502691896258,0.03703703703703705,0.8660254037844385], + [0.5739440431835515,0.03574516588642379,0.8780812480836978], + [0.570517480957798,0.03448369028503365,0.8896040127307098], + [0.5670702138633102,0.03325224838109022,0.9005867023006376], + [0.5636018619766345,0.03205047832281701,0.9110226492460884], + [0.5601120336112039,0.030878018258437553,0.9209055179449537], + [0.5566003248010438,0.02973450633617538,0.9302293085467404], + [0.5530663187549721,0.028619580704254025,0.9389883606150565], + [0.5495095852792065,0.027532879510897026,0.9471773565640402], + [0.5459296801661131,0.026474040904327912,0.9547913248866443], + [0.5423261445466405,0.025442703032770218,0.961825643172819], + [0.5386985042037638,0.024438504044447452,0.9682760409157589], + [0.5350462688440333,0.023461082087583202,0.9741386021045102], + [0.5313689313240572,0.022510075310400977,0.9794097676013659], + [0.5276659668284659,0.021585121861124306,0.9840863373026044], + [0.5239368319955838,0.020685859887976728,0.9881654720812594], + [0.5201809639866858,0.019811927539181772,0.9916446955107427], + [0.5163977794943223,0.018962962962962973,0.9945218953682733], + [0.5125866736847687,0.018138604307543847,0.9967953249171991], + [0.5087470190691683,0.01733848972114797,0.9984636039674339], + [0.5048781642974013,0.01656225735199885,0.9995257197133659], + [0.5009794328681196,0.015809545348320027,0.9999810273487268], + [0.4970501217477084,0.01507999185833503,0.9998292504580527], + [0.4930894998901932,0.014373235030267398,0.9990704811844932], + [0.48909680664926636,0.01368891301234066,0.9977051801738729], + [0.485071250072666,0.013026663952778352,0.9957341762950346], + [0.481012005068073,0.012386125999804008,0.9931586661366362], + [0.4769182114284973,0.011766937301641144,0.989980213280707], + [0.4727889717037675,0.01116873600651333,0.9862007473534026], + [0.4686233489032049,0.01059116026264408,0.9818225628535369], + [0.464420364012824,0.010033848218256931,0.9768483177596007], + [0.46017899330842227,0.009496438021575416,0.9712810319161139], + [0.4558981654436679,0.008978567820823067,0.9651240852002891], + [0.4515767582897187,0.00847987576422342,0.9583812154701223], + [0.44721359549995787,0.007999999999999995,0.9510565162951535], + [0.44280744277004763,0.007538578676376352,0.9431544344712774], + [0.4383570037596046,0.007095249941576013,0.9346797673211106], + [0.4338609156373123,0.006669651943822511,0.9256376597815562], + [0.42931774420607877,0.00626142283133938,0.9160336012803335], + [0.42472597855881755,0.005870200752350154,0.9058734224033671], + [0.420084025208403,0.005495623855078367,0.8951632913550623], + [0.4153902016271486,0.005137330287747553,0.8839097102136121], + [0.410642729121547,0.004794958198581245,0.872119510983611], + [0.40583972495671383,0.0044681457358029695,0.8597998514483722], + [0.4009791936316524,0.0041565310476362775,0.846958210824467], + [0.3960590171906697,0.003859752282304694,0.8336023852211195], + [0.39107694443752145,0.003577447588031753,0.8197404829072211], + [0.38603057889646164,0.003309255113040989,0.8053809193888327], + [0.38091736533753134,0.003054813005555935,0.7905324123001635], + [0.3757345746510898,0.002813759413800125,0.77520397611113], + [0.37047928681747416,0.0025857324859970875,0.7594049166547069], + [0.3651483716701107,0.0023703703703703686,0.7431448254773941], + [0.3597384670922507,0.0021673112151434962,0.7264335740162241], + [0.3542459542160381,0.0019761931685400034,0.7092813076058534], + [0.34866692910423897,0.0017966543787834247,0.69169843931937], + [0.3429971702850177,0.001628332994097294,0.6736956436465573], + [0.33723210137245013,0.0014708671627051452,0.6552838500134537], + [0.3313667478318057,0.001323895032830512,0.6364742361471417], + [0.32539568672798436,0.0011870547526969288,0.6172782212897933], + [0.3193129880128985,0.0010599844705279258,0.5977074592660935], + [0.3131121455425747,0.000942322334547044,0.577773831408251], + [0.3067859955389482,0.0008337064929778139,0.5574894393428855], + [0.30032661958503204,0.0007337750940437693,0.53686659764418], + [0.29372522840900406,0.0006421662859684441,0.5159178263577512], + [0.28697202159177576,0.0005585182169753723,0.49465584339977897], + [0.28005601680560205,0.0004824690352880878,0.47309355683601034], + [0.27296484008305644,0.0004136568891301227,0.45124405704532256], + [0.2656844656620285,0.0003517199267250148,0.42912060877260877], + [0.2581988897471611,0.0002962962962962961,0.40673664307580015], + [0.2504897164340598,0.0002470241460675004,0.38410574917192586], + [0.242535625036333,0.00020354162426216175,0.361241666187153], + [0.2343116744516025,0.000165486879103814,0.3381582748158173], + [0.2257883791448594,0.00013249805881599116,0.3148695888935081], + [0.2169304578186563,0.00010421331162222711,0.29138974688932495], + [0.20769510081357445,8.027078574605583e-05,0.26773300332246835], + [0.1980295085953348,6.0308629411010716e-05,0.24391372010837697], + [0.1878672873255448,4.396499084062685e-05,0.2199463578396685], + [0.17712297710801905,3.087801825843755e-05,0.19584546700716696], + [0.16568337391590285,2.068585988797675e-05,0.1716256791663597], + [0.15339299776947418,1.302666395277839e-05,0.14730169805463766], + [0.14002800840280114,7.538578676376404e-06,0.12288829066471438], + [0.12524485821703013,3.859752282304735e-06,0.09840027827964305], + [0.10846522890932789,1.6283329940972756e-06,0.0738525274748737], + [0.08856148855400937,4.824690352880817e-07,0.04925994109281668], + [0.06262242910851484,6.030862941101021e-08,0.024637449195381883], + [0.0,0.0,0.0] ], + gray: [ + [0.0,0.0,0.0], + [0.00392156862745098,0.00392156862745098,0.00392156862745098], + [0.00784313725490196,0.00784313725490196,0.00784313725490196], + [0.011764705882352941,0.011764705882352941,0.011764705882352941], + [0.01568627450980392,0.01568627450980392,0.01568627450980392], + [0.0196078431372549,0.0196078431372549,0.0196078431372549], + [0.023529411764705882,0.023529411764705882,0.023529411764705882], + [0.027450980392156862,0.027450980392156862,0.027450980392156862], + [0.03137254901960784,0.03137254901960784,0.03137254901960784], + [0.03529411764705882,0.03529411764705882,0.03529411764705882], + [0.0392156862745098,0.0392156862745098,0.0392156862745098], + [0.043137254901960784,0.043137254901960784,0.043137254901960784], + [0.047058823529411764,0.047058823529411764,0.047058823529411764], + [0.050980392156862744,0.050980392156862744,0.050980392156862744], + [0.054901960784313725,0.054901960784313725,0.054901960784313725], + [0.058823529411764705,0.058823529411764705,0.058823529411764705], + [0.06274509803921569,0.06274509803921569,0.06274509803921569], + [0.06666666666666667,0.06666666666666667,0.06666666666666667], + [0.07058823529411765,0.07058823529411765,0.07058823529411765], + [0.07450980392156863,0.07450980392156863,0.07450980392156863], + [0.0784313725490196,0.0784313725490196,0.0784313725490196], + [0.08235294117647059,0.08235294117647059,0.08235294117647059], + [0.08627450980392157,0.08627450980392157,0.08627450980392157], + [0.09019607843137255,0.09019607843137255,0.09019607843137255], + [0.09411764705882353,0.09411764705882353,0.09411764705882353], + [0.09803921568627451,0.09803921568627451,0.09803921568627451], + [0.10196078431372549,0.10196078431372549,0.10196078431372549], + [0.10588235294117647,0.10588235294117647,0.10588235294117647], + [0.10980392156862745,0.10980392156862745,0.10980392156862745], + [0.11372549019607843,0.11372549019607843,0.11372549019607843], + [0.11764705882352941,0.11764705882352941,0.11764705882352941], + [0.12156862745098039,0.12156862745098039,0.12156862745098039], + [0.12549019607843137,0.12549019607843137,0.12549019607843137], + [0.12941176470588234,0.12941176470588234,0.12941176470588234], + [0.13333333333333333,0.13333333333333333,0.13333333333333333], + [0.13725490196078433,0.13725490196078433,0.13725490196078433], + [0.1411764705882353,0.1411764705882353,0.1411764705882353], + [0.14509803921568626,0.14509803921568626,0.14509803921568626], + [0.14901960784313725,0.14901960784313725,0.14901960784313725], + [0.15294117647058825,0.15294117647058825,0.15294117647058825], + [0.1568627450980392,0.1568627450980392,0.1568627450980392], + [0.16078431372549018,0.16078431372549018,0.16078431372549018], + [0.16470588235294117,0.16470588235294117,0.16470588235294117], + [0.16862745098039217,0.16862745098039217,0.16862745098039217], + [0.17254901960784313,0.17254901960784313,0.17254901960784313], + [0.1764705882352941,0.1764705882352941,0.1764705882352941], + [0.1803921568627451,0.1803921568627451,0.1803921568627451], + [0.1843137254901961,0.1843137254901961,0.1843137254901961], + [0.18823529411764706,0.18823529411764706,0.18823529411764706], + [0.19215686274509802,0.19215686274509802,0.19215686274509802], + [0.19607843137254902,0.19607843137254902,0.19607843137254902], + [0.2,0.2,0.2], + [0.20392156862745098,0.20392156862745098,0.20392156862745098], + [0.20784313725490194,0.20784313725490194,0.20784313725490194], + [0.21176470588235294,0.21176470588235294,0.21176470588235294], + [0.21568627450980393,0.21568627450980393,0.21568627450980393], + [0.2196078431372549,0.2196078431372549,0.2196078431372549], + [0.22352941176470587,0.22352941176470587,0.22352941176470587], + [0.22745098039215686,0.22745098039215686,0.22745098039215686], + [0.23137254901960785,0.23137254901960785,0.23137254901960785], + [0.23529411764705882,0.23529411764705882,0.23529411764705882], + [0.2392156862745098,0.2392156862745098,0.2392156862745098], + [0.24313725490196078,0.24313725490196078,0.24313725490196078], + [0.24705882352941178,0.24705882352941178,0.24705882352941178], + [0.25098039215686274,0.25098039215686274,0.25098039215686274], + [0.2549019607843137,0.2549019607843137,0.2549019607843137], + [0.2588235294117647,0.2588235294117647,0.2588235294117647], + [0.2627450980392157,0.2627450980392157,0.2627450980392157], + [0.26666666666666666,0.26666666666666666,0.26666666666666666], + [0.27058823529411763,0.27058823529411763,0.27058823529411763], + [0.27450980392156865,0.27450980392156865,0.27450980392156865], + [0.2784313725490196,0.2784313725490196,0.2784313725490196], + [0.2823529411764706,0.2823529411764706,0.2823529411764706], + [0.28627450980392155,0.28627450980392155,0.28627450980392155], + [0.2901960784313725,0.2901960784313725,0.2901960784313725], + [0.29411764705882354,0.29411764705882354,0.29411764705882354], + [0.2980392156862745,0.2980392156862745,0.2980392156862745], + [0.30196078431372547,0.30196078431372547,0.30196078431372547], + [0.3058823529411765,0.3058823529411765,0.3058823529411765], + [0.30980392156862746,0.30980392156862746,0.30980392156862746], + [0.3137254901960784,0.3137254901960784,0.3137254901960784], + [0.3176470588235294,0.3176470588235294,0.3176470588235294], + [0.32156862745098036,0.32156862745098036,0.32156862745098036], + [0.3254901960784314,0.3254901960784314,0.3254901960784314], + [0.32941176470588235,0.32941176470588235,0.32941176470588235], + [0.3333333333333333,0.3333333333333333,0.3333333333333333], + [0.33725490196078434,0.33725490196078434,0.33725490196078434], + [0.3411764705882353,0.3411764705882353,0.3411764705882353], + [0.34509803921568627,0.34509803921568627,0.34509803921568627], + [0.34901960784313724,0.34901960784313724,0.34901960784313724], + [0.3529411764705882,0.3529411764705882,0.3529411764705882], + [0.3568627450980392,0.3568627450980392,0.3568627450980392], + [0.3607843137254902,0.3607843137254902,0.3607843137254902], + [0.36470588235294116,0.36470588235294116,0.36470588235294116], + [0.3686274509803922,0.3686274509803922,0.3686274509803922], + [0.37254901960784315,0.37254901960784315,0.37254901960784315], + [0.3764705882352941,0.3764705882352941,0.3764705882352941], + [0.3803921568627451,0.3803921568627451,0.3803921568627451], + [0.38431372549019605,0.38431372549019605,0.38431372549019605], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.39215686274509803,0.39215686274509803,0.39215686274509803], + [0.396078431372549,0.396078431372549,0.396078431372549], + [0.4,0.4,0.4], + [0.403921568627451,0.403921568627451,0.403921568627451], + [0.40784313725490196,0.40784313725490196,0.40784313725490196], + [0.4117647058823529,0.4117647058823529,0.4117647058823529], + [0.4156862745098039,0.4156862745098039,0.4156862745098039], + [0.4196078431372549,0.4196078431372549,0.4196078431372549], + [0.4235294117647059,0.4235294117647059,0.4235294117647059], + [0.42745098039215684,0.42745098039215684,0.42745098039215684], + [0.43137254901960786,0.43137254901960786,0.43137254901960786], + [0.43529411764705883,0.43529411764705883,0.43529411764705883], + [0.4392156862745098,0.4392156862745098,0.4392156862745098], + [0.44313725490196076,0.44313725490196076,0.44313725490196076], + [0.44705882352941173,0.44705882352941173,0.44705882352941173], + [0.45098039215686275,0.45098039215686275,0.45098039215686275], + [0.4549019607843137,0.4549019607843137,0.4549019607843137], + [0.4588235294117647,0.4588235294117647,0.4588235294117647], + [0.4627450980392157,0.4627450980392157,0.4627450980392157], + [0.4666666666666667,0.4666666666666667,0.4666666666666667], + [0.47058823529411764,0.47058823529411764,0.47058823529411764], + [0.4745098039215686,0.4745098039215686,0.4745098039215686], + [0.4784313725490196,0.4784313725490196,0.4784313725490196], + [0.4823529411764706,0.4823529411764706,0.4823529411764706], + [0.48627450980392156,0.48627450980392156,0.48627450980392156], + [0.49019607843137253,0.49019607843137253,0.49019607843137253], + [0.49411764705882355,0.49411764705882355,0.49411764705882355], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.5019607843137255,0.5019607843137255,0.5019607843137255], + [0.5058823529411764,0.5058823529411764,0.5058823529411764], + [0.5098039215686274,0.5098039215686274,0.5098039215686274], + [0.5137254901960784,0.5137254901960784,0.5137254901960784], + [0.5176470588235293,0.5176470588235293,0.5176470588235293], + [0.5215686274509804,0.5215686274509804,0.5215686274509804], + [0.5254901960784314,0.5254901960784314,0.5254901960784314], + [0.5294117647058824,0.5294117647058824,0.5294117647058824], + [0.5333333333333333,0.5333333333333333,0.5333333333333333], + [0.5372549019607843,0.5372549019607843,0.5372549019607843], + [0.5411764705882353,0.5411764705882353,0.5411764705882353], + [0.5450980392156862,0.5450980392156862,0.5450980392156862], + [0.5490196078431373,0.5490196078431373,0.5490196078431373], + [0.5529411764705883,0.5529411764705883,0.5529411764705883], + [0.5568627450980392,0.5568627450980392,0.5568627450980392], + [0.5607843137254902,0.5607843137254902,0.5607843137254902], + [0.5647058823529412,0.5647058823529412,0.5647058823529412], + [0.5686274509803921,0.5686274509803921,0.5686274509803921], + [0.5725490196078431,0.5725490196078431,0.5725490196078431], + [0.5764705882352941,0.5764705882352941,0.5764705882352941], + [0.580392156862745,0.580392156862745,0.580392156862745], + [0.5843137254901961,0.5843137254901961,0.5843137254901961], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.592156862745098,0.592156862745098,0.592156862745098], + [0.596078431372549,0.596078431372549,0.596078431372549], + [0.6,0.6,0.6], + [0.6039215686274509,0.6039215686274509,0.6039215686274509], + [0.6078431372549019,0.6078431372549019,0.6078431372549019], + [0.611764705882353,0.611764705882353,0.611764705882353], + [0.615686274509804,0.615686274509804,0.615686274509804], + [0.6196078431372549,0.6196078431372549,0.6196078431372549], + [0.6235294117647059,0.6235294117647059,0.6235294117647059], + [0.6274509803921569,0.6274509803921569,0.6274509803921569], + [0.6313725490196078,0.6313725490196078,0.6313725490196078], + [0.6352941176470588,0.6352941176470588,0.6352941176470588], + [0.6392156862745098,0.6392156862745098,0.6392156862745098], + [0.6431372549019607,0.6431372549019607,0.6431372549019607], + [0.6470588235294118,0.6470588235294118,0.6470588235294118], + [0.6509803921568628,0.6509803921568628,0.6509803921568628], + [0.6549019607843137,0.6549019607843137,0.6549019607843137], + [0.6588235294117647,0.6588235294117647,0.6588235294117647], + [0.6627450980392157,0.6627450980392157,0.6627450980392157], + [0.6666666666666666,0.6666666666666666,0.6666666666666666], + [0.6705882352941176,0.6705882352941176,0.6705882352941176], + [0.6745098039215687,0.6745098039215687,0.6745098039215687], + [0.6784313725490196,0.6784313725490196,0.6784313725490196], + [0.6823529411764706,0.6823529411764706,0.6823529411764706], + [0.6862745098039216,0.6862745098039216,0.6862745098039216], + [0.6901960784313725,0.6901960784313725,0.6901960784313725], + [0.6941176470588235,0.6941176470588235,0.6941176470588235], + [0.6980392156862745,0.6980392156862745,0.6980392156862745], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.7058823529411764,0.7058823529411764,0.7058823529411764], + [0.7098039215686275,0.7098039215686275,0.7098039215686275], + [0.7137254901960784,0.7137254901960784,0.7137254901960784], + [0.7176470588235294,0.7176470588235294,0.7176470588235294], + [0.7215686274509804,0.7215686274509804,0.7215686274509804], + [0.7254901960784313,0.7254901960784313,0.7254901960784313], + [0.7294117647058823,0.7294117647058823,0.7294117647058823], + [0.7333333333333333,0.7333333333333333,0.7333333333333333], + [0.7372549019607844,0.7372549019607844,0.7372549019607844], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7450980392156863,0.7450980392156863,0.7450980392156863], + [0.7490196078431373,0.7490196078431373,0.7490196078431373], + [0.7529411764705882,0.7529411764705882,0.7529411764705882], + [0.7568627450980392,0.7568627450980392,0.7568627450980392], + [0.7607843137254902,0.7607843137254902,0.7607843137254902], + [0.7647058823529411,0.7647058823529411,0.7647058823529411], + [0.7686274509803921,0.7686274509803921,0.7686274509803921], + [0.7725490196078432,0.7725490196078432,0.7725490196078432], + [0.7764705882352941,0.7764705882352941,0.7764705882352941], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7843137254901961,0.7843137254901961,0.7843137254901961], + [0.788235294117647,0.788235294117647,0.788235294117647], + [0.792156862745098,0.792156862745098,0.792156862745098], + [0.796078431372549,0.796078431372549,0.796078431372549], + [0.8,0.8,0.8], + [0.803921568627451,0.803921568627451,0.803921568627451], + [0.807843137254902,0.807843137254902,0.807843137254902], + [0.8117647058823529,0.8117647058823529,0.8117647058823529], + [0.8156862745098039,0.8156862745098039,0.8156862745098039], + [0.8196078431372549,0.8196078431372549,0.8196078431372549], + [0.8235294117647058,0.8235294117647058,0.8235294117647058], + [0.8274509803921568,0.8274509803921568,0.8274509803921568], + [0.8313725490196078,0.8313725490196078,0.8313725490196078], + [0.8352941176470589,0.8352941176470589,0.8352941176470589], + [0.8392156862745098,0.8392156862745098,0.8392156862745098], + [0.8431372549019608,0.8431372549019608,0.8431372549019608], + [0.8470588235294118,0.8470588235294118,0.8470588235294118], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8549019607843137,0.8549019607843137,0.8549019607843137], + [0.8588235294117647,0.8588235294117647,0.8588235294117647], + [0.8627450980392157,0.8627450980392157,0.8627450980392157], + [0.8666666666666667,0.8666666666666667,0.8666666666666667], + [0.8705882352941177,0.8705882352941177,0.8705882352941177], + [0.8745098039215686,0.8745098039215686,0.8745098039215686], + [0.8784313725490196,0.8784313725490196,0.8784313725490196], + [0.8823529411764706,0.8823529411764706,0.8823529411764706], + [0.8862745098039215,0.8862745098039215,0.8862745098039215], + [0.8901960784313725,0.8901960784313725,0.8901960784313725], + [0.8941176470588235,0.8941176470588235,0.8941176470588235], + [0.8980392156862745,0.8980392156862745,0.8980392156862745], + [0.9019607843137255,0.9019607843137255,0.9019607843137255], + [0.9058823529411765,0.9058823529411765,0.9058823529411765], + [0.9098039215686274,0.9098039215686274,0.9098039215686274], + [0.9137254901960784,0.9137254901960784,0.9137254901960784], + [0.9176470588235294,0.9176470588235294,0.9176470588235294], + [0.9215686274509803,0.9215686274509803,0.9215686274509803], + [0.9254901960784314,0.9254901960784314,0.9254901960784314], + [0.9294117647058824,0.9294117647058824,0.9294117647058824], + [0.9333333333333333,0.9333333333333333,0.9333333333333333], + [0.9372549019607843,0.9372549019607843,0.9372549019607843], + [0.9411764705882353,0.9411764705882353,0.9411764705882353], + [0.9450980392156862,0.9450980392156862,0.9450980392156862], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9529411764705882,0.9529411764705882,0.9529411764705882], + [0.9568627450980391,0.9568627450980391,0.9568627450980391], + [0.9607843137254902,0.9607843137254902,0.9607843137254902], + [0.9647058823529412,0.9647058823529412,0.9647058823529412], + [0.9686274509803922,0.9686274509803922,0.9686274509803922], + [0.9725490196078431,0.9725490196078431,0.9725490196078431], + [0.9764705882352941,0.9764705882352941,0.9764705882352941], + [0.9803921568627451,0.9803921568627451,0.9803921568627451], + [0.984313725490196,0.984313725490196,0.984313725490196], + [0.9882352941176471,0.9882352941176471,0.9882352941176471], + [0.9921568627450981,0.9921568627450981,0.9921568627450981], + [0.996078431372549,0.996078431372549,0.996078431372549], + [1.0,1.0,1.0] ], + gray_r: [ + [1.0,1.0,1.0], + [0.996078431372549,0.996078431372549,0.996078431372549], + [0.9921568627450981,0.9921568627450981,0.9921568627450981], + [0.9882352941176471,0.9882352941176471,0.9882352941176471], + [0.9843137254901961,0.9843137254901961,0.9843137254901961], + [0.9803921568627451,0.9803921568627451,0.9803921568627451], + [0.9764705882352941,0.9764705882352941,0.9764705882352941], + [0.9725490196078431,0.9725490196078431,0.9725490196078431], + [0.9686274509803922,0.9686274509803922,0.9686274509803922], + [0.9647058823529412,0.9647058823529412,0.9647058823529412], + [0.9607843137254902,0.9607843137254902,0.9607843137254902], + [0.9568627450980393,0.9568627450980393,0.9568627450980393], + [0.9529411764705882,0.9529411764705882,0.9529411764705882], + [0.9490196078431372,0.9490196078431372,0.9490196078431372], + [0.9450980392156862,0.9450980392156862,0.9450980392156862], + [0.9411764705882353,0.9411764705882353,0.9411764705882353], + [0.9372549019607843,0.9372549019607843,0.9372549019607843], + [0.9333333333333333,0.9333333333333333,0.9333333333333333], + [0.9294117647058824,0.9294117647058824,0.9294117647058824], + [0.9254901960784314,0.9254901960784314,0.9254901960784314], + [0.9215686274509804,0.9215686274509804,0.9215686274509804], + [0.9176470588235294,0.9176470588235294,0.9176470588235294], + [0.9137254901960784,0.9137254901960784,0.9137254901960784], + [0.9098039215686274,0.9098039215686274,0.9098039215686274], + [0.9058823529411765,0.9058823529411765,0.9058823529411765], + [0.9019607843137255,0.9019607843137255,0.9019607843137255], + [0.8980392156862745,0.8980392156862745,0.8980392156862745], + [0.8941176470588236,0.8941176470588236,0.8941176470588236], + [0.8901960784313725,0.8901960784313725,0.8901960784313725], + [0.8862745098039215,0.8862745098039215,0.8862745098039215], + [0.8823529411764706,0.8823529411764706,0.8823529411764706], + [0.8784313725490196,0.8784313725490196,0.8784313725490196], + [0.8745098039215686,0.8745098039215686,0.8745098039215686], + [0.8705882352941177,0.8705882352941177,0.8705882352941177], + [0.8666666666666667,0.8666666666666667,0.8666666666666667], + [0.8627450980392157,0.8627450980392157,0.8627450980392157], + [0.8588235294117648,0.8588235294117648,0.8588235294117648], + [0.8549019607843138,0.8549019607843138,0.8549019607843138], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8470588235294118,0.8470588235294118,0.8470588235294118], + [0.8431372549019608,0.8431372549019608,0.8431372549019608], + [0.8392156862745098,0.8392156862745098,0.8392156862745098], + [0.8352941176470589,0.8352941176470589,0.8352941176470589], + [0.8313725490196078,0.8313725490196078,0.8313725490196078], + [0.8274509803921568,0.8274509803921568,0.8274509803921568], + [0.8235294117647058,0.8235294117647058,0.8235294117647058], + [0.8196078431372549,0.8196078431372549,0.8196078431372549], + [0.8156862745098039,0.8156862745098039,0.8156862745098039], + [0.8117647058823529,0.8117647058823529,0.8117647058823529], + [0.807843137254902,0.807843137254902,0.807843137254902], + [0.803921568627451,0.803921568627451,0.803921568627451], + [0.8,0.8,0.8], + [0.7960784313725491,0.7960784313725491,0.7960784313725491], + [0.7921568627450981,0.7921568627450981,0.7921568627450981], + [0.788235294117647,0.788235294117647,0.788235294117647], + [0.7843137254901961,0.7843137254901961,0.7843137254901961], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7764705882352941,0.7764705882352941,0.7764705882352941], + [0.7725490196078432,0.7725490196078432,0.7725490196078432], + [0.7686274509803921,0.7686274509803921,0.7686274509803921], + [0.7647058823529411,0.7647058823529411,0.7647058823529411], + [0.7607843137254902,0.7607843137254902,0.7607843137254902], + [0.7568627450980392,0.7568627450980392,0.7568627450980392], + [0.7529411764705882,0.7529411764705882,0.7529411764705882], + [0.7490196078431373,0.7490196078431373,0.7490196078431373], + [0.7450980392156863,0.7450980392156863,0.7450980392156863], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7372549019607844,0.7372549019607844,0.7372549019607844], + [0.7333333333333334,0.7333333333333334,0.7333333333333334], + [0.7294117647058824,0.7294117647058824,0.7294117647058824], + [0.7254901960784313,0.7254901960784313,0.7254901960784313], + [0.7215686274509804,0.7215686274509804,0.7215686274509804], + [0.7176470588235294,0.7176470588235294,0.7176470588235294], + [0.7137254901960784,0.7137254901960784,0.7137254901960784], + [0.7098039215686275,0.7098039215686275,0.7098039215686275], + [0.7058823529411764,0.7058823529411764,0.7058823529411764], + [0.7019607843137254,0.7019607843137254,0.7019607843137254], + [0.6980392156862745,0.6980392156862745,0.6980392156862745], + [0.6941176470588235,0.6941176470588235,0.6941176470588235], + [0.6901960784313725,0.6901960784313725,0.6901960784313725], + [0.6862745098039216,0.6862745098039216,0.6862745098039216], + [0.6823529411764706,0.6823529411764706,0.6823529411764706], + [0.6784313725490196,0.6784313725490196,0.6784313725490196], + [0.6745098039215687,0.6745098039215687,0.6745098039215687], + [0.6705882352941177,0.6705882352941177,0.6705882352941177], + [0.6666666666666667,0.6666666666666667,0.6666666666666667], + [0.6627450980392157,0.6627450980392157,0.6627450980392157], + [0.6588235294117647,0.6588235294117647,0.6588235294117647], + [0.6549019607843137,0.6549019607843137,0.6549019607843137], + [0.6509803921568628,0.6509803921568628,0.6509803921568628], + [0.6470588235294118,0.6470588235294118,0.6470588235294118], + [0.6431372549019607,0.6431372549019607,0.6431372549019607], + [0.6392156862745098,0.6392156862745098,0.6392156862745098], + [0.6352941176470588,0.6352941176470588,0.6352941176470588], + [0.6313725490196078,0.6313725490196078,0.6313725490196078], + [0.6274509803921569,0.6274509803921569,0.6274509803921569], + [0.6235294117647059,0.6235294117647059,0.6235294117647059], + [0.6196078431372549,0.6196078431372549,0.6196078431372549], + [0.615686274509804,0.615686274509804,0.615686274509804], + [0.611764705882353,0.611764705882353,0.611764705882353], + [0.607843137254902,0.607843137254902,0.607843137254902], + [0.603921568627451,0.603921568627451,0.603921568627451], + [0.6,0.6,0.6], + [0.596078431372549,0.596078431372549,0.596078431372549], + [0.592156862745098,0.592156862745098,0.592156862745098], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5843137254901961,0.5843137254901961,0.5843137254901961], + [0.580392156862745,0.580392156862745,0.580392156862745], + [0.5764705882352941,0.5764705882352941,0.5764705882352941], + [0.5725490196078431,0.5725490196078431,0.5725490196078431], + [0.5686274509803921,0.5686274509803921,0.5686274509803921], + [0.5647058823529412,0.5647058823529412,0.5647058823529412], + [0.5607843137254902,0.5607843137254902,0.5607843137254902], + [0.5568627450980392,0.5568627450980392,0.5568627450980392], + [0.5529411764705883,0.5529411764705883,0.5529411764705883], + [0.5490196078431373,0.5490196078431373,0.5490196078431373], + [0.5450980392156863,0.5450980392156863,0.5450980392156863], + [0.5411764705882354,0.5411764705882354,0.5411764705882354], + [0.5372549019607843,0.5372549019607843,0.5372549019607843], + [0.5333333333333333,0.5333333333333333,0.5333333333333333], + [0.5294117647058824,0.5294117647058824,0.5294117647058824], + [0.5254901960784314,0.5254901960784314,0.5254901960784314], + [0.5215686274509804,0.5215686274509804,0.5215686274509804], + [0.5176470588235293,0.5176470588235293,0.5176470588235293], + [0.5137254901960784,0.5137254901960784,0.5137254901960784], + [0.5098039215686274,0.5098039215686274,0.5098039215686274], + [0.5058823529411764,0.5058823529411764,0.5058823529411764], + [0.5019607843137255,0.5019607843137255,0.5019607843137255], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.49411764705882355,0.49411764705882355,0.49411764705882355], + [0.4901960784313726,0.4901960784313726,0.4901960784313726], + [0.4862745098039216,0.4862745098039216,0.4862745098039216], + [0.48235294117647065,0.48235294117647065,0.48235294117647065], + [0.4784313725490196,0.4784313725490196,0.4784313725490196], + [0.4745098039215686,0.4745098039215686,0.4745098039215686], + [0.47058823529411764,0.47058823529411764,0.47058823529411764], + [0.4666666666666667,0.4666666666666667,0.4666666666666667], + [0.4627450980392157,0.4627450980392157,0.4627450980392157], + [0.45882352941176474,0.45882352941176474,0.45882352941176474], + [0.4549019607843138,0.4549019607843138,0.4549019607843138], + [0.4509803921568627,0.4509803921568627,0.4509803921568627], + [0.44705882352941173,0.44705882352941173,0.44705882352941173], + [0.44313725490196076,0.44313725490196076,0.44313725490196076], + [0.4392156862745098,0.4392156862745098,0.4392156862745098], + [0.43529411764705883,0.43529411764705883,0.43529411764705883], + [0.43137254901960786,0.43137254901960786,0.43137254901960786], + [0.4274509803921569,0.4274509803921569,0.4274509803921569], + [0.42352941176470593,0.42352941176470593,0.42352941176470593], + [0.41960784313725497,0.41960784313725497,0.41960784313725497], + [0.4156862745098039,0.4156862745098039,0.4156862745098039], + [0.4117647058823529,0.4117647058823529,0.4117647058823529], + [0.40784313725490196,0.40784313725490196,0.40784313725490196], + [0.403921568627451,0.403921568627451,0.403921568627451], + [0.4,0.4,0.4], + [0.39607843137254906,0.39607843137254906,0.39607843137254906], + [0.3921568627450981,0.3921568627450981,0.3921568627450981], + [0.388235294117647,0.388235294117647,0.388235294117647], + [0.38431372549019605,0.38431372549019605,0.38431372549019605], + [0.3803921568627451,0.3803921568627451,0.3803921568627451], + [0.3764705882352941,0.3764705882352941,0.3764705882352941], + [0.37254901960784315,0.37254901960784315,0.37254901960784315], + [0.3686274509803922,0.3686274509803922,0.3686274509803922], + [0.3647058823529412,0.3647058823529412,0.3647058823529412], + [0.36078431372549025,0.36078431372549025,0.36078431372549025], + [0.3568627450980393,0.3568627450980393,0.3568627450980393], + [0.3529411764705882,0.3529411764705882,0.3529411764705882], + [0.34901960784313724,0.34901960784313724,0.34901960784313724], + [0.34509803921568627,0.34509803921568627,0.34509803921568627], + [0.3411764705882353,0.3411764705882353,0.3411764705882353], + [0.33725490196078434,0.33725490196078434,0.33725490196078434], + [0.33333333333333337,0.33333333333333337,0.33333333333333337], + [0.3294117647058824,0.3294117647058824,0.3294117647058824], + [0.3254901960784313,0.3254901960784313,0.3254901960784313], + [0.32156862745098036,0.32156862745098036,0.32156862745098036], + [0.3176470588235294,0.3176470588235294,0.3176470588235294], + [0.3137254901960784,0.3137254901960784,0.3137254901960784], + [0.30980392156862746,0.30980392156862746,0.30980392156862746], + [0.3058823529411765,0.3058823529411765,0.3058823529411765], + [0.3019607843137255,0.3019607843137255,0.3019607843137255], + [0.29803921568627456,0.29803921568627456,0.29803921568627456], + [0.2941176470588236,0.2941176470588236,0.2941176470588236], + [0.2901960784313725,0.2901960784313725,0.2901960784313725], + [0.28627450980392155,0.28627450980392155,0.28627450980392155], + [0.2823529411764706,0.2823529411764706,0.2823529411764706], + [0.2784313725490196,0.2784313725490196,0.2784313725490196], + [0.27450980392156865,0.27450980392156865,0.27450980392156865], + [0.2705882352941177,0.2705882352941177,0.2705882352941177], + [0.2666666666666667,0.2666666666666667,0.2666666666666667], + [0.26274509803921564,0.26274509803921564,0.26274509803921564], + [0.2588235294117647,0.2588235294117647,0.2588235294117647], + [0.2549019607843137,0.2549019607843137,0.2549019607843137], + [0.25098039215686274,0.25098039215686274,0.25098039215686274], + [0.24705882352941178,0.24705882352941178,0.24705882352941178], + [0.2431372549019608,0.2431372549019608,0.2431372549019608], + [0.23921568627450984,0.23921568627450984,0.23921568627450984], + [0.23529411764705888,0.23529411764705888,0.23529411764705888], + [0.2313725490196079,0.2313725490196079,0.2313725490196079], + [0.22745098039215683,0.22745098039215683,0.22745098039215683], + [0.22352941176470587,0.22352941176470587,0.22352941176470587], + [0.2196078431372549,0.2196078431372549,0.2196078431372549], + [0.21568627450980393,0.21568627450980393,0.21568627450980393], + [0.21176470588235297,0.21176470588235297,0.21176470588235297], + [0.207843137254902,0.207843137254902,0.207843137254902], + [0.20392156862745103,0.20392156862745103,0.20392156862745103], + [0.19999999999999996,0.19999999999999996,0.19999999999999996], + [0.196078431372549,0.196078431372549,0.196078431372549], + [0.19215686274509802,0.19215686274509802,0.19215686274509802], + [0.18823529411764706,0.18823529411764706,0.18823529411764706], + [0.1843137254901961,0.1843137254901961,0.1843137254901961], + [0.18039215686274512,0.18039215686274512,0.18039215686274512], + [0.17647058823529416,0.17647058823529416,0.17647058823529416], + [0.1725490196078432,0.1725490196078432,0.1725490196078432], + [0.16862745098039222,0.16862745098039222,0.16862745098039222], + [0.16470588235294115,0.16470588235294115,0.16470588235294115], + [0.16078431372549018,0.16078431372549018,0.16078431372549018], + [0.1568627450980392,0.1568627450980392,0.1568627450980392], + [0.15294117647058825,0.15294117647058825,0.15294117647058825], + [0.14901960784313728,0.14901960784313728,0.14901960784313728], + [0.14509803921568631,0.14509803921568631,0.14509803921568631], + [0.14117647058823535,0.14117647058823535,0.14117647058823535], + [0.13725490196078427,0.13725490196078427,0.13725490196078427], + [0.1333333333333333,0.1333333333333333,0.1333333333333333], + [0.12941176470588234,0.12941176470588234,0.12941176470588234], + [0.12549019607843137,0.12549019607843137,0.12549019607843137], + [0.1215686274509804,0.1215686274509804,0.1215686274509804], + [0.11764705882352944,0.11764705882352944,0.11764705882352944], + [0.11372549019607847,0.11372549019607847,0.11372549019607847], + [0.1098039215686275,0.1098039215686275,0.1098039215686275], + [0.10588235294117654,0.10588235294117654,0.10588235294117654], + [0.10196078431372546,0.10196078431372546,0.10196078431372546], + [0.0980392156862745,0.0980392156862745,0.0980392156862745], + [0.09411764705882353,0.09411764705882353,0.09411764705882353], + [0.09019607843137256,0.09019607843137256,0.09019607843137256], + [0.0862745098039216,0.0862745098039216,0.0862745098039216], + [0.08235294117647063,0.08235294117647063,0.08235294117647063], + [0.07843137254901966,0.07843137254901966,0.07843137254901966], + [0.07450980392156858,0.07450980392156858,0.07450980392156858], + [0.07058823529411762,0.07058823529411762,0.07058823529411762], + [0.06666666666666665,0.06666666666666665,0.06666666666666665], + [0.06274509803921569,0.06274509803921569,0.06274509803921569], + [0.05882352941176472,0.05882352941176472,0.05882352941176472], + [0.05490196078431375,0.05490196078431375,0.05490196078431375], + [0.050980392156862786,0.050980392156862786,0.050980392156862786], + [0.04705882352941182,0.04705882352941182,0.04705882352941182], + [0.04313725490196085,0.04313725490196085,0.04313725490196085], + [0.039215686274509776,0.039215686274509776,0.039215686274509776], + [0.03529411764705881,0.03529411764705881,0.03529411764705881], + [0.03137254901960784,0.03137254901960784,0.03137254901960784], + [0.027450980392156876,0.027450980392156876,0.027450980392156876], + [0.02352941176470591,0.02352941176470591,0.02352941176470591], + [0.019607843137254943,0.019607843137254943,0.019607843137254943], + [0.015686274509803977,0.015686274509803977,0.015686274509803977], + [0.0117647058823529,0.0117647058823529,0.0117647058823529], + [0.007843137254901933,0.007843137254901933,0.007843137254901933], + [0.0039215686274509665,0.0039215686274509665,0.0039215686274509665], + [0.0,0.0,0.0] ], + hot: [ + [0.0416,0.0,0.0], + [0.05189484405443485,0.0,0.0], + [0.0621896881088697,0.0,0.0], + [0.07248453216330454,0.0,0.0], + [0.0827793762177394,0.0,0.0], + [0.09307422027217424,0.0,0.0], + [0.10336906432660908,0.0,0.0], + [0.11366390838104393,0.0,0.0], + [0.12395875243547878,0.0,0.0], + [0.13425359648991364,0.0,0.0], + [0.14454844054434846,0.0,0.0], + [0.15484328459878333,0.0,0.0], + [0.1651381286532182,0.0,0.0], + [0.175432972707653,0.0,0.0], + [0.18572781676208786,0.0,0.0], + [0.1960226608165227,0.0,0.0], + [0.20631750487095757,0.0,0.0], + [0.2166123489253924,0.0,0.0], + [0.22690719297982725,0.0,0.0], + [0.2372020370342621,0.0,0.0], + [0.24749688108869694,0.0,0.0], + [0.2577917251431318,0.0,0.0], + [0.2680865691975667,0.0,0.0], + [0.2783814132520015,0.0,0.0], + [0.28867625730643637,0.0,0.0], + [0.2989711013608711,0.0,0.0], + [0.30926594541530605,0.0,0.0], + [0.31956078946974087,0.0,0.0], + [0.3298556335241757,0.0,0.0], + [0.3401504775786106,0.0,0.0], + [0.3504453216330454,0.0,0.0], + [0.36074016568748024,0.0,0.0], + [0.37103500974191517,0.0,0.0], + [0.38132985379634987,0.0,0.0], + [0.3916246978507848,0.0,0.0], + [0.4019195419052196,0.0,0.0], + [0.41221438595965454,0.0,0.0], + [0.42250923001408924,0.0,0.0], + [0.43280407406852417,0.0,0.0], + [0.4430989181229591,0.0,0.0], + [0.4533937621773939,0.0,0.0], + [0.4636886062318286,0.0,0.0], + [0.47398345028626365,0.0,0.0], + [0.48427829434069847,0.0,0.0], + [0.4945731383951333,0.0,0.0], + [0.5048679824495681,0.0,0.0], + [0.5151628265040029,0.0,0.0], + [0.5254576705584378,0.0,0.0], + [0.5357525146128728,0.0,0.0], + [0.5460473586673074,0.0,0.0], + [0.5563422027217423,0.0,0.0], + [0.5666370467761772,0.0,0.0], + [0.576931890830612,0.0,0.0], + [0.5872267348850468,0.0,0.0], + [0.5975215789394817,0.0,0.0], + [0.6078164229939166,0.0,0.0], + [0.6181112670483514,0.0,0.0], + [0.6284061111027862,0.0,0.0], + [0.6387009551572211,0.0,0.0], + [0.6489957992116561,0.0,0.0], + [0.6592906432660908,0.0,0.0], + [0.6695854873205256,0.0,0.0], + [0.6798803313749605,0.0,0.0], + [0.6901751754293953,0.0,0.0], + [0.7004700194838303,0.0,0.0], + [0.7107648635382651,0.0,0.0], + [0.7210597075926998,0.0,0.0], + [0.7313545516471347,0.0,0.0], + [0.7416493957015696,0.0,0.0], + [0.7519442397560044,0.0,0.0], + [0.7622390838104393,0.0,0.0], + [0.7725339278648742,0.0,0.0], + [0.782828771919309,0.0,0.0], + [0.7931236159737438,0.0,0.0], + [0.8034184600281785,0.0,0.0], + [0.8137133040826136,0.0,0.0], + [0.8240081481370484,0.0,0.0], + [0.8343029921914833,0.0,0.0], + [0.8445978362459181,0.0,0.0], + [0.8548926803003528,0.0,0.0], + [0.8651875243547877,0.0,0.0], + [0.8754823684092226,0.0,0.0], + [0.8857772124636573,0.0,0.0], + [0.8960720565180923,0.0,0.0], + [0.9063669005725272,0.0,0.0], + [0.9166617446269619,0.0,0.0], + [0.9269565886813969,0.0,0.0], + [0.9372514327358317,0.0,0.0], + [0.9475462767902666,0.0,0.0], + [0.9578411208447014,0.0,0.0], + [0.9681359648991361,0.0,0.0], + [0.978430808953571,0.0,0.0], + [0.9887256530080059,0.0,0.0], + [0.9990204970624408,0.0,0.0], + [1.0,0.009314668687192773,0.0], + [1.0,0.019608769606337603,0.0], + [1.0,0.029902870525482433,0.0], + [1.0,0.040196971444627264,0.0], + [1.0,0.05049107236377195,0.0], + [1.0,0.060785173282916924,0.0], + [1.0,0.07107927420206175,0.0], + [1.0,0.08137337512120658,0.0], + [1.0,0.09166747604035141,0.0], + [1.0,0.10196157695949624,0.0], + [1.0,0.11225567787864107,0.0], + [1.0,0.12254977879778592,0.0], + [1.0,0.1328438797169306,0.0], + [1.0,0.14313798063607558,0.0], + [1.0,0.1534320815552204,0.0], + [1.0,0.16372618247436524,0.0], + [1.0,0.17402028339351006,0.0], + [1.0,0.1843143843126549,0.0], + [1.0,0.19460848523179972,0.0], + [1.0,0.20490258615094456,0.0], + [1.0,0.21519668707008924,0.0], + [1.0,0.22549078798923422,0.0], + [1.0,0.23578488890837906,0.0], + [1.0,0.24607898982752388,0.0], + [1.0,0.2563730907466687,0.0], + [1.0,0.26666719166581354,0.0], + [1.0,0.2769612925849584,0.0], + [1.0,0.28725539350410323,0.0], + [1.0,0.2975494944232479,0.0], + [1.0,0.30784359534239286,0.0], + [1.0,0.3181376962615377,0.0], + [1.0,0.32843179718068255,0.0], + [1.0,0.33872589809982734,0.0], + [1.0,0.3490199990189722,0.0], + [1.0,0.359314099938117,0.0], + [1.0,0.36960820085726187,0.0], + [1.0,0.37990230177640666,0.0], + [1.0,0.3901964026955515,0.0], + [1.0,0.40049050361469607,0.0], + [1.0,0.4107846045338412,0.0], + [1.0,0.421078705452986,0.0], + [1.0,0.4313728063721308,0.0], + [1.0,0.44166690729127567,0.0], + [1.0,0.4519610082104205,0.0], + [1.0,0.46225510912956536,0.0], + [1.0,0.47254921004871014,0.0], + [1.0,0.482843310967855,0.0], + [1.0,0.49313741188699983,0.0], + [1.0,0.5034315128061446,0.0], + [1.0,0.5137256137252895,0.0], + [1.0,0.5240197146444343,0.0], + [1.0,0.5343138155635792,0.0], + [1.0,0.544607916482724,0.0], + [1.0,0.5549020174018688,0.0], + [1.0,0.5651961183210134,0.0], + [1.0,0.5754902192401584,0.0], + [1.0,0.5857843201593033,0.0], + [1.0,0.5960784210784481,0.0], + [1.0,0.606372521997593,0.0], + [1.0,0.6166666229167378,0.0], + [1.0,0.6269607238358826,0.0], + [1.0,0.6372548247550275,0.0], + [1.0,0.6475489256741723,0.0], + [1.0,0.6578430265933172,0.0], + [1.0,0.6681371275124619,0.0], + [1.0,0.6784312284316067,0.0], + [1.0,0.6887253293507516,0.0], + [1.0,0.6990194302698964,0.0], + [1.0,0.7093135311890413,0.0], + [1.0,0.7196076321081861,0.0], + [1.0,0.7299017330273306,0.0], + [1.0,0.7401958339464758,0.0], + [1.0,0.7504899348656205,0.0], + [1.0,0.7607840357847654,0.0], + [1.0,0.7710781367039102,0.0], + [1.0,0.7813722376230551,0.0], + [1.0,0.7916663385421999,0.0], + [1.0,0.8019604394613448,0.0], + [1.0,0.8122545403804896,0.0], + [1.0,0.8225486412996345,0.0], + [1.0,0.8328427422187792,0.0], + [1.0,0.843136843137924,0.0], + [1.0,0.8534309440570689,0.0], + [1.0,0.8637250449762137,0.0], + [1.0,0.8740191458953586,0.0], + [1.0,0.8843132468145034,0.0], + [1.0,0.8946073477336479,0.0], + [1.0,0.9049014486527931,0.0], + [1.0,0.9151955495719379,0.0], + [1.0,0.9254896504910827,0.0], + [1.0,0.9357837514102275,0.0], + [1.0,0.9460778523293724,0.0], + [1.0,0.9563719532485172,0.0], + [1.0,0.966666054167662,0.0], + [1.0,0.9769601550868069,0.0], + [1.0,0.9872542560059517,0.0], + [1.0,0.9975483569250966,0.0], + [1.0,1.0,0.011763717646070686], + [1.0,1.0,0.02720490955785083], + [1.0,1.0,0.04264610146963098], + [1.0,1.0,0.05808729338141112], + [1.0,1.0,0.07352848529319127], + [1.0,1.0,0.08896967720497098], + [1.0,1.0,0.10441086911675156], + [1.0,1.0,0.1198520610285317], + [1.0,1.0,0.13529325294031186], + [1.0,1.0,0.150734444852092], + [1.0,1.0,0.16617563676387215], + [1.0,1.0,0.1816168286756523], + [1.0,1.0,0.19705802058743244], + [1.0,1.0,0.21249921249921258], + [1.0,1.0,0.22794040441099273], + [1.0,1.0,0.24338159632277287], + [1.0,1.0,0.258822788234553], + [1.0,1.0,0.2742639801463332], + [1.0,1.0,0.2897051720581133], + [1.0,1.0,0.3051463639698935], + [1.0,1.0,0.3205875558816736], + [1.0,1.0,0.3360287477934533], + [1.0,1.0,0.3514699397052339], + [1.0,1.0,0.36691113161701405], + [1.0,1.0,0.38235232352879417], + [1.0,1.0,0.39779351544057434], + [1.0,1.0,0.41323470735235446], + [1.0,1.0,0.42867589926413463], + [1.0,1.0,0.44411709117591475], + [1.0,1.0,0.4595582830876949], + [1.0,1.0,0.47499947499947504], + [1.0,1.0,0.4904406669112552], + [1.0,1.0,0.5058818588230354], + [1.0,1.0,0.5213230507348154], + [1.0,1.0,0.5367642426465956], + [1.0,1.0,0.5522054345583758], + [1.0,1.0,0.567646626470156], + [1.0,1.0,0.5830878183819357], + [1.0,1.0,0.5985290102937162], + [1.0,1.0,0.6139702022054964], + [1.0,1.0,0.6294113941172765], + [1.0,1.0,0.6448525860290567], + [1.0,1.0,0.6602937779408368], + [1.0,1.0,0.6757349698526169], + [1.0,1.0,0.6911761617643971], + [1.0,1.0,0.7066173536761773], + [1.0,1.0,0.7220585455879573], + [1.0,1.0,0.7374997374997375], + [1.0,1.0,0.7529409294115177], + [1.0,1.0,0.7683821213232979], + [1.0,1.0,0.7838233132350779], + [1.0,1.0,0.7992645051468581], + [1.0,1.0,0.8147056970586383], + [1.0,1.0,0.830146888970418], + [1.0,1.0,0.8455880808821985], + [1.0,1.0,0.8610292727939787], + [1.0,1.0,0.8764704647057588], + [1.0,1.0,0.891911656617539], + [1.0,1.0,0.9073528485293191], + [1.0,1.0,0.9227940404410993], + [1.0,1.0,0.9382352323528794], + [1.0,1.0,0.9536764242646596], + [1.0,1.0,0.9691176161764397], + [1.0,1.0,0.9845588080882198], + [1.0,1.0,1.0] ], + hot_r: [ + [1.0,1.0,1.0], + [1.0,1.0,0.9845588080882198], + [1.0,1.0,0.9691176161764397], + [1.0,1.0,0.9536764242646596], + [1.0,1.0,0.9382352323528794], + [1.0,1.0,0.9227940404410993], + [1.0,1.0,0.9073528485293191], + [1.0,1.0,0.8919116566175389], + [1.0,1.0,0.8764704647057588], + [1.0,1.0,0.8610292727939787], + [1.0,1.0,0.8455880808821985], + [1.0,1.0,0.8301468889704183], + [1.0,1.0,0.8147056970586382], + [1.0,1.0,0.7992645051468581], + [1.0,1.0,0.7838233132350779], + [1.0,1.0,0.7683821213232978], + [1.0,1.0,0.7529409294115176], + [1.0,1.0,0.7374997374997374], + [1.0,1.0,0.7220585455879573], + [1.0,1.0,0.7066173536761772], + [1.0,1.0,0.691176161764397], + [1.0,1.0,0.6757349698526169], + [1.0,1.0,0.6602937779408367], + [1.0,1.0,0.6448525860290566], + [1.0,1.0,0.6294113941172764], + [1.0,1.0,0.6139702022054963], + [1.0,1.0,0.5985290102937162], + [1.0,1.0,0.5830878183819359], + [1.0,1.0,0.5676466264701558], + [1.0,1.0,0.5522054345583757], + [1.0,1.0,0.5367642426465955], + [1.0,1.0,0.5213230507348154], + [1.0,1.0,0.5058818588230352], + [1.0,1.0,0.4904406669112552], + [1.0,1.0,0.4749994749994749], + [1.0,1.0,0.45955828308769475], + [1.0,1.0,0.4441170911759147], + [1.0,1.0,0.42867589926413463], + [1.0,1.0,0.41323470735235435], + [1.0,1.0,0.3977935154405742], + [1.0,1.0,0.382352323528794], + [1.0,1.0,0.36691113161701405], + [1.0,1.0,0.35146993970523377], + [1.0,1.0,0.3360287477934536], + [1.0,1.0,0.3205875558816734], + [1.0,1.0,0.30514636396989336], + [1.0,1.0,0.2897051720581132], + [1.0,1.0,0.274263980146333], + [1.0,1.0,0.25882278823455285], + [1.0,1.0,0.2433815963227728], + [1.0,1.0,0.2279404044109925], + [1.0,1.0,0.21249921249921244], + [1.0,1.0,0.19705802058743227], + [1.0,1.0,0.1816168286756522], + [1.0,1.0,0.16617563676387193], + [1.0,1.0,0.15073444485209186], + [1.0,1.0,0.1352932529403117], + [1.0,1.0,0.11985206102853163], + [1.0,1.0,0.10441086911675135], + [1.0,1.0,0.08896967720497118], + [1.0,1.0,0.07352848529319111], + [1.0,1.0,0.058087293381411054], + [1.0,1.0,0.04264610146963077], + [1.0,1.0,0.0272049095578506], + [1.0,1.0,0.011763717646070426], + [1.0,0.9975483569250964,0.0], + [1.0,0.9872542560059517,0.0], + [1.0,0.9769601550868068,0.0], + [1.0,0.9666660541676619,0.0], + [1.0,0.9563719532485171,0.0], + [1.0,0.9460778523293722,0.0], + [1.0,0.9357837514102274,0.0], + [1.0,0.9254896504910826,0.0], + [1.0,0.9151955495719377,0.0], + [1.0,0.9049014486527931,0.0], + [1.0,0.8946073477336481,0.0], + [1.0,0.8843132468145033,0.0], + [1.0,0.8740191458953585,0.0], + [1.0,0.8637250449762136,0.0], + [1.0,0.8534309440570689,0.0], + [1.0,0.843136843137924,0.0], + [1.0,0.8328427422187792,0.0], + [1.0,0.8225486412996345,0.0], + [1.0,0.8122545403804895,0.0], + [1.0,0.8019604394613447,0.0], + [1.0,0.7916663385421998,0.0], + [1.0,0.7813722376230551,0.0], + [1.0,0.7710781367039102,0.0], + [1.0,0.7607840357847654,0.0], + [1.0,0.7504899348656205,0.0], + [1.0,0.7401958339464758,0.0], + [1.0,0.729901733027331,0.0], + [1.0,0.7196076321081861,0.0], + [1.0,0.7093135311890413,0.0], + [1.0,0.6990194302698964,0.0], + [1.0,0.6887253293507516,0.0], + [1.0,0.6784312284316067,0.0], + [1.0,0.6681371275124619,0.0], + [1.0,0.6578430265933173,0.0], + [1.0,0.6475489256741722,0.0], + [1.0,0.6372548247550275,0.0], + [1.0,0.6269607238358826,0.0], + [1.0,0.6166666229167378,0.0], + [1.0,0.6063725219975931,0.0], + [1.0,0.5960784210784482,0.0], + [1.0,0.5857843201593034,0.0], + [1.0,0.5754902192401586,0.0], + [1.0,0.5651961183210137,0.0], + [1.0,0.5549020174018688,0.0], + [1.0,0.544607916482724,0.0], + [1.0,0.5343138155635792,0.0], + [1.0,0.5240197146444343,0.0], + [1.0,0.5137256137252896,0.0], + [1.0,0.5034315128061447,0.0], + [1.0,0.493137411887,0.0], + [1.0,0.48284331096785504,0.0], + [1.0,0.4725492100487102,0.0], + [1.0,0.46225510912956547,0.0], + [1.0,0.4519610082104206,0.0], + [1.0,0.4416669072912758,0.0], + [1.0,0.43137280637213093,0.0], + [1.0,0.4210787054529861,0.0], + [1.0,0.41078460453384147,0.0], + [1.0,0.4004905036146965,0.0], + [1.0,0.39019640269555167,0.0], + [1.0,0.3799023017764068,0.0], + [1.0,0.369608200857262,0.0], + [1.0,0.35931409993811714,0.0], + [1.0,0.3490199990189723,0.0], + [1.0,0.33872589809982745,0.0], + [1.0,0.3284317971806827,0.0], + [1.0,0.3181376962615379,0.0], + [1.0,0.30784359534239336,0.0], + [1.0,0.2975494944232482,0.0], + [1.0,0.28725539350410334,0.0], + [1.0,0.2769612925849585,0.0], + [1.0,0.26666719166581376,0.0], + [1.0,0.2563730907466689,0.0], + [1.0,0.24607898982752408,0.0], + [1.0,0.23578488890837923,0.0], + [1.0,0.2254907879892344,0.0], + [1.0,0.21519668707008954,0.0], + [1.0,0.2049025861509448,0.0], + [1.0,0.19460848523179997,0.0], + [1.0,0.18431438431265512,0.0], + [1.0,0.17402028339351028,0.0], + [1.0,0.16372618247436543,0.0], + [1.0,0.1534320815552206,0.0], + [1.0,0.14313798063607608,0.0], + [1.0,0.132843879716931,0.0], + [1.0,0.12254977879778617,0.0], + [1.0,0.11225567787864132,0.0], + [1.0,0.10196157695949648,0.0], + [1.0,0.09166747604035164,0.0], + [1.0,0.08137337512120679,0.0], + [1.0,0.07107927420206206,0.0], + [1.0,0.060785173282917215,0.0], + [1.0,0.05049107236377237,0.0], + [1.0,0.04019697144462753,0.0], + [1.0,0.029902870525482683,0.0], + [1.0,0.01960876960633784,0.0], + [1.0,0.009314668687193106,0.0], + [0.9990204970624411,0.0,0.0], + [0.9887256530080062,0.0,0.0], + [0.9784308089535717,0.0,0.0], + [0.9681359648991366,0.0,0.0], + [0.9578411208447016,0.0,0.0], + [0.9475462767902668,0.0,0.0], + [0.937251432735832,0.0,0.0], + [0.9269565886813971,0.0,0.0], + [0.9166617446269623,0.0,0.0], + [0.9063669005725274,0.0,0.0], + [0.8960720565180925,0.0,0.0], + [0.8857772124636577,0.0,0.0], + [0.8754823684092229,0.0,0.0], + [0.865187524354788,0.0,0.0], + [0.8548926803003531,0.0,0.0], + [0.8445978362459183,0.0,0.0], + [0.8343029921914834,0.0,0.0], + [0.8240081481370486,0.0,0.0], + [0.8137133040826141,0.0,0.0], + [0.8034184600281788,0.0,0.0], + [0.793123615973744,0.0,0.0], + [0.7828287719193092,0.0,0.0], + [0.7725339278648744,0.0,0.0], + [0.7622390838104395,0.0,0.0], + [0.7519442397560047,0.0,0.0], + [0.7416493957015697,0.0,0.0], + [0.7313545516471349,0.0,0.0], + [0.7210597075927001,0.0,0.0], + [0.7107648635382653,0.0,0.0], + [0.7004700194838304,0.0,0.0], + [0.6901751754293955,0.0,0.0], + [0.6798803313749606,0.0,0.0], + [0.6695854873205258,0.0,0.0], + [0.659290643266091,0.0,0.0], + [0.6489957992116564,0.0,0.0], + [0.6387009551572214,0.0,0.0], + [0.6284061111027865,0.0,0.0], + [0.6181112670483516,0.0,0.0], + [0.6078164229939167,0.0,0.0], + [0.5975215789394819,0.0,0.0], + [0.5872267348850471,0.0,0.0], + [0.5769318908306122,0.0,0.0], + [0.5666370467761774,0.0,0.0], + [0.5563422027217425,0.0,0.0], + [0.5460473586673076,0.0,0.0], + [0.5357525146128728,0.0,0.0], + [0.525457670558438,0.0,0.0], + [0.5151628265040031,0.0,0.0], + [0.5048679824495683,0.0,0.0], + [0.4945731383951334,0.0,0.0], + [0.4842782943406988,0.0,0.0], + [0.47398345028626365,0.0,0.0], + [0.46368860623182884,0.0,0.0], + [0.453393762177394,0.0,0.0], + [0.4430989181229592,0.0,0.0], + [0.4328040740685243,0.0,0.0], + [0.42250923001408947,0.0,0.0], + [0.41221438595965454,0.0,0.0], + [0.4019195419052197,0.0,0.0], + [0.3916246978507849,0.0,0.0], + [0.3813298537963501,0.0,0.0], + [0.37103500974191517,0.0,0.0], + [0.36074016568748035,0.0,0.0], + [0.3504453216330454,0.0,0.0], + [0.3401504775786106,0.0,0.0], + [0.3298556335241758,0.0,0.0], + [0.3195607894697413,0.0,0.0], + [0.30926594541530605,0.0,0.0], + [0.29897110136087124,0.0,0.0], + [0.2886762573064363,0.0,0.0], + [0.2783814132520015,0.0,0.0], + [0.2680865691975667,0.0,0.0], + [0.25779172514313187,0.0,0.0], + [0.24749688108869705,0.0,0.0], + [0.23720203703426213,0.0,0.0], + [0.2269071929798273,0.0,0.0], + [0.21661234892539238,0.0,0.0], + [0.20631750487095757,0.0,0.0], + [0.19602266081652275,0.0,0.0], + [0.18572781676208794,0.0,0.0], + [0.175432972707653,0.0,0.0], + [0.1651381286532182,0.0,0.0], + [0.1548432845987836,0.0,0.0], + [0.14454844054434846,0.0,0.0], + [0.13425359648991364,0.0,0.0], + [0.12395875243547883,0.0,0.0], + [0.1136639083810439,0.0,0.0], + [0.10336906432660908,0.0,0.0], + [0.09307422027217416,0.0,0.0], + [0.08277937621773934,0.0,0.0], + [0.07248453216330453,0.0,0.0], + [0.06218968810886971,0.0,0.0], + [0.051894844054434786,0.0,0.0], + [0.0416,0.0,0.0] ], + hsv: [ + [1.0,0.0,0.0], + [1.0,0.02316178786767022,0.0], + [1.0,0.04632357573534044,0.0], + [1.0,0.06948536360301065,0.0], + [1.0,0.09264715147068088,0.0], + [1.0,0.1158089393383511,0.0], + [1.0,0.1389707272060213,0.0], + [1.0,0.16213251507369153,0.0], + [1.0,0.18529430294136176,0.0], + [1.0,0.20845609080903196,0.0], + [1.0,0.2316178786767022,0.0], + [1.0,0.2547796665443724,0.0], + [1.0,0.2779414544120426,0.0], + [1.0,0.3011032422797128,0.0], + [1.0,0.32426503014738306,0.0], + [1.0,0.34742681801505326,0.0], + [1.0,0.3705886058827235,0.0], + [1.0,0.3937503937503937,0.0], + [1.0,0.4169121816180639,0.0], + [1.0,0.4400739694857342,0.0], + [1.0,0.4632357573534044,0.0], + [1.0,0.48639754522107453,0.0], + [1.0,0.5095593330887448,0.0], + [1.0,0.532721120956415,0.0], + [1.0,0.5558829088240852,0.0], + [1.0,0.5790446966917554,0.0], + [1.0,0.6022064845594256,0.0], + [1.0,0.6253682724270958,0.0], + [1.0,0.6485300602947661,0.0], + [1.0,0.6716918481624363,0.0], + [1.0,0.6948536360301065,0.0], + [1.0,0.7180154238977768,0.0], + [1.0,0.741177211765447,0.0], + [1.0,0.764338999633117,0.0], + [1.0,0.7875007875007874,0.0], + [1.0,0.8106625753684576,0.0], + [1.0,0.8338243632361279,0.0], + [1.0,0.8569861511037979,0.0], + [1.0,0.8801479389714684,0.0], + [1.0,0.9033097268391386,0.0], + [1.0,0.9264715147068088,0.0], + [0.9959555658085071,0.9455888683829858,0.0], + [0.9882349698526169,0.9610300602947661,0.0], + [0.9805143738967269,0.9764712522065463,0.0], + [0.9727937779408368,0.9919124441183264,0.0], + [0.9577195459548403,1.0,0.0], + [0.93455775808717,1.0,0.0], + [0.9113959702194997,1.0,0.0], + [0.8882341823518295,1.0,0.0], + [0.8650723944841594,1.0,0.0], + [0.8419106066164891,1.0,0.0], + [0.8187488187488188,1.0,0.0], + [0.7955870308811486,1.0,0.0], + [0.7724252430134786,1.0,0.0], + [0.7492634551458082,1.0,0.0], + [0.726101667278138,1.0,0.0], + [0.7029398794104678,1.0,0.0], + [0.6797780915427977,1.0,0.0], + [0.6566163036751272,1.0,0.0], + [0.633454515807457,1.0,0.0], + [0.6102927279397868,1.0,0.0], + [0.5871309400721167,1.0,0.0], + [0.5639691522044463,1.0,0.0], + [0.5408073643367761,1.0,0.0], + [0.5176455764691059,1.0,0.0], + [0.4944837886014357,1.0,0.0], + [0.4713220007337658,1.0,0.0], + [0.4481602128660953,1.0,0.0], + [0.424998424998425,1.0,0.0], + [0.4018366371307548,1.0,0.0], + [0.3786748492630846,1.0,0.0], + [0.3555130613954144,1.0,0.0], + [0.3323512735277442,1.0,0.0], + [0.309189485660074,1.0,0.0], + [0.2860276977924041,1.0,0.0], + [0.2628659099247336,1.0,0.0], + [0.23970412205706326,1.0,0.0], + [0.21654233418939306,1.0,0.0], + [0.19338054632172286,1.0,0.0], + [0.17021875845405265,1.0,0.0], + [0.14705697058638245,1.0,0.0], + [0.12389518271871214,1.0,0.0], + [0.10073339485104227,1.0,0.0], + [0.07757160698337173,1.0,0.0], + [0.05440981911570142,1.0,0.0], + [0.03124934374934376,1.0,1.3125013124790507e-06], + [0.0235287477934537,1.0,0.015442504413092598], + [0.015808151837563643,1.0,0.030883696324872714], + [0.008087555881673585,1.0,0.04632488823665283], + [0.0003669599257835228,1.0,0.061766080148432954], + [0.0,1.0,0.08456076910733497], + [0.0,1.0,0.10772241105651532], + [0.0,1.0,0.13088405300569536], + [0.0,1.0,0.15404569495487538], + [0.0,1.0,0.1772073369040554], + [0.0,1.0,0.20036897885323546], + [0.0,1.0,0.22353062080241548], + [0.0,1.0,0.2466922627515955], + [0.0,1.0,0.2698539047007752], + [0.0,1.0,0.29301554664995555], + [0.0,1.0,0.3161771885991356], + [0.0,1.0,0.33933883054831565], + [0.0,1.0,0.3625004724974957], + [0.0,1.0,0.3856621144466757], + [0.0,1.0,0.4088237563958557], + [0.0,1.0,0.43198539834503574], + [0.0,1.0,0.45514704029421543], + [0.0,1.0,0.47830868224339584], + [0.0,1.0,0.5014703241925758], + [0.0,1.0,0.5246319661417559], + [0.0,1.0,0.547793608090936], + [0.0,1.0,0.5709552500401159], + [0.0,1.0,0.594116891989296], + [0.0,1.0,0.617278533938476], + [0.0,1.0,0.6404401758876557], + [0.0,1.0,0.6636018178368361], + [0.0,1.0,0.6867634597860162], + [0.0,1.0,0.7099251017351961], + [0.0,1.0,0.7330867436843761], + [0.0,1.0,0.7562483856335561], + [0.0,1.0,0.7794100275827363], + [0.0,1.0,0.8025716695319163], + [0.0,1.0,0.825733311481096], + [0.0,1.0,0.8488949534302763], + [0.0,1.0,0.8720565953794563], + [0.0,1.0,0.8952182373286364], + [0.0,1.0,0.9183798792778164], + [0.0,1.0,0.9415415212269964], + [0.0,1.0,0.9647031631761764], + [0.0,1.0,0.9878648051253566], + [0.0,0.9889734834587774,1.0], + [0.0,0.9658116955911072,1.0], + [0.0,0.9426499077234377,1.0], + [0.0,0.9194881198557668,1.0], + [0.0,0.8963263319880966,1.0], + [0.0,0.8731645441204264,1.0], + [0.0,0.8500027562527561,1.0], + [0.0,0.826840968385086,1.0], + [0.0,0.8036791805174157,1.0], + [0.0,0.7805173926497455,1.0], + [0.0,0.7573556047820753,1.0], + [0.0,0.7341938169144051,1.0], + [0.0,0.7110320290467349,1.0], + [0.0,0.6878702411790647,1.0], + [0.0,0.6647084533113945,1.0], + [0.0,0.6415466654437243,1.0], + [0.0,0.6183848775760541,1.0], + [0.0,0.5952230897083839,1.0], + [0.0,0.5720613018407144,1.0], + [0.0,0.5488995139730435,1.0], + [0.0,0.5257377261053733,1.0], + [0.0,0.5025759382377031,1.0], + [0.0,0.4794141503700329,1.0], + [0.0,0.4562523625023627,1.0], + [0.0,0.43309057463469247,1.0], + [0.0,0.40992878676702216,1.0], + [0.0,0.38676699889935195,1.0], + [0.0,0.36360521103168175,1.0], + [0.0,0.34044342316401155,1.0], + [0.0,0.31728163529634135,1.0], + [0.0,0.29411984742867114,1.0], + [0.0,0.27095805956100094,1.0], + [0.0,0.24779627169333063,1.0], + [0.0,0.22463448382566054,1.0], + [0.0,0.201472695957991,1.0], + [0.0,0.17831090809032013,1.0], + [0.0,0.15514912022264993,1.0], + [0.0,0.13198733235497973,1.0], + [0.0,0.10882554448730952,1.0], + [0.0,0.08566375661963932,1.0], + [0.0,0.062501968751969,1.0], + [0.00771993970523371,0.04706012058953258,1.0], + [0.015440535661123769,0.03161892867775246,1.0], + [0.023161131617013827,0.016177736765972346,1.0], + [0.03088172757290389,0.0007365448541922226,1.0], + [0.053306970586381903,0.0,1.0], + [0.07646875845405214,0.0,1.0], + [0.09963054632172239,0.0,1.0], + [0.12279233418939263,0.0,1.0], + [0.14595412205706287,0.0,1.0], + [0.16911590992473247,0.0,1.0], + [0.19227769779240333,0.0,1.0], + [0.2154394856600736,0.0,1.0], + [0.23860127352774382,0.0,1.0], + [0.26176306139541405,0.0,1.0], + [0.2849248492630843,0.0,1.0], + [0.30808663713075457,0.0,1.0], + [0.33124842499842483,0.0,1.0], + [0.3544102128660951,0.0,1.0], + [0.3775720007337653,0.0,1.0], + [0.40073378860143555,0.0,1.0], + [0.42389557646910575,0.0,1.0], + [0.44705736433677606,0.0,1.0], + [0.47021915220444627,0.0,1.0], + [0.4933809400721165,0.0,1.0], + [0.5165427279397867,0.0,1.0], + [0.5397045158074564,0.0,1.0], + [0.5628663036751272,0.0,1.0], + [0.5860280915427974,0.0,1.0], + [0.6091898794104678,0.0,1.0], + [0.632351667278138,0.0,1.0], + [0.6555134551458082,0.0,1.0], + [0.6786752430134784,0.0,1.0], + [0.7018370308811488,0.0,1.0], + [0.724998818748819,0.0,1.0], + [0.7481606066164892,0.0,1.0], + [0.7713223944841594,0.0,1.0], + [0.7944841823518297,0.0,1.0], + [0.8176459702194999,0.0,1.0], + [0.8408077580871701,0.0,1.0], + [0.8639695459548403,0.0,1.0], + [0.8871313338225106,0.0,1.0], + [0.9102931216901803,0.0,1.0], + [0.9334549095578512,0.0,1.0], + [0.9566166974255214,0.0,1.0], + [0.9724261617643972,0.0,0.9926476764712057], + [0.9801467577202873,0.0,0.9772064845594255], + [0.9878673536761773,0.0,0.9617652926476454], + [0.9955879496320674,0.0,0.9463241007358653], + [1.0,0.0,0.9275743632361277], + [1.0,0.0,0.9044125753684575], + [1.0,0.0,0.8812507875007872], + [1.0,0.0,0.858088999633117], + [1.0,0.0,0.8349272117654468], + [1.0,0.0,0.8117654238977766], + [1.0,0.0,0.7886036360301064], + [1.0,0.0,0.7654418481624362], + [1.0,0.0,0.742280060294766], + [1.0,0.0,0.7191182724270964], + [1.0,0.0,0.6959564845594255], + [1.0,0.0,0.6727946966917553], + [1.0,0.0,0.6496329088240851], + [1.0,0.0,0.6264711209564149], + [1.0,0.0,0.6033093330887447], + [1.0,0.0,0.5801475452210745], + [1.0,0.0,0.5569857573534043], + [1.0,0.0,0.5338239694857341], + [1.0,0.0,0.5106621816180639], + [1.0,0.0,0.4875003937503936], + [1.0,0.0,0.4643386058827234], + [1.0,0.0,0.4411768180150532], + [1.0,0.0,0.41801503014738306], + [1.0,0.0,0.39485324227971275], + [1.0,0.0,0.37169145441204254], + [1.0,0.0,0.348529666544373], + [1.0,0.0,0.32536787867670214], + [1.0,0.0,0.30220609080903194], + [1.0,0.0,0.27904430294136173], + [1.0,0.0,0.2558825150736914], + [1.0,0.0,0.23272072720602122], + [1.0,0.0,0.20955893933835112], + [1.0,0.0,0.18639715147068092], + [1.0,0.0,0.16323536360301072], + [1.0,0.0,0.1400735757353404], + [1.0,0.0,0.1169117878676702], + [1.0,0.0,0.09375] ], + hsv_r: [ + [1.0,0.0,0.09375], + [1.0,0.0,0.11691178786767022], + [1.0,0.0,0.14007357573534043], + [1.0,0.0,0.16323536360301066], + [1.0,0.0,0.18639715147068087], + [1.0,0.0,0.2095589393383511], + [1.0,0.0,0.23272072720602133], + [1.0,0.0,0.25588251507369153], + [1.0,0.0,0.27904430294136173], + [1.0,0.0,0.30220609080903194], + [1.0,0.0,0.3253678786767022], + [1.0,0.0,0.3485296665443724], + [1.0,0.0,0.37169145441204265], + [1.0,0.0,0.3948532422797128], + [1.0,0.0,0.41801503014738306], + [1.0,0.0,0.44117681801505326], + [1.0,0.0,0.4643386058827235], + [1.0,0.0,0.4875003937503937], + [1.0,0.0,0.5106621816180639], + [1.0,0.0,0.5338239694857342], + [1.0,0.0,0.5569857573534044], + [1.0,0.0,0.5801475452210746], + [1.0,0.0,0.6033093330887448], + [1.0,0.0,0.6264711209564151], + [1.0,0.0,0.6496329088240853], + [1.0,0.0,0.6727946966917555], + [1.0,0.0,0.6959564845594256], + [1.0,0.0,0.7191182724270958], + [1.0,0.0,0.7422800602947661], + [1.0,0.0,0.7654418481624363], + [1.0,0.0,0.7886036360301065], + [1.0,0.0,0.8117654238977767], + [1.0,0.0,0.834927211765447], + [1.0,0.0,0.858088999633117], + [1.0,0.0,0.8812507875007874], + [1.0,0.0,0.9044125753684576], + [1.0,0.0,0.9275743632361279], + [0.9955879496320674,0.0,0.9463241007358653], + [0.9878673536761773,0.0,0.9617652926476454], + [0.9801467577202871,0.0,0.9772064845594256], + [0.9724261617643971,0.0,0.9926476764712058], + [0.9566166974255214,0.0,1.0], + [0.9334549095578509,0.0,1.0], + [0.9102931216901807,0.0,1.0], + [0.8871313338225105,0.0,1.0], + [0.8639695459548404,0.0,1.0], + [0.84080775808717,0.0,1.0], + [0.8176459702194998,0.0,1.0], + [0.7944841823518296,0.0,1.0], + [0.7713223944841595,0.0,1.0], + [0.7481606066164892,0.0,1.0], + [0.7249988187488189,0.0,1.0], + [0.7018370308811487,0.0,1.0], + [0.6786752430134786,0.0,1.0], + [0.6555134551458082,0.0,1.0], + [0.632351667278138,0.0,1.0], + [0.6091898794104678,0.0,1.0], + [0.5860280915427978,0.0,1.0], + [0.5628663036751274,0.0,1.0], + [0.539704515807457,0.0,1.0], + [0.5165427279397868,0.0,1.0], + [0.4933809400721168,0.0,1.0], + [0.4702191522044464,0.0,1.0], + [0.4470573643367761,0.0,1.0], + [0.4238955764691059,0.0,1.0], + [0.4007337886014357,0.0,1.0], + [0.37757200073376584,0.0,1.0], + [0.3544102128660952,0.0,1.0], + [0.331248424998425,0.0,1.0], + [0.3080866371307548,0.0,1.0], + [0.2849248492630845,0.0,1.0], + [0.2617630613954143,0.0,1.0], + [0.23860127352774407,0.0,1.0], + [0.21543948566007387,0.0,1.0], + [0.192277697792404,0.0,1.0], + [0.16911590992473335,0.0,1.0], + [0.14595412205706315,0.0,1.0], + [0.12279233418939295,0.0,1.0], + [0.09963054632172264,0.0,1.0], + [0.07646875845405243,0.0,1.0], + [0.05330697058638223,0.0,1.0], + [0.030881727572903996,0.0007365448541920054,1.0], + [0.023161131617014045,0.016177736765971906,1.0], + [0.01544053566112388,0.03161892867775224,1.0], + [0.007719939705233821,0.04706012058953236,1.0], + [0.0,0.06250196875196871,1.0], + [0.0,0.08566375661963893,1.0], + [0.0,0.10882554448730916,1.0], + [0.0,0.1319873323549794,1.0], + [0.0,0.1551491202226496,1.0], + [0.0,0.1783109080903195,1.0], + [0.0,0.20147269595799003,1.0], + [0.0,0.22463448382566026,1.0], + [0.0,0.24779627169333046,1.0], + [0.0,0.2709580595610007,1.0], + [0.0,0.2941198474286709,1.0], + [0.0,0.3172816352963411,1.0], + [0.0,0.3404434231640113,1.0], + [0.0,0.36360521103168125,1.0], + [0.0,0.3867669988993518,1.0], + [0.0,0.409928786767022,1.0], + [0.0,0.4330905746346922,1.0], + [0.0,0.45625236250236245,1.0], + [0.0,0.47941415037003265,1.0], + [0.0,0.5025759382377029,1.0], + [0.0,0.5257377261053731,1.0], + [0.0,0.548899513973043,1.0], + [0.0,0.5720613018407135,1.0], + [0.0,0.5952230897083837,1.0], + [0.0,0.618384877576054,1.0], + [0.0,0.6415466654437242,1.0], + [0.0,0.6647084533113944,1.0], + [0.0,0.6878702411790646,1.0], + [0.0,0.7110320290467348,1.0], + [0.0,0.7341938169144047,1.0], + [0.0,0.7573556047820752,1.0], + [0.0,0.7805173926497455,1.0], + [0.0,0.8036791805174157,1.0], + [0.0,0.8268409683850859,1.0], + [0.0,0.8500027562527561,1.0], + [0.0,0.8731645441204263,1.0], + [0.0,0.8963263319880965,1.0], + [0.0,0.9194881198557664,1.0], + [0.0,0.9426499077234369,1.0], + [0.0,0.9658116955911071,1.0], + [0.0,0.9889734834587774,1.0], + [0.0,1.0,0.9878648051253565], + [0.0,1.0,0.9647031631761764], + [0.0,1.0,0.9415415212269964], + [0.0,1.0,0.9183798792778164], + [0.0,1.0,0.8952182373286364], + [0.0,1.0,0.8720565953794563], + [0.0,1.0,0.848894953430277], + [0.0,1.0,0.8257333114810963], + [0.0,1.0,0.8025716695319163], + [0.0,1.0,0.7794100275827363], + [0.0,1.0,0.7562483856335562], + [0.0,1.0,0.7330867436843762], + [0.0,1.0,0.7099251017351962], + [0.0,1.0,0.6867634597860162], + [0.0,1.0,0.6636018178368361], + [0.0,1.0,0.6404401758876561], + [0.0,1.0,0.6172785339384761], + [0.0,1.0,0.5941168919892961], + [0.0,1.0,0.570955250040116], + [0.0,1.0,0.547793608090936], + [0.0,1.0,0.524631966141756], + [0.0,1.0,0.501470324192576], + [0.0,1.0,0.4783086822433966], + [0.0,1.0,0.45514704029421604], + [0.0,1.0,0.4319853983450359], + [0.0,1.0,0.4088237563958559], + [0.0,1.0,0.38566211444667586], + [0.0,1.0,0.36250047249749584], + [0.0,1.0,0.3393388305483158], + [0.0,1.0,0.3161771885991359], + [0.0,1.0,0.2930155466499559], + [0.0,1.0,0.26985390470077586], + [0.0,1.0,0.24669226275159573], + [0.0,1.0,0.2235306208024157], + [0.0,1.0,0.20036897885323568], + [0.0,1.0,0.17720733690405566], + [0.0,1.0,0.15404569495487563], + [0.0,1.0,0.13088405300569572], + [0.0,1.0,0.10772241105651625], + [0.0,1.0,0.08456076910733568], + [0.00036695992578341394,1.0,0.06176608014843317], + [0.008087555881673474,1.0,0.04632488823665305], + [0.015808151837563532,1.0,0.030883696324872936], + [0.02352874779345359,1.0,0.01544250441309282], + [0.031249343749343652,1.0,1.3125013126960572e-06], + [0.0544098191157012,1.0,0.0], + [0.07757160698337143,1.0,0.0], + [0.10073339485104169,1.0,0.0], + [0.12389518271871193,1.0,0.0], + [0.14705697058638217,1.0,0.0], + [0.1702187584540524,1.0,0.0], + [0.19338054632172264,1.0,0.0], + [0.2165423341893929,1.0,0.0], + [0.23970412205706312,1.0,0.0], + [0.2628659099247327,1.0,0.0], + [0.28602769779240367,1.0,0.0], + [0.30918948566007387,1.0,0.0], + [0.33235127352774413,1.0,0.0], + [0.35551306139541433,1.0,0.0], + [0.3786748492630846,1.0,0.0], + [0.40183663713075485,1.0,0.0], + [0.4249984249984251,1.0,0.0], + [0.4481602128660953,1.0,0.0], + [0.47132200073376557,1.0,0.0], + [0.4944837886014358,1.0,0.0], + [0.517645576469106,1.0,0.0], + [0.5408073643367763,1.0,0.0], + [0.5639691522044465,1.0,0.0], + [0.5871309400721167,1.0,0.0], + [0.610292727939787,1.0,0.0], + [0.6334545158074566,1.0,0.0], + [0.6566163036751276,1.0,0.0], + [0.6797780915427978,1.0,0.0], + [0.702939879410468,1.0,0.0], + [0.7261016672781383,1.0,0.0], + [0.7492634551458085,1.0,0.0], + [0.7724252430134787,1.0,0.0], + [0.7955870308811489,1.0,0.0], + [0.8187488187488192,1.0,0.0], + [0.8419106066164894,1.0,0.0], + [0.8650723944841596,1.0,0.0], + [0.8882341823518299,1.0,0.0], + [0.9113959702195003,1.0,0.0], + [0.9345577580871705,1.0,0.0], + [0.9577195459548407,1.0,0.0], + [0.972793777940837,0.9919124441183261,0.0], + [0.9805143738967268,0.9764712522065464,0.0], + [0.988234969852617,0.9610300602947659,0.0], + [0.9959555658085071,0.9455888683829857,0.0], + [1.0,0.9264715147068084,0.0], + [1.0,0.9033097268391382,0.0], + [1.0,0.8801479389714679,0.0], + [1.0,0.8569861511037977,0.0], + [1.0,0.8338243632361275,0.0], + [1.0,0.8106625753684573,0.0], + [1.0,0.7875007875007871,0.0], + [1.0,0.7643389996331169,0.0], + [1.0,0.7411772117654467,0.0], + [1.0,0.7180154238977765,0.0], + [1.0,0.6948536360301063,0.0], + [1.0,0.6716918481624361,0.0], + [1.0,0.6485300602947659,0.0], + [1.0,0.6253682724270964,0.0], + [1.0,0.6022064845594255,0.0], + [1.0,0.5790446966917553,0.0], + [1.0,0.5558829088240851,0.0], + [1.0,0.5327211209564149,0.0], + [1.0,0.5095593330887447,0.0], + [1.0,0.48639754522107437,0.0], + [1.0,0.4632357573534042,0.0], + [1.0,0.440073969485734,0.0], + [1.0,0.41691218161806376,0.0], + [1.0,0.39375039375039356,0.0], + [1.0,0.37058860588272335,0.0], + [1.0,0.34742681801505315,0.0], + [1.0,0.32426503014738295,0.0], + [1.0,0.30110324227971275,0.0], + [1.0,0.27794145441204254,0.0], + [1.0,0.254779666544373,0.0], + [1.0,0.23161787867670203,0.0], + [1.0,0.20845609080903182,0.0], + [1.0,0.18529430294136173,0.0], + [1.0,0.16213251507369153,0.0], + [1.0,0.13897072720602133,0.0], + [1.0,0.11580893933835112,0.0], + [1.0,0.09264715147068081,0.0], + [1.0,0.06948536360301061,0.0], + [1.0,0.046323575735340405,0.0], + [1.0,0.023161787867670203,0.0], + [1.0,0.0,0.0] ], + inferno: [ + [0.001462,0.000466,0.013866], + [0.002267,0.00127,0.01857], + [0.003299,0.002249,0.024239], + [0.004547,0.003392,0.030909], + [0.006006,0.004692,0.038558], + [0.007676,0.006136,0.046836], + [0.009561,0.007713,0.055143], + [0.011663,0.009417,0.06346], + [0.013995,0.011225,0.071862], + [0.016561,0.013136,0.080282], + [0.019373,0.015133,0.088767], + [0.022447,0.017199,0.097327], + [0.025793,0.019331,0.10593], + [0.029432,0.021503,0.114621], + [0.033385,0.023702,0.123397], + [0.037668,0.025921,0.132232], + [0.042253,0.028139,0.141141], + [0.046915,0.030324,0.150164], + [0.051644,0.032474,0.159254], + [0.056449,0.034569,0.168414], + [0.06134,0.03659,0.177642], + [0.066331,0.038504,0.186962], + [0.071429,0.040294,0.196354], + [0.076637,0.041905,0.205799], + [0.081962,0.043328,0.215289], + [0.087411,0.044556,0.224813], + [0.09299,0.045583,0.234358], + [0.098702,0.046402,0.243904], + [0.104551,0.047008,0.25343], + [0.110536,0.047399,0.262912], + [0.116656,0.047574,0.272321], + [0.122908,0.047536,0.281624], + [0.129285,0.047293,0.290788], + [0.135778,0.046856,0.299776], + [0.142378,0.046242,0.308553], + [0.149073,0.045468,0.317085], + [0.15585,0.044559,0.325338], + [0.162689,0.043554,0.333277], + [0.169575,0.042489,0.340874], + [0.176493,0.041402,0.348111], + [0.183429,0.040329,0.354971], + [0.190367,0.039309,0.361447], + [0.197297,0.0384,0.367535], + [0.204209,0.037632,0.373238], + [0.211095,0.03703,0.378563], + [0.217949,0.036615,0.383522], + [0.224763,0.036405,0.388129], + [0.231538,0.036405,0.3924], + [0.238273,0.036621,0.396353], + [0.244967,0.037055,0.400007], + [0.25162,0.037705,0.403378], + [0.258234,0.038571,0.406485], + [0.26481,0.039647,0.409345], + [0.271347,0.040922,0.411976], + [0.27785,0.042353,0.414392], + [0.284321,0.043933,0.416608], + [0.290763,0.045644,0.418637], + [0.297178,0.04747,0.420491], + [0.303568,0.049396,0.422182], + [0.309935,0.051407,0.423721], + [0.316282,0.05349,0.425116], + [0.32261,0.055634,0.426377], + [0.328921,0.057827,0.427511], + [0.335217,0.06006,0.428524], + [0.3415,0.062325,0.429425], + [0.347771,0.064616,0.430217], + [0.354032,0.066925,0.430906], + [0.360284,0.069247,0.431497], + [0.366529,0.071579,0.431994], + [0.372768,0.073915,0.4324], + [0.379001,0.076253,0.432719], + [0.385228,0.078591,0.432955], + [0.391453,0.080927,0.433109], + [0.397674,0.083257,0.433183], + [0.403894,0.08558,0.433179], + [0.410113,0.087896,0.433098], + [0.416331,0.090203,0.432943], + [0.422549,0.092501,0.432714], + [0.428768,0.09479,0.432412], + [0.434987,0.097069,0.432039], + [0.441207,0.099338,0.431594], + [0.447428,0.101597,0.43108], + [0.453651,0.103848,0.430498], + [0.459875,0.106089,0.429846], + [0.4661,0.108322,0.429125], + [0.472328,0.110547,0.428334], + [0.478558,0.112764,0.427475], + [0.484789,0.114974,0.426548], + [0.491022,0.117179,0.425552], + [0.497257,0.119379,0.424488], + [0.503493,0.121575,0.423356], + [0.50973,0.123769,0.422156], + [0.515967,0.12596,0.420887], + [0.522206,0.12815,0.419549], + [0.528444,0.130341,0.418142], + [0.534683,0.132534,0.416667], + [0.54092,0.134729,0.415123], + [0.547157,0.136929,0.413511], + [0.553392,0.139134,0.411829], + [0.559624,0.141346,0.410078], + [0.565854,0.143567,0.408258], + [0.572081,0.145797,0.406369], + [0.578304,0.148039,0.404411], + [0.584521,0.150294,0.402385], + [0.590734,0.152563,0.40029], + [0.59694,0.154848,0.398125], + [0.603139,0.157151,0.395891], + [0.60933,0.159474,0.393589], + [0.615513,0.161817,0.391219], + [0.621685,0.164184,0.388781], + [0.627847,0.166575,0.386276], + [0.633998,0.168992,0.383704], + [0.640135,0.171438,0.381065], + [0.64626,0.173914,0.378359], + [0.652369,0.176421,0.375586], + [0.658463,0.178962,0.372748], + [0.66454,0.181539,0.369846], + [0.670599,0.184153,0.366879], + [0.676638,0.186807,0.363849], + [0.682656,0.189501,0.360757], + [0.688653,0.192239,0.357603], + [0.694627,0.195021,0.354388], + [0.700576,0.197851,0.351113], + [0.7065,0.200728,0.347777], + [0.712396,0.203656,0.344383], + [0.718264,0.206636,0.340931], + [0.724103,0.20967,0.337424], + [0.729909,0.212759,0.333861], + [0.735683,0.215906,0.330245], + [0.741423,0.219112,0.326576], + [0.747127,0.222378,0.322856], + [0.752794,0.225706,0.319085], + [0.758422,0.229097,0.315266], + [0.76401,0.232554,0.311399], + [0.769556,0.236077,0.307485], + [0.775059,0.239667,0.303526], + [0.780517,0.243327,0.299523], + [0.785929,0.247056,0.295477], + [0.791293,0.250856,0.29139], + [0.796607,0.254728,0.287264], + [0.801871,0.258674,0.283099], + [0.807082,0.262692,0.278898], + [0.812239,0.266786,0.274661], + [0.817341,0.270954,0.27039], + [0.822386,0.275197,0.266085], + [0.827372,0.279517,0.26175], + [0.832299,0.283913,0.257383], + [0.837165,0.288385,0.252988], + [0.841969,0.292933,0.248564], + [0.846709,0.297559,0.244113], + [0.851384,0.30226,0.239636], + [0.855992,0.307038,0.235133], + [0.860533,0.311892,0.230606], + [0.865006,0.316822,0.226055], + [0.869409,0.321827,0.221482], + [0.873741,0.326906,0.216886], + [0.878001,0.33206,0.212268], + [0.882188,0.337287,0.207628], + [0.886302,0.342586,0.202968], + [0.890341,0.347957,0.198286], + [0.894305,0.353399,0.193584], + [0.898192,0.358911,0.18886], + [0.902003,0.364492,0.184116], + [0.905735,0.37014,0.17935], + [0.90939,0.375856,0.174563], + [0.912966,0.381636,0.169755], + [0.916462,0.387481,0.164924], + [0.919879,0.393389,0.16007], + [0.923215,0.399359,0.155193], + [0.92647,0.405389,0.150292], + [0.929644,0.411479,0.145367], + [0.932737,0.417627,0.140417], + [0.935747,0.423831,0.13544], + [0.938675,0.430091,0.130438], + [0.941521,0.436405,0.125409], + [0.944285,0.442772,0.120354], + [0.946965,0.449191,0.115272], + [0.949562,0.45566,0.110164], + [0.952075,0.462178,0.105031], + [0.954506,0.468744,0.099874], + [0.956852,0.475356,0.094695], + [0.959114,0.482014,0.089499], + [0.961293,0.488716,0.084289], + [0.963387,0.495462,0.079073], + [0.965397,0.502249,0.073859], + [0.967322,0.509078,0.068659], + [0.969163,0.515946,0.063488], + [0.970919,0.522853,0.058367], + [0.97259,0.529798,0.053324], + [0.974176,0.53678,0.048392], + [0.975677,0.543798,0.043618], + [0.977092,0.55085,0.03905], + [0.978422,0.557937,0.034931], + [0.979666,0.565057,0.031409], + [0.980824,0.572209,0.028508], + [0.981895,0.579392,0.02625], + [0.982881,0.586606,0.024661], + [0.983779,0.593849,0.02377], + [0.984591,0.601122,0.023606], + [0.985315,0.608422,0.024202], + [0.985952,0.61575,0.025592], + [0.986502,0.623105,0.027814], + [0.986964,0.630485,0.030908], + [0.987337,0.63789,0.034916], + [0.987622,0.64532,0.039886], + [0.987819,0.652773,0.045581], + [0.987926,0.66025,0.05175], + [0.987945,0.667748,0.058329], + [0.987874,0.675267,0.065257], + [0.987714,0.682807,0.072489], + [0.987464,0.690366,0.07999], + [0.987124,0.697944,0.087731], + [0.986694,0.70554,0.095694], + [0.986175,0.713153,0.103863], + [0.985566,0.720782,0.112229], + [0.984865,0.728427,0.120785], + [0.984075,0.736087,0.129527], + [0.983196,0.743758,0.138453], + [0.982228,0.751442,0.147565], + [0.981173,0.759135,0.156863], + [0.980032,0.766837,0.166353], + [0.978806,0.774545,0.176037], + [0.977497,0.782258,0.185923], + [0.976108,0.789974,0.196018], + [0.974638,0.797692,0.206332], + [0.973088,0.805409,0.216877], + [0.971468,0.813122,0.227658], + [0.969783,0.820825,0.238686], + [0.968041,0.828515,0.249972], + [0.966243,0.836191,0.261534], + [0.964394,0.843848,0.273391], + [0.962517,0.851476,0.285546], + [0.960626,0.859069,0.29801], + [0.95872,0.866624,0.31082], + [0.956834,0.874129,0.323974], + [0.954997,0.881569,0.337475], + [0.953215,0.888942,0.351369], + [0.951546,0.896226,0.365627], + [0.950018,0.903409,0.380271], + [0.948683,0.910473,0.395289], + [0.947594,0.917399,0.410665], + [0.946809,0.924168,0.426373], + [0.946392,0.930761,0.442367], + [0.946403,0.937159,0.458592], + [0.946903,0.943348,0.47497], + [0.947937,0.949318,0.491426], + [0.949545,0.955063,0.50786], + [0.95174,0.960587,0.524203], + [0.954529,0.965896,0.540361], + [0.957896,0.971003,0.556275], + [0.961812,0.975924,0.571925], + [0.966249,0.980678,0.587206], + [0.971162,0.985282,0.602154], + [0.976511,0.989753,0.61676], + [0.982257,0.994109,0.631017], + [0.988362,0.998364,0.644924] ], + inferno_r: [ + [0.988362,0.998364,0.644924], + [0.982257,0.994109,0.631017], + [0.976511,0.989753,0.61676], + [0.971162,0.985282,0.602154], + [0.966249,0.980678,0.587206], + [0.961812,0.975924,0.571925], + [0.957896,0.971003,0.556275], + [0.954529,0.965896,0.540361], + [0.95174,0.960587,0.524203], + [0.949545,0.955063,0.50786], + [0.947937,0.949318,0.491426], + [0.946903,0.943348,0.47497], + [0.946403,0.937159,0.458592], + [0.946392,0.930761,0.442367], + [0.946809,0.924168,0.426373], + [0.947594,0.917399,0.410665], + [0.948683,0.910473,0.395289], + [0.950018,0.903409,0.380271], + [0.951546,0.896226,0.365627], + [0.953215,0.888942,0.351369], + [0.954997,0.881569,0.337475], + [0.956834,0.874129,0.323974], + [0.95872,0.866624,0.31082], + [0.960626,0.859069,0.29801], + [0.962517,0.851476,0.285546], + [0.964394,0.843848,0.273391], + [0.966243,0.836191,0.261534], + [0.968041,0.828515,0.249972], + [0.969783,0.820825,0.238686], + [0.971468,0.813122,0.227658], + [0.973088,0.805409,0.216877], + [0.974638,0.797692,0.206332], + [0.976108,0.789974,0.196018], + [0.977497,0.782258,0.185923], + [0.978806,0.774545,0.176037], + [0.980032,0.766837,0.166353], + [0.981173,0.759135,0.156863], + [0.982228,0.751442,0.147565], + [0.983196,0.743758,0.138453], + [0.984075,0.736087,0.129527], + [0.984865,0.728427,0.120785], + [0.985566,0.720782,0.112229], + [0.986175,0.713153,0.103863], + [0.986694,0.70554,0.095694], + [0.987124,0.697944,0.087731], + [0.987464,0.690366,0.07999], + [0.987714,0.682807,0.072489], + [0.987874,0.675267,0.065257], + [0.987945,0.667748,0.058329], + [0.987926,0.66025,0.05175], + [0.987819,0.652773,0.045581], + [0.987622,0.64532,0.039886], + [0.987337,0.63789,0.034916], + [0.986964,0.630485,0.030908], + [0.986502,0.623105,0.027814], + [0.985952,0.61575,0.025592], + [0.985315,0.608422,0.024202], + [0.984591,0.601122,0.023606], + [0.983779,0.593849,0.02377], + [0.982881,0.586606,0.024661], + [0.981895,0.579392,0.02625], + [0.980824,0.572209,0.028508], + [0.979666,0.565057,0.031409], + [0.978422,0.557937,0.034931], + [0.977092,0.55085,0.03905], + [0.975677,0.543798,0.043618], + [0.974176,0.53678,0.048392], + [0.97259,0.529798,0.053324], + [0.970919,0.522853,0.058367], + [0.969163,0.515946,0.063488], + [0.967322,0.509078,0.068659], + [0.965397,0.502249,0.073859], + [0.963387,0.495462,0.079073], + [0.961293,0.488716,0.084289], + [0.959114,0.482014,0.089499], + [0.956852,0.475356,0.094695], + [0.954506,0.468744,0.099874], + [0.952075,0.462178,0.105031], + [0.949562,0.45566,0.110164], + [0.946965,0.449191,0.115272], + [0.944285,0.442772,0.120354], + [0.941521,0.436405,0.125409], + [0.938675,0.430091,0.130438], + [0.935747,0.423831,0.13544], + [0.932737,0.417627,0.140417], + [0.929644,0.411479,0.145367], + [0.92647,0.405389,0.150292], + [0.923215,0.399359,0.155193], + [0.919879,0.393389,0.16007], + [0.916462,0.387481,0.164924], + [0.912966,0.381636,0.169755], + [0.90939,0.375856,0.174563], + [0.905735,0.37014,0.17935], + [0.902003,0.364492,0.184116], + [0.898192,0.358911,0.18886], + [0.894305,0.353399,0.193584], + [0.890341,0.347957,0.198286], + [0.886302,0.342586,0.202968], + [0.882188,0.337287,0.207628], + [0.878001,0.33206,0.212268], + [0.873741,0.326906,0.216886], + [0.869409,0.321827,0.221482], + [0.865006,0.316822,0.226055], + [0.860533,0.311892,0.230606], + [0.855992,0.307038,0.235133], + [0.851384,0.30226,0.239636], + [0.846709,0.297559,0.244113], + [0.841969,0.292933,0.248564], + [0.837165,0.288385,0.252988], + [0.832299,0.283913,0.257383], + [0.827372,0.279517,0.26175], + [0.822386,0.275197,0.266085], + [0.817341,0.270954,0.27039], + [0.812239,0.266786,0.274661], + [0.807082,0.262692,0.278898], + [0.801871,0.258674,0.283099], + [0.796607,0.254728,0.287264], + [0.791293,0.250856,0.29139], + [0.785929,0.247056,0.295477], + [0.780517,0.243327,0.299523], + [0.775059,0.239667,0.303526], + [0.769556,0.236077,0.307485], + [0.76401,0.232554,0.311399], + [0.758422,0.229097,0.315266], + [0.752794,0.225706,0.319085], + [0.747127,0.222378,0.322856], + [0.741423,0.219112,0.326576], + [0.735683,0.215906,0.330245], + [0.729909,0.212759,0.333861], + [0.724103,0.20967,0.337424], + [0.718264,0.206636,0.340931], + [0.712396,0.203656,0.344383], + [0.7065,0.200728,0.347777], + [0.700576,0.197851,0.351113], + [0.694627,0.195021,0.354388], + [0.688653,0.192239,0.357603], + [0.682656,0.189501,0.360757], + [0.676638,0.186807,0.363849], + [0.670599,0.184153,0.366879], + [0.66454,0.181539,0.369846], + [0.658463,0.178962,0.372748], + [0.652369,0.176421,0.375586], + [0.64626,0.173914,0.378359], + [0.640135,0.171438,0.381065], + [0.633998,0.168992,0.383704], + [0.627847,0.166575,0.386276], + [0.621685,0.164184,0.388781], + [0.615513,0.161817,0.391219], + [0.60933,0.159474,0.393589], + [0.603139,0.157151,0.395891], + [0.59694,0.154848,0.398125], + [0.590734,0.152563,0.40029], + [0.584521,0.150294,0.402385], + [0.578304,0.148039,0.404411], + [0.572081,0.145797,0.406369], + [0.565854,0.143567,0.408258], + [0.559624,0.141346,0.410078], + [0.553392,0.139134,0.411829], + [0.547157,0.136929,0.413511], + [0.54092,0.134729,0.415123], + [0.534683,0.132534,0.416667], + [0.528444,0.130341,0.418142], + [0.522206,0.12815,0.419549], + [0.515967,0.12596,0.420887], + [0.50973,0.123769,0.422156], + [0.503493,0.121575,0.423356], + [0.497257,0.119379,0.424488], + [0.491022,0.117179,0.425552], + [0.484789,0.114974,0.426548], + [0.478558,0.112764,0.427475], + [0.472328,0.110547,0.428334], + [0.4661,0.108322,0.429125], + [0.459875,0.106089,0.429846], + [0.453651,0.103848,0.430498], + [0.447428,0.101597,0.43108], + [0.441207,0.099338,0.431594], + [0.434987,0.097069,0.432039], + [0.428768,0.09479,0.432412], + [0.422549,0.092501,0.432714], + [0.416331,0.090203,0.432943], + [0.410113,0.087896,0.433098], + [0.403894,0.08558,0.433179], + [0.397674,0.083257,0.433183], + [0.391453,0.080927,0.433109], + [0.385228,0.078591,0.432955], + [0.379001,0.076253,0.432719], + [0.372768,0.073915,0.4324], + [0.366529,0.071579,0.431994], + [0.360284,0.069247,0.431497], + [0.354032,0.066925,0.430906], + [0.347771,0.064616,0.430217], + [0.3415,0.062325,0.429425], + [0.335217,0.06006,0.428524], + [0.328921,0.057827,0.427511], + [0.32261,0.055634,0.426377], + [0.316282,0.05349,0.425116], + [0.309935,0.051407,0.423721], + [0.303568,0.049396,0.422182], + [0.297178,0.04747,0.420491], + [0.290763,0.045644,0.418637], + [0.284321,0.043933,0.416608], + [0.27785,0.042353,0.414392], + [0.271347,0.040922,0.411976], + [0.26481,0.039647,0.409345], + [0.258234,0.038571,0.406485], + [0.25162,0.037705,0.403378], + [0.244967,0.037055,0.400007], + [0.238273,0.036621,0.396353], + [0.231538,0.036405,0.3924], + [0.224763,0.036405,0.388129], + [0.217949,0.036615,0.383522], + [0.211095,0.03703,0.378563], + [0.204209,0.037632,0.373238], + [0.197297,0.0384,0.367535], + [0.190367,0.039309,0.361447], + [0.183429,0.040329,0.354971], + [0.176493,0.041402,0.348111], + [0.169575,0.042489,0.340874], + [0.162689,0.043554,0.333277], + [0.15585,0.044559,0.325338], + [0.149073,0.045468,0.317085], + [0.142378,0.046242,0.308553], + [0.135778,0.046856,0.299776], + [0.129285,0.047293,0.290788], + [0.122908,0.047536,0.281624], + [0.116656,0.047574,0.272321], + [0.110536,0.047399,0.262912], + [0.104551,0.047008,0.25343], + [0.098702,0.046402,0.243904], + [0.09299,0.045583,0.234358], + [0.087411,0.044556,0.224813], + [0.081962,0.043328,0.215289], + [0.076637,0.041905,0.205799], + [0.071429,0.040294,0.196354], + [0.066331,0.038504,0.186962], + [0.06134,0.03659,0.177642], + [0.056449,0.034569,0.168414], + [0.051644,0.032474,0.159254], + [0.046915,0.030324,0.150164], + [0.042253,0.028139,0.141141], + [0.037668,0.025921,0.132232], + [0.033385,0.023702,0.123397], + [0.029432,0.021503,0.114621], + [0.025793,0.019331,0.10593], + [0.022447,0.017199,0.097327], + [0.019373,0.015133,0.088767], + [0.016561,0.013136,0.080282], + [0.013995,0.011225,0.071862], + [0.011663,0.009417,0.06346], + [0.009561,0.007713,0.055143], + [0.007676,0.006136,0.046836], + [0.006006,0.004692,0.038558], + [0.004547,0.003392,0.030909], + [0.003299,0.002249,0.024239], + [0.002267,0.00127,0.01857], + [0.001462,0.000466,0.013866] ], + jet: [ + [0.0,0.0,0.5], + [0.0,0.0,0.517825311942959], + [0.0,0.0,0.535650623885918], + [0.0,0.0,0.553475935828877], + [0.0,0.0,0.571301247771836], + [0.0,0.0,0.589126559714795], + [0.0,0.0,0.606951871657754], + [0.0,0.0,0.624777183600713], + [0.0,0.0,0.642602495543672], + [0.0,0.0,0.660427807486631], + [0.0,0.0,0.67825311942959], + [0.0,0.0,0.696078431372549], + [0.0,0.0,0.713903743315508], + [0.0,0.0,0.731729055258467], + [0.0,0.0,0.749554367201426], + [0.0,0.0,0.767379679144385], + [0.0,0.0,0.785204991087344], + [0.0,0.0,0.803030303030303], + [0.0,0.0,0.820855614973262], + [0.0,0.0,0.838680926916221], + [0.0,0.0,0.85650623885918], + [0.0,0.0,0.874331550802139], + [0.0,0.0,0.892156862745098], + [0.0,0.0,0.909982174688057], + [0.0,0.0,0.927807486631016], + [0.0,0.0,0.945632798573975], + [0.0,0.0,0.963458110516934], + [0.0,0.0,0.981283422459893], + [0.0,0.0,0.999108734402852], + [0.0,0.0,1.0], + [0.0,0.0,1.0], + [0.0,0.0,1.0], + [0.0,0.00196078431372549,1.0], + [0.0,0.0176470588235293,1.0], + [0.0,0.03333333333333333,1.0], + [0.0,0.049019607843137254,1.0], + [0.0,0.06470588235294118,1.0], + [0.0,0.08039215686274499,1.0], + [0.0,0.09607843137254903,1.0], + [0.0,0.11176470588235295,1.0], + [0.0,0.12745098039215685,1.0], + [0.0,0.14313725490196066,1.0], + [0.0,0.1588235294117647,1.0], + [0.0,0.17450980392156862,1.0], + [0.0,0.19019607843137254,1.0], + [0.0,0.20588235294117635,1.0], + [0.0,0.22156862745098038,1.0], + [0.0,0.2372549019607843,1.0], + [0.0,0.2529411764705882,1.0], + [0.0,0.26862745098039204,1.0], + [0.0,0.28431372549019607,1.0], + [0.0,0.3,1.0], + [0.0,0.3156862745098039,1.0], + [0.0,0.3313725490196077,1.0], + [0.0,0.34705882352941175,1.0], + [0.0,0.3627450980392157,1.0], + [0.0,0.3784313725490196,1.0], + [0.0,0.3941176470588234,1.0], + [0.0,0.40980392156862744,1.0], + [0.0,0.42549019607843136,1.0], + [0.0,0.4411764705882353,1.0], + [0.0,0.4568627450980391,1.0], + [0.0,0.4725490196078431,1.0], + [0.0,0.48823529411764705,1.0], + [0.0,0.503921568627451,1.0], + [0.0,0.5196078431372549,1.0], + [0.0,0.5352941176470586,1.0], + [0.0,0.5509803921568628,1.0], + [0.0,0.5666666666666667,1.0], + [0.0,0.5823529411764706,1.0], + [0.0,0.5980392156862745,1.0], + [0.0,0.6137254901960785,1.0], + [0.0,0.6294117647058823,1.0], + [0.0,0.6450980392156863,1.0], + [0.0,0.66078431372549,1.0], + [0.0,0.6764705882352942,1.0], + [0.0,0.692156862745098,1.0], + [0.0,0.707843137254902,1.0], + [0.0,0.7235294117647059,1.0], + [0.0,0.7392156862745098,1.0], + [0.0,0.7549019607843137,1.0], + [0.0,0.7705882352941177,1.0], + [0.0,0.7862745098039213,1.0], + [0.0,0.8019607843137255,1.0], + [0.0,0.8176470588235294,1.0], + [0.0,0.8333333333333334,1.0], + [0.0,0.8490196078431372,1.0], + [0.0,0.8647058823529412,0.9962049335863378], + [0.0,0.8803921568627451,0.9835547122074637], + [0.0,0.8960784313725491,0.9709044908285895], + [0.009487666034155417,0.9117647058823527,0.9582542694497156], + [0.022137887413029723,0.9274509803921569,0.9456040480708413], + [0.03478810879190385,0.9431372549019608,0.9329538266919671], + [0.04743833017077798,0.9588235294117647,0.920303605313093], + [0.06008855154965211,0.9745098039215686,0.9076533839342189], + [0.07273877292852624,0.9901960784313726,0.8950031625553447], + [0.08538899430740036,1.0,0.8823529411764706], + [0.0980392156862745,1.0,0.8697027197975965], + [0.11068943706514844,1.0,0.8570524984187226], + [0.12333965844402275,1.0,0.8444022770398483], + [0.13598987982289687,1.0,0.8317520556609741], + [0.148640101201771,1.0,0.8191018342820999], + [0.16129032258064513,1.0,0.8064516129032259], + [0.17394054395951927,1.0,0.7938013915243517], + [0.1865907653383934,1.0,0.7811511701454776], + [0.19924098671726753,1.0,0.7685009487666035], + [0.21189120809614148,1.0,0.7558507273877295], + [0.2245414294750158,1.0,0.7432005060088551], + [0.2371916508538899,1.0,0.7305502846299811], + [0.24984187223276405,1.0,0.717900063251107], + [0.26249209361163817,1.0,0.7052498418722328], + [0.2751423149905123,1.0,0.6925996204933587], + [0.2877925363693864,1.0,0.6799493991144845], + [0.30044275774826057,1.0,0.6672991777356103], + [0.3130929791271345,1.0,0.6546489563567364], + [0.3257432005060088,1.0,0.6419987349778622], + [0.3383934218848829,1.0,0.629348513598988], + [0.3510436432637571,1.0,0.6166982922201139], + [0.3636938646426312,1.0,0.6040480708412397], + [0.3763440860215053,1.0,0.5913978494623656], + [0.38899430740037944,1.0,0.5787476280834916], + [0.4016445287792536,1.0,0.5660974067046174], + [0.4142947501581275,1.0,0.5534471853257434], + [0.42694497153700184,1.0,0.540796963946869], + [0.43959519291587595,1.0,0.5281467425679949], + [0.45224541429475007,1.0,0.5154965211891208], + [0.46489563567362424,1.0,0.5028462998102468], + [0.47754585705249836,1.0,0.4901960784313726], + [0.4901960784313725,1.0,0.4775458570524984], + [0.5028462998102466,1.0,0.46489563567362435], + [0.5154965211891207,1.0,0.4522454142947502], + [0.5281467425679949,1.0,0.439595192915876], + [0.5407969639468686,1.0,0.4269449715370023], + [0.5534471853257431,1.0,0.4142947501581278], + [0.5660974067046173,1.0,0.4016445287792536], + [0.5787476280834913,1.0,0.38899430740037955], + [0.5913978494623655,1.0,0.3763440860215054], + [0.6040480708412397,1.0,0.3636938646426312], + [0.6166982922201137,1.0,0.35104364326375714], + [0.6293485135989879,1.0,0.338393421884883], + [0.641998734977862,1.0,0.3257432005060089], + [0.6546489563567361,1.0,0.31309297912713474], + [0.6672991777356103,1.0,0.30044275774826057], + [0.6799493991144844,1.0,0.2877925363693865], + [0.6925996204933585,1.0,0.27514231499051234], + [0.7052498418722326,1.0,0.26249209361163817], + [0.7179000632511068,1.0,0.2498418722327641], + [0.730550284629981,1.0,0.23719165085388993], + [0.7432005060088547,1.0,0.2245414294750162], + [0.7558507273877292,1.0,0.2118912080961417], + [0.7685009487666034,1.0,0.19924098671726753], + [0.7811511701454774,1.0,0.18659076533839347], + [0.7938013915243516,1.0,0.1739405439595193], + [0.8064516129032256,1.0,0.16129032258064513], + [0.8191018342820998,1.0,0.14864010120177107], + [0.831752055660974,1.0,0.1359898798228969], + [0.844402277039848,1.0,0.12333965844402273], + [0.8570524984187222,1.0,0.11068943706514867], + [0.8697027197975963,1.0,0.0980392156862745], + [0.8823529411764705,1.0,0.08538899430740043], + [0.8950031625553446,1.0,0.07273877292852626], + [0.9076533839342187,1.0,0.06008855154965209], + [0.9203036053130929,1.0,0.04743833017077803], + [0.932953826691967,1.0,0.03478810879190386], + [0.9456040480708408,0.9883805374001459,0.022137887413030133], + [0.9582542694497153,0.973856209150327,0.009487666034155628], + [0.9709044908285893,0.9593318809005086,0.0], + [0.9835547122074635,0.9448075526506902,0.0], + [0.9962049335863377,0.9302832244008717,0.0], + [1.0,0.9157588961510532,0.0], + [1.0,0.9012345679012348,0.0], + [1.0,0.8867102396514164,0.0], + [1.0,0.872185911401598,0.0], + [1.0,0.8576615831517794,0.0], + [1.0,0.843137254901961,0.0], + [1.0,0.8286129266521426,0.0], + [1.0,0.8140885984023241,0.0], + [1.0,0.7995642701525056,0.0], + [1.0,0.7850399419026872,0.0], + [1.0,0.7705156136528688,0.0], + [1.0,0.7559912854030507,0.0], + [1.0,0.741466957153232,0.0], + [1.0,0.7269426289034134,0.0], + [1.0,0.712418300653595,0.0], + [1.0,0.6978939724037765,0.0], + [1.0,0.6833696441539581,0.0], + [1.0,0.6688453159041396,0.0], + [1.0,0.6543209876543212,0.0], + [1.0,0.6397966594045028,0.0], + [1.0,0.6252723311546844,0.0], + [1.0,0.6107480029048659,0.0], + [1.0,0.5962236746550474,0.0], + [1.0,0.5816993464052289,0.0], + [1.0,0.5671750181554105,0.0], + [1.0,0.5526506899055921,0.0], + [1.0,0.5381263616557737,0.0], + [1.0,0.5236020334059556,0.0], + [1.0,0.5090777051561368,0.0], + [1.0,0.4945533769063183,0.0], + [1.0,0.48002904865649987,0.0], + [1.0,0.46550472040668145,0.0], + [1.0,0.4509803921568629,0.0], + [1.0,0.4364560639070445,0.0], + [1.0,0.4219317356572261,0.0], + [1.0,0.40740740740740755,0.0], + [1.0,0.39288307915758913,0.0], + [1.0,0.3783587509077707,0.0], + [1.0,0.3638344226579523,0.0], + [1.0,0.34931009440813376,0.0], + [1.0,0.33478576615831535,0.0], + [1.0,0.3202614379084969,0.0], + [1.0,0.3057371096586785,0.0], + [1.0,0.2912127814088604,0.0], + [1.0,0.27668845315904156,0.0], + [1.0,0.26216412490922314,0.0], + [1.0,0.24763979665940472,0.0], + [1.0,0.2331154684095862,0.0], + [1.0,0.21859114015976777,0.0], + [1.0,0.20406681190994935,0.0], + [1.0,0.18954248366013093,0.0], + [1.0,0.1750181554103124,0.0], + [1.0,0.16049382716049398,0.0], + [1.0,0.14596949891067557,0.0], + [1.0,0.13144517066085715,0.0], + [1.0,0.11692084241103862,0.0], + [1.0,0.1023965141612202,0.0], + [1.0,0.08787218591140178,0.0], + [0.9991087344028523,0.07334785766158336,0.0], + [0.9812834224598939,0.058823529411765274,0.0], + [0.9634581105169343,0.04429920116194641,0.0], + [0.9456327985739753,0.029774872912127992,0.0], + [0.9278074866310163,0.015250544662309573,0.0], + [0.9099821746880573,0.0007262164124910431,0.0], + [0.8921568627450983,0.0,0.0], + [0.8743315508021392,0.0,0.0], + [0.8565062388591802,0.0,0.0], + [0.8386809269162212,0.0,0.0], + [0.8208556149732622,0.0,0.0], + [0.8030303030303032,0.0,0.0], + [0.7852049910873442,0.0,0.0], + [0.7673796791443852,0.0,0.0], + [0.7495543672014262,0.0,0.0], + [0.7317290552584672,0.0,0.0], + [0.7139037433155082,0.0,0.0], + [0.6960784313725497,0.0,0.0], + [0.6782531194295901,0.0,0.0], + [0.6604278074866311,0.0,0.0], + [0.6426024955436721,0.0,0.0], + [0.6247771836007131,0.0,0.0], + [0.606951871657754,0.0,0.0], + [0.589126559714795,0.0,0.0], + [0.571301247771836,0.0,0.0], + [0.553475935828877,0.0,0.0], + [0.535650623885918,0.0,0.0], + [0.517825311942959,0.0,0.0], + [0.5,0.0,0.0] ], + jet_r: [ + [0.5,0.0,0.0], + [0.517825311942959,0.0,0.0], + [0.535650623885918,0.0,0.0], + [0.553475935828877,0.0,0.0], + [0.571301247771836,0.0,0.0], + [0.589126559714795,0.0,0.0], + [0.606951871657754,0.0,0.0], + [0.624777183600713,0.0,0.0], + [0.642602495543672,0.0,0.0], + [0.660427807486631,0.0,0.0], + [0.67825311942959,0.0,0.0], + [0.696078431372549,0.0,0.0], + [0.713903743315508,0.0,0.0], + [0.731729055258467,0.0,0.0], + [0.749554367201426,0.0,0.0], + [0.767379679144385,0.0,0.0], + [0.785204991087344,0.0,0.0], + [0.803030303030303,0.0,0.0], + [0.820855614973262,0.0,0.0], + [0.8386809269162211,0.0,0.0], + [0.8565062388591801,0.0,0.0], + [0.8743315508021391,0.0,0.0], + [0.8921568627450981,0.0,0.0], + [0.9099821746880571,0.0007262164124910357,0.0], + [0.9278074866310161,0.01525054466230948,0.0], + [0.9456327985739751,0.029774872912127923,0.0], + [0.9634581105169341,0.04429920116194637,0.0], + [0.9812834224598931,0.05882352941176481,0.0], + [0.9991087344028521,0.07334785766158326,0.0], + [1.0,0.0878721859114017,0.0], + [1.0,0.10239651416122014,0.0], + [1.0,0.11692084241103859,0.0], + [1.0,0.13144517066085704,0.0], + [1.0,0.14596949891067537,0.0], + [1.0,0.16049382716049393,0.0], + [1.0,0.17501815541031238,0.0], + [1.0,0.18954248366013082,0.0], + [1.0,0.20406681190994916,0.0], + [1.0,0.2185911401597677,0.0], + [1.0,0.23311546840958614,0.0], + [1.0,0.24763979665940458,0.0], + [1.0,0.2621641249092229,0.0], + [1.0,0.27668845315904145,0.0], + [1.0,0.2912127814088599,0.0], + [1.0,0.30573710965867834,0.0], + [1.0,0.3202614379084967,0.0], + [1.0,0.33478576615831523,0.0], + [1.0,0.3493100944081337,0.0], + [1.0,0.36383442265795213,0.0], + [1.0,0.3783587509077705,0.0], + [1.0,0.392883079157589,0.0], + [1.0,0.4074074074074075,0.0], + [1.0,0.4219317356572259,0.0], + [1.0,0.4364560639070443,0.0], + [1.0,0.4509803921568628,0.0], + [1.0,0.4655047204066813,0.0], + [1.0,0.48002904865649976,0.0], + [1.0,0.49455337690631795,0.0], + [1.0,0.5090777051561366,0.0], + [1.0,0.5236020334059551,0.0], + [1.0,0.5381263616557735,0.0], + [1.0,0.5526506899055917,0.0], + [1.0,0.5671750181554104,0.0], + [1.0,0.5816993464052288,0.0], + [1.0,0.5962236746550473,0.0], + [1.0,0.6107480029048657,0.0], + [1.0,0.625272331154684,0.0], + [1.0,0.6397966594045026,0.0], + [1.0,0.6543209876543211,0.0], + [1.0,0.6688453159041395,0.0], + [1.0,0.683369644153958,0.0], + [1.0,0.6978939724037764,0.0], + [1.0,0.7124183006535948,0.0], + [1.0,0.7269426289034133,0.0], + [1.0,0.7414669571532315,0.0], + [1.0,0.7559912854030502,0.0], + [1.0,0.7705156136528686,0.0], + [1.0,0.7850399419026871,0.0], + [1.0,0.7995642701525055,0.0], + [1.0,0.814088598402324,0.0], + [1.0,0.8286129266521424,0.0], + [1.0,0.8431372549019609,0.0], + [1.0,0.8576615831517791,0.0], + [1.0,0.8721859114015977,0.0], + [1.0,0.8867102396514162,0.0], + [1.0,0.9012345679012346,0.0], + [1.0,0.9157588961510531,0.0], + [0.9962049335863377,0.9302832244008715,0.0], + [0.9835547122074635,0.9448075526506899,0.0], + [0.9709044908285893,0.9593318809005084,0.0], + [0.9582542694497154,0.9738562091503267,0.00948766603415542], + [0.9456040480708411,0.9883805374001453,0.022137887413029734], + [0.932953826691967,1.0,0.03478810879190387], + [0.9203036053130929,1.0,0.047438330170778], + [0.9076533839342187,1.0,0.06008855154965213], + [0.8950031625553446,1.0,0.07273877292852626], + [0.8823529411764705,1.0,0.08538899430740039], + [0.8697027197975964,1.0,0.09803921568627454], + [0.8570524984187224,1.0,0.11068943706514849], + [0.844402277039848,1.0,0.1233396584440228], + [0.831752055660974,1.0,0.13598987982289693], + [0.8191018342820998,1.0,0.14864010120177107], + [0.8064516129032258,1.0,0.16129032258064518], + [0.7938013915243516,1.0,0.17394054395951933], + [0.7811511701454774,1.0,0.18659076533839347], + [0.7685009487666032,1.0,0.1992409867172676], + [0.7558507273877293,1.0,0.21189120809614154], + [0.7432005060088551,1.0,0.22454142947501587], + [0.730550284629981,1.0,0.23719165085389], + [0.7179000632511068,1.0,0.24984187223276413], + [0.7052498418722326,1.0,0.2624920936116383], + [0.6925996204933585,1.0,0.2751423149905124], + [0.6799493991144845,1.0,0.2877925363693865], + [0.6672991777356103,1.0,0.3004427577482607], + [0.6546489563567364,1.0,0.31309297912713463], + [0.641998734977862,1.0,0.3257432005060089], + [0.6293485135989879,1.0,0.3383934218848831], + [0.6166982922201137,1.0,0.3510436432637572], + [0.6040480708412397,1.0,0.3636938646426313], + [0.5913978494623655,1.0,0.37634408602150543], + [0.5787476280834913,1.0,0.3889943074003796], + [0.5660974067046172,1.0,0.4016445287792537], + [0.5534471853257432,1.0,0.41429475015812767], + [0.540796963946869,1.0,0.426944971537002], + [0.5281467425679949,1.0,0.4395951929158761], + [0.5154965211891207,1.0,0.45224541429475024], + [0.5028462998102465,1.0,0.4648956356736244], + [0.4901960784313725,1.0,0.4775458570524985], + [0.4775458570524983,1.0,0.49019607843137264], + [0.46489563567362424,1.0,0.5028462998102468], + [0.45224541429475007,1.0,0.5154965211891209], + [0.439595192915876,1.0,0.5281467425679951], + [0.42694497153700217,1.0,0.5407969639468688], + [0.41429475015812767,1.0,0.5534471853257433], + [0.4016445287792536,1.0,0.5660974067046175], + [0.38899430740037944,1.0,0.5787476280834916], + [0.3763440860215054,1.0,0.5913978494623657], + [0.3636938646426312,1.0,0.6040480708412399], + [0.35104364326375703,1.0,0.616698292220114], + [0.338393421884883,1.0,0.6293485135989881], + [0.3257432005060088,1.0,0.6419987349778623], + [0.31309297912713463,1.0,0.6546489563567364], + [0.30044275774826057,1.0,0.6672991777356105], + [0.2877925363693864,1.0,0.6799493991144846], + [0.27514231499051234,1.0,0.6925996204933588], + [0.26249209361163817,1.0,0.7052498418722329], + [0.249841872232764,1.0,0.717900063251107], + [0.23719165085388993,1.0,0.7305502846299812], + [0.2245414294750161,1.0,0.743200506008855], + [0.2118912080961417,1.0,0.7558507273877294], + [0.19924098671726753,1.0,0.7685009487666036], + [0.18659076533839336,1.0,0.7811511701454777], + [0.1739405439595193,1.0,0.7938013915243518], + [0.16129032258064513,1.0,0.806451612903226], + [0.14864010120177096,1.0,0.8191018342821001], + [0.1359898798228969,1.0,0.8317520556609742], + [0.12333965844402273,1.0,0.8444022770398484], + [0.11068943706514867,1.0,0.8570524984187226], + [0.0980392156862745,1.0,0.8697027197975966], + [0.08538899430740032,1.0,0.8823529411764708], + [0.07273877292852626,0.9901960784313726,0.895003162555345], + [0.06008855154965209,0.9745098039215686,0.907653383934219], + [0.04743833017077803,0.9588235294117647,0.9203036053130932], + [0.03478810879190386,0.9431372549019608,0.9329538266919674], + [0.022137887413030133,0.9274509803921573,0.9456040480708411], + [0.009487666034155628,0.9117647058823529,0.9582542694497156], + [0.0,0.8960784313725491,0.9709044908285898], + [0.0,0.8803921568627451,0.9835547122074638], + [0.0,0.8647058823529412,0.996204933586338], + [0.0,0.8490196078431372,1.0], + [0.0,0.8333333333333334,1.0], + [0.0,0.8176470588235294,1.0], + [0.0,0.8019607843137255,1.0], + [0.0,0.7862745098039216,1.0], + [0.0,0.7705882352941177,1.0], + [0.0,0.7549019607843137,1.0], + [0.0,0.7392156862745098,1.0], + [0.0,0.7235294117647059,1.0], + [0.0,0.7078431372549019,1.0], + [0.0,0.692156862745098,1.0], + [0.0,0.6764705882352946,1.0], + [0.0,0.6607843137254902,1.0], + [0.0,0.6450980392156862,1.0], + [0.0,0.6294117647058823,1.0], + [0.0,0.6137254901960785,1.0], + [0.0,0.5980392156862745,1.0], + [0.0,0.5823529411764705,1.0], + [0.0,0.5666666666666667,1.0], + [0.0,0.5509803921568628,1.0], + [0.0,0.5352941176470588,1.0], + [0.0,0.5196078431372548,1.0], + [0.0,0.503921568627451,1.0], + [0.0,0.4882352941176471,1.0], + [0.0,0.4725490196078431,1.0], + [0.0,0.45686274509803926,1.0], + [0.0,0.4411764705882353,1.0], + [0.0,0.42549019607843186,1.0], + [0.0,0.40980392156862744,1.0], + [0.0,0.3941176470588236,1.0], + [0.0,0.3784313725490196,1.0], + [0.0,0.36274509803921573,1.0], + [0.0,0.34705882352941175,1.0], + [0.0,0.3313725490196079,1.0], + [0.0,0.3156862745098039,1.0], + [0.0,0.30000000000000004,1.0], + [0.0,0.28431372549019607,1.0], + [0.0,0.2686274509803922,1.0], + [0.0,0.2529411764705882,1.0], + [0.0,0.23725490196078436,1.0], + [0.0,0.22156862745098038,1.0], + [0.0,0.20588235294117652,1.0], + [0.0,0.19019607843137254,1.0], + [0.0,0.17450980392156912,1.0], + [0.0,0.1588235294117647,1.0], + [0.0,0.14313725490196083,1.0], + [0.0,0.12745098039215685,1.0], + [0.0,0.11176470588235299,1.0], + [0.0,0.09607843137254901,1.0], + [0.0,0.08039215686274515,1.0], + [0.0,0.06470588235294117,1.0], + [0.0,0.0490196078431373,1.0], + [0.0,0.033333333333333326,1.0], + [0.0,0.01764705882352946,1.0], + [0.0,0.0019607843137254832,1.0], + [0.0,0.0,1.0], + [0.0,0.0,1.0], + [0.0,0.0,1.0], + [0.0,0.0,0.9991087344028523], + [0.0,0.0,0.9812834224598939], + [0.0,0.0,0.9634581105169343], + [0.0,0.0,0.9456327985739753], + [0.0,0.0,0.9278074866310163], + [0.0,0.0,0.9099821746880573], + [0.0,0.0,0.8921568627450983], + [0.0,0.0,0.8743315508021392], + [0.0,0.0,0.8565062388591802], + [0.0,0.0,0.8386809269162212], + [0.0,0.0,0.8208556149732622], + [0.0,0.0,0.8030303030303032], + [0.0,0.0,0.7852049910873442], + [0.0,0.0,0.7673796791443852], + [0.0,0.0,0.7495543672014262], + [0.0,0.0,0.7317290552584672], + [0.0,0.0,0.7139037433155082], + [0.0,0.0,0.6960784313725497], + [0.0,0.0,0.6782531194295901], + [0.0,0.0,0.6604278074866311], + [0.0,0.0,0.6426024955436721], + [0.0,0.0,0.6247771836007131], + [0.0,0.0,0.606951871657754], + [0.0,0.0,0.589126559714795], + [0.0,0.0,0.571301247771836], + [0.0,0.0,0.553475935828877], + [0.0,0.0,0.535650623885918], + [0.0,0.0,0.517825311942959], + [0.0,0.0,0.5] ], + magma: [ + [0.001462,0.000466,0.013866], + [0.002258,0.001295,0.018331], + [0.003279,0.002305,0.023708], + [0.004512,0.00349,0.029965], + [0.00595,0.004843,0.03713], + [0.007588,0.006356,0.044973], + [0.009426,0.008022,0.052844], + [0.011465,0.009828,0.06075], + [0.013708,0.011771,0.068667], + [0.016156,0.01384,0.076603], + [0.018815,0.016026,0.084584], + [0.021692,0.01832,0.09261], + [0.024792,0.020715,0.100676], + [0.028123,0.023201,0.108787], + [0.031696,0.025765,0.116965], + [0.03552,0.028397,0.125209], + [0.039608,0.03109,0.133515], + [0.04383,0.03383,0.141886], + [0.048062,0.036607,0.150327], + [0.05232,0.039407,0.158841], + [0.056615,0.04216,0.167446], + [0.060949,0.044794,0.176129], + [0.06533,0.047318,0.184892], + [0.069764,0.049726,0.193735], + [0.074257,0.052017,0.20266], + [0.078815,0.054184,0.211667], + [0.083446,0.056225,0.220755], + [0.088155,0.058133,0.229922], + [0.092949,0.059904,0.239164], + [0.097833,0.061531,0.248477], + [0.102815,0.06301,0.257854], + [0.107899,0.064335,0.267289], + [0.113094,0.065492,0.276784], + [0.118405,0.066479,0.286321], + [0.123833,0.067295,0.295879], + [0.12938,0.067935,0.305443], + [0.135053,0.068391,0.315], + [0.140858,0.068654,0.324538], + [0.146785,0.068738,0.334011], + [0.152839,0.068637,0.343404], + [0.159018,0.068354,0.352688], + [0.165308,0.067911,0.361816], + [0.171713,0.067305,0.370771], + [0.178212,0.066576,0.379497], + [0.184801,0.065732,0.387973], + [0.19146,0.064818,0.396152], + [0.198177,0.063862,0.404009], + [0.204935,0.062907,0.411514], + [0.211718,0.061992,0.418647], + [0.218512,0.061158,0.425392], + [0.225302,0.060445,0.431742], + [0.232077,0.059889,0.437695], + [0.238826,0.059517,0.443256], + [0.245543,0.059352,0.448436], + [0.25222,0.059415,0.453248], + [0.258857,0.059706,0.45771], + [0.265447,0.060237,0.46184], + [0.271994,0.060994,0.46566], + [0.278493,0.061978,0.46919], + [0.284951,0.063168,0.472451], + [0.291366,0.064553,0.475462], + [0.29774,0.066117,0.478243], + [0.304081,0.067835,0.480812], + [0.310382,0.069702,0.483186], + [0.316654,0.07169,0.48538], + [0.322899,0.073782,0.487408], + [0.329114,0.075972,0.489287], + [0.335308,0.078236,0.491024], + [0.341482,0.080564,0.492631], + [0.347636,0.082946,0.494121], + [0.353773,0.085373,0.495501], + [0.359898,0.087831,0.496778], + [0.366012,0.090314,0.49796], + [0.372116,0.092816,0.499053], + [0.378211,0.095332,0.500067], + [0.384299,0.097855,0.501002], + [0.390384,0.100379,0.501864], + [0.396467,0.102902,0.502658], + [0.402548,0.10542,0.503386], + [0.408629,0.10793,0.504052], + [0.414709,0.110431,0.504662], + [0.420791,0.11292,0.505215], + [0.426877,0.115395,0.505714], + [0.432967,0.117855,0.50616], + [0.439062,0.120298,0.506555], + [0.445163,0.122724,0.506901], + [0.451271,0.125132,0.507198], + [0.457386,0.127522,0.507448], + [0.463508,0.129893,0.507652], + [0.46964,0.132245,0.507809], + [0.47578,0.134577,0.507921], + [0.481929,0.136891,0.507989], + [0.488088,0.139186,0.508011], + [0.494258,0.141462,0.507988], + [0.500438,0.143719,0.50792], + [0.506629,0.145958,0.507806], + [0.512831,0.148179,0.507648], + [0.519045,0.150383,0.507443], + [0.52527,0.152569,0.507192], + [0.531507,0.154739,0.506895], + [0.537755,0.156894,0.506551], + [0.544015,0.159033,0.506159], + [0.550287,0.161158,0.505719], + [0.556571,0.163269,0.50523], + [0.562866,0.165368,0.504692], + [0.569172,0.167454,0.504105], + [0.57549,0.16953,0.503466], + [0.581819,0.171596,0.502777], + [0.588158,0.173652,0.502035], + [0.594508,0.175701,0.501241], + [0.600868,0.177743,0.500394], + [0.607238,0.179779,0.499492], + [0.613617,0.181811,0.498536], + [0.620005,0.18384,0.497524], + [0.626401,0.185867,0.496456], + [0.632805,0.187893,0.495332], + [0.639216,0.189921,0.49415], + [0.645633,0.191952,0.49291], + [0.652056,0.193986,0.491611], + [0.658483,0.196027,0.490253], + [0.664915,0.198075,0.488836], + [0.671349,0.200133,0.487358], + [0.677786,0.202203,0.485819], + [0.684224,0.204286,0.484219], + [0.690661,0.206384,0.482558], + [0.697098,0.208501,0.480835], + [0.703532,0.210638,0.479049], + [0.709962,0.212797,0.477201], + [0.716387,0.214982,0.47529], + [0.722805,0.217194,0.473316], + [0.729216,0.219437,0.471279], + [0.735616,0.221713,0.46918], + [0.742004,0.224025,0.467018], + [0.748378,0.226377,0.464794], + [0.754737,0.228772,0.462509], + [0.761077,0.231214,0.460162], + [0.767398,0.233705,0.457755], + [0.773695,0.236249,0.455289], + [0.779968,0.238851,0.452765], + [0.786212,0.241514,0.450184], + [0.792427,0.244242,0.447543], + [0.798608,0.24704,0.444848], + [0.804752,0.249911,0.442102], + [0.810855,0.252861,0.439305], + [0.816914,0.255895,0.436461], + [0.822926,0.259016,0.433573], + [0.828886,0.262229,0.430644], + [0.834791,0.26554,0.427671], + [0.840636,0.268953,0.424666], + [0.846416,0.272473,0.421631], + [0.852126,0.276106,0.418573], + [0.857763,0.279857,0.415496], + [0.86332,0.283729,0.412403], + [0.868793,0.287728,0.409303], + [0.874176,0.291859,0.406205], + [0.879464,0.296125,0.403118], + [0.884651,0.30053,0.400047], + [0.889731,0.305079,0.397002], + [0.8947,0.309773,0.393995], + [0.899552,0.314616,0.391037], + [0.904281,0.31961,0.388137], + [0.908884,0.324755,0.385308], + [0.913354,0.330052,0.382563], + [0.917689,0.3355,0.379915], + [0.921884,0.341098,0.377376], + [0.925937,0.346844,0.374959], + [0.929845,0.352734,0.372677], + [0.933606,0.358764,0.370541], + [0.937221,0.364929,0.368567], + [0.940687,0.371224,0.366762], + [0.944006,0.377643,0.365136], + [0.94718,0.384178,0.363701], + [0.95021,0.39082,0.362468], + [0.953099,0.397563,0.361438], + [0.955849,0.4044,0.360619], + [0.958464,0.411324,0.360014], + [0.960949,0.418323,0.35963], + [0.96331,0.42539,0.359469], + [0.965549,0.432519,0.359529], + [0.967671,0.439703,0.35981], + [0.96968,0.446936,0.360311], + [0.971582,0.45421,0.36103], + [0.973381,0.46152,0.361965], + [0.975082,0.468861,0.363111], + [0.97669,0.476226,0.364466], + [0.97821,0.483612,0.366025], + [0.979645,0.491014,0.367783], + [0.981,0.498428,0.369734], + [0.982279,0.505851,0.371874], + [0.983485,0.51328,0.374198], + [0.984622,0.520713,0.376698], + [0.985693,0.528148,0.379371], + [0.9867,0.535582,0.38221], + [0.987646,0.543015,0.38521], + [0.988533,0.550446,0.388365], + [0.989363,0.557873,0.391671], + [0.990138,0.565296,0.395122], + [0.990871,0.572706,0.398714], + [0.991558,0.580107,0.402441], + [0.992196,0.587502,0.406299], + [0.992785,0.594891,0.410283], + [0.993326,0.602275,0.41439], + [0.993834,0.609644,0.418613], + [0.994309,0.616999,0.42295], + [0.994738,0.62435,0.427397], + [0.995122,0.631696,0.431951], + [0.99548,0.639027,0.436607], + [0.99581,0.646344,0.441361], + [0.996096,0.653659,0.446213], + [0.996341,0.660969,0.45116], + [0.99658,0.668256,0.456192], + [0.996775,0.675541,0.461314], + [0.996925,0.682828,0.466526], + [0.997077,0.690088,0.471811], + [0.997186,0.697349,0.477182], + [0.997254,0.704611,0.482635], + [0.997325,0.711848,0.488154], + [0.997351,0.719089,0.493755], + [0.997351,0.726324,0.499428], + [0.997341,0.733545,0.505167], + [0.997285,0.740772,0.510983], + [0.997228,0.747981,0.516859], + [0.997138,0.75519,0.522806], + [0.997019,0.762398,0.528821], + [0.996898,0.769591,0.534892], + [0.996727,0.776795,0.541039], + [0.996571,0.783977,0.547233], + [0.996369,0.791167,0.553499], + [0.996162,0.798348,0.55982], + [0.995932,0.805527,0.566202], + [0.99568,0.812706,0.572645], + [0.995424,0.819875,0.57914], + [0.995131,0.827052,0.585701], + [0.994851,0.834213,0.592307], + [0.994524,0.841387,0.598983], + [0.994222,0.84854,0.605696], + [0.993866,0.855711,0.612482], + [0.993545,0.862859,0.619299], + [0.99317,0.870024,0.626189], + [0.992831,0.877168,0.633109], + [0.99244,0.88433,0.640099], + [0.992089,0.89147,0.647116], + [0.991688,0.898627,0.654202], + [0.991332,0.905763,0.661309], + [0.99093,0.912915,0.668481], + [0.99057,0.920049,0.675675], + [0.990175,0.927196,0.682926], + [0.989815,0.934329,0.690198], + [0.989434,0.94147,0.697519], + [0.989077,0.948604,0.704863], + [0.988717,0.955742,0.712242], + [0.988367,0.962878,0.719649], + [0.988033,0.970012,0.727077], + [0.987691,0.977154,0.734536], + [0.987387,0.984288,0.742002], + [0.987053,0.991438,0.749504] ], + magma_r: [ + [0.987053,0.991438,0.749504], + [0.987387,0.984288,0.742002], + [0.987691,0.977154,0.734536], + [0.988033,0.970012,0.727077], + [0.988367,0.962878,0.719649], + [0.988717,0.955742,0.712242], + [0.989077,0.948604,0.704863], + [0.989434,0.94147,0.697519], + [0.989815,0.934329,0.690198], + [0.990175,0.927196,0.682926], + [0.99057,0.920049,0.675675], + [0.99093,0.912915,0.668481], + [0.991332,0.905763,0.661309], + [0.991688,0.898627,0.654202], + [0.992089,0.89147,0.647116], + [0.99244,0.88433,0.640099], + [0.992831,0.877168,0.633109], + [0.99317,0.870024,0.626189], + [0.993545,0.862859,0.619299], + [0.993866,0.855711,0.612482], + [0.994222,0.84854,0.605696], + [0.994524,0.841387,0.598983], + [0.994851,0.834213,0.592307], + [0.995131,0.827052,0.585701], + [0.995424,0.819875,0.57914], + [0.99568,0.812706,0.572645], + [0.995932,0.805527,0.566202], + [0.996162,0.798348,0.55982], + [0.996369,0.791167,0.553499], + [0.996571,0.783977,0.547233], + [0.996727,0.776795,0.541039], + [0.996898,0.769591,0.534892], + [0.997019,0.762398,0.528821], + [0.997138,0.75519,0.522806], + [0.997228,0.747981,0.516859], + [0.997285,0.740772,0.510983], + [0.997341,0.733545,0.505167], + [0.997351,0.726324,0.499428], + [0.997351,0.719089,0.493755], + [0.997325,0.711848,0.488154], + [0.997254,0.704611,0.482635], + [0.997186,0.697349,0.477182], + [0.997077,0.690088,0.471811], + [0.996925,0.682828,0.466526], + [0.996775,0.675541,0.461314], + [0.99658,0.668256,0.456192], + [0.996341,0.660969,0.45116], + [0.996096,0.653659,0.446213], + [0.99581,0.646344,0.441361], + [0.99548,0.639027,0.436607], + [0.995122,0.631696,0.431951], + [0.994738,0.62435,0.427397], + [0.994309,0.616999,0.42295], + [0.993834,0.609644,0.418613], + [0.993326,0.602275,0.41439], + [0.992785,0.594891,0.410283], + [0.992196,0.587502,0.406299], + [0.991558,0.580107,0.402441], + [0.990871,0.572706,0.398714], + [0.990138,0.565296,0.395122], + [0.989363,0.557873,0.391671], + [0.988533,0.550446,0.388365], + [0.987646,0.543015,0.38521], + [0.9867,0.535582,0.38221], + [0.985693,0.528148,0.379371], + [0.984622,0.520713,0.376698], + [0.983485,0.51328,0.374198], + [0.982279,0.505851,0.371874], + [0.981,0.498428,0.369734], + [0.979645,0.491014,0.367783], + [0.97821,0.483612,0.366025], + [0.97669,0.476226,0.364466], + [0.975082,0.468861,0.363111], + [0.973381,0.46152,0.361965], + [0.971582,0.45421,0.36103], + [0.96968,0.446936,0.360311], + [0.967671,0.439703,0.35981], + [0.965549,0.432519,0.359529], + [0.96331,0.42539,0.359469], + [0.960949,0.418323,0.35963], + [0.958464,0.411324,0.360014], + [0.955849,0.4044,0.360619], + [0.953099,0.397563,0.361438], + [0.95021,0.39082,0.362468], + [0.94718,0.384178,0.363701], + [0.944006,0.377643,0.365136], + [0.940687,0.371224,0.366762], + [0.937221,0.364929,0.368567], + [0.933606,0.358764,0.370541], + [0.929845,0.352734,0.372677], + [0.925937,0.346844,0.374959], + [0.921884,0.341098,0.377376], + [0.917689,0.3355,0.379915], + [0.913354,0.330052,0.382563], + [0.908884,0.324755,0.385308], + [0.904281,0.31961,0.388137], + [0.899552,0.314616,0.391037], + [0.8947,0.309773,0.393995], + [0.889731,0.305079,0.397002], + [0.884651,0.30053,0.400047], + [0.879464,0.296125,0.403118], + [0.874176,0.291859,0.406205], + [0.868793,0.287728,0.409303], + [0.86332,0.283729,0.412403], + [0.857763,0.279857,0.415496], + [0.852126,0.276106,0.418573], + [0.846416,0.272473,0.421631], + [0.840636,0.268953,0.424666], + [0.834791,0.26554,0.427671], + [0.828886,0.262229,0.430644], + [0.822926,0.259016,0.433573], + [0.816914,0.255895,0.436461], + [0.810855,0.252861,0.439305], + [0.804752,0.249911,0.442102], + [0.798608,0.24704,0.444848], + [0.792427,0.244242,0.447543], + [0.786212,0.241514,0.450184], + [0.779968,0.238851,0.452765], + [0.773695,0.236249,0.455289], + [0.767398,0.233705,0.457755], + [0.761077,0.231214,0.460162], + [0.754737,0.228772,0.462509], + [0.748378,0.226377,0.464794], + [0.742004,0.224025,0.467018], + [0.735616,0.221713,0.46918], + [0.729216,0.219437,0.471279], + [0.722805,0.217194,0.473316], + [0.716387,0.214982,0.47529], + [0.709962,0.212797,0.477201], + [0.703532,0.210638,0.479049], + [0.697098,0.208501,0.480835], + [0.690661,0.206384,0.482558], + [0.684224,0.204286,0.484219], + [0.677786,0.202203,0.485819], + [0.671349,0.200133,0.487358], + [0.664915,0.198075,0.488836], + [0.658483,0.196027,0.490253], + [0.652056,0.193986,0.491611], + [0.645633,0.191952,0.49291], + [0.639216,0.189921,0.49415], + [0.632805,0.187893,0.495332], + [0.626401,0.185867,0.496456], + [0.620005,0.18384,0.497524], + [0.613617,0.181811,0.498536], + [0.607238,0.179779,0.499492], + [0.600868,0.177743,0.500394], + [0.594508,0.175701,0.501241], + [0.588158,0.173652,0.502035], + [0.581819,0.171596,0.502777], + [0.57549,0.16953,0.503466], + [0.569172,0.167454,0.504105], + [0.562866,0.165368,0.504692], + [0.556571,0.163269,0.50523], + [0.550287,0.161158,0.505719], + [0.544015,0.159033,0.506159], + [0.537755,0.156894,0.506551], + [0.531507,0.154739,0.506895], + [0.52527,0.152569,0.507192], + [0.519045,0.150383,0.507443], + [0.512831,0.148179,0.507648], + [0.506629,0.145958,0.507806], + [0.500438,0.143719,0.50792], + [0.494258,0.141462,0.507988], + [0.488088,0.139186,0.508011], + [0.481929,0.136891,0.507989], + [0.47578,0.134577,0.507921], + [0.46964,0.132245,0.507809], + [0.463508,0.129893,0.507652], + [0.457386,0.127522,0.507448], + [0.451271,0.125132,0.507198], + [0.445163,0.122724,0.506901], + [0.439062,0.120298,0.506555], + [0.432967,0.117855,0.50616], + [0.426877,0.115395,0.505714], + [0.420791,0.11292,0.505215], + [0.414709,0.110431,0.504662], + [0.408629,0.10793,0.504052], + [0.402548,0.10542,0.503386], + [0.396467,0.102902,0.502658], + [0.390384,0.100379,0.501864], + [0.384299,0.097855,0.501002], + [0.378211,0.095332,0.500067], + [0.372116,0.092816,0.499053], + [0.366012,0.090314,0.49796], + [0.359898,0.087831,0.496778], + [0.353773,0.085373,0.495501], + [0.347636,0.082946,0.494121], + [0.341482,0.080564,0.492631], + [0.335308,0.078236,0.491024], + [0.329114,0.075972,0.489287], + [0.322899,0.073782,0.487408], + [0.316654,0.07169,0.48538], + [0.310382,0.069702,0.483186], + [0.304081,0.067835,0.480812], + [0.29774,0.066117,0.478243], + [0.291366,0.064553,0.475462], + [0.284951,0.063168,0.472451], + [0.278493,0.061978,0.46919], + [0.271994,0.060994,0.46566], + [0.265447,0.060237,0.46184], + [0.258857,0.059706,0.45771], + [0.25222,0.059415,0.453248], + [0.245543,0.059352,0.448436], + [0.238826,0.059517,0.443256], + [0.232077,0.059889,0.437695], + [0.225302,0.060445,0.431742], + [0.218512,0.061158,0.425392], + [0.211718,0.061992,0.418647], + [0.204935,0.062907,0.411514], + [0.198177,0.063862,0.404009], + [0.19146,0.064818,0.396152], + [0.184801,0.065732,0.387973], + [0.178212,0.066576,0.379497], + [0.171713,0.067305,0.370771], + [0.165308,0.067911,0.361816], + [0.159018,0.068354,0.352688], + [0.152839,0.068637,0.343404], + [0.146785,0.068738,0.334011], + [0.140858,0.068654,0.324538], + [0.135053,0.068391,0.315], + [0.12938,0.067935,0.305443], + [0.123833,0.067295,0.295879], + [0.118405,0.066479,0.286321], + [0.113094,0.065492,0.276784], + [0.107899,0.064335,0.267289], + [0.102815,0.06301,0.257854], + [0.097833,0.061531,0.248477], + [0.092949,0.059904,0.239164], + [0.088155,0.058133,0.229922], + [0.083446,0.056225,0.220755], + [0.078815,0.054184,0.211667], + [0.074257,0.052017,0.20266], + [0.069764,0.049726,0.193735], + [0.06533,0.047318,0.184892], + [0.060949,0.044794,0.176129], + [0.056615,0.04216,0.167446], + [0.05232,0.039407,0.158841], + [0.048062,0.036607,0.150327], + [0.04383,0.03383,0.141886], + [0.039608,0.03109,0.133515], + [0.03552,0.028397,0.125209], + [0.031696,0.025765,0.116965], + [0.028123,0.023201,0.108787], + [0.024792,0.020715,0.100676], + [0.021692,0.01832,0.09261], + [0.018815,0.016026,0.084584], + [0.016156,0.01384,0.076603], + [0.013708,0.011771,0.068667], + [0.011465,0.009828,0.06075], + [0.009426,0.008022,0.052844], + [0.007588,0.006356,0.044973], + [0.00595,0.004843,0.03713], + [0.004512,0.00349,0.029965], + [0.003279,0.002305,0.023708], + [0.002258,0.001295,0.018331], + [0.001462,0.000466,0.013866] ], + nipy_spectral: [ + [0.0,0.0,0.0], + [0.03660392156862745,0.0,0.04182745098039216], + [0.0732078431372549,0.0,0.08365490196078432], + [0.10981176470588236,0.0,0.12548235294117646], + [0.1464156862745098,0.0,0.16730980392156863], + [0.18301960784313726,0.0,0.20913725490196078], + [0.21962352941176472,0.0,0.2509647058823529], + [0.2562274509803922,0.0,0.2927921568627451], + [0.2928313725490196,0.0,0.33461960784313727], + [0.3294352941176471,0.0,0.3764470588235294], + [0.3660392156862745,0.0,0.41827450980392156], + [0.402643137254902,0.0,0.46010196078431376], + [0.43924705882352943,0.0,0.5019294117647058], + [0.46800588235294116,0.0,0.5346078431372548], + [0.4732294117647059,0.0,0.5398392156862745], + [0.4784529411764706,0.0,0.5450705882352941], + [0.4836764705882353,0.0,0.5503019607843137], + [0.4889,0.0,0.5555333333333333], + [0.4941235294117647,0.0,0.5607647058823529], + [0.4993470588235294,0.0,0.5659960784313726], + [0.5045705882352941,0.0,0.5712274509803922], + [0.5097941176470588,0.0,0.5764588235294118], + [0.5150176470588235,0.0,0.5816901960784313], + [0.5202411764705882,0.0,0.5869215686274509], + [0.525464705882353,0.0,0.5921529411764705], + [0.5306882352941177,0.0,0.5973843137254902], + [0.5123862745098039,0.0,0.6026156862745098], + [0.47055882352941175,0.0,0.6078470588235294], + [0.4287313725490196,0.0,0.613078431372549], + [0.3869039215686274,0.0,0.6183098039215686], + [0.3450764705882353,0.0,0.6235411764705882], + [0.3032490196078431,0.0,0.6287725490196078], + [0.261421568627451,0.0,0.6340039215686274], + [0.2195941176470591,0.0,0.639235294117647], + [0.17776666666666668,0.0,0.6444666666666666], + [0.13593921568627448,0.0,0.6496980392156863], + [0.0941117647058824,0.0,0.6549294117647059], + [0.05228431372549047,0.0,0.6601607843137254], + [0.01045686274509805,0.0,0.665392156862745], + [0.0,0.0,0.6784647058823529], + [0.0,0.0,0.6941509803921568], + [0.0,0.0,0.7098372549019607], + [0.0,0.0,0.7255235294117647], + [0.0,0.0,0.7412098039215687], + [0.0,0.0,0.7568960784313725], + [0.0,0.0,0.7725823529411764], + [0.0,0.0,0.7882686274509804], + [0.0,0.0,0.8039549019607843], + [0.0,0.0,0.8196411764705882], + [0.0,0.0,0.8353274509803921], + [0.0,0.0,0.851013725490196], + [0.0,0.0,0.8667], + [0.0,0.03660392156862745,0.8667], + [0.0,0.07320784313725465,0.8667], + [0.0,0.10981176470588236,0.8667], + [0.0,0.1464156862745098,0.8667], + [0.0,0.18301960784313726,0.8667], + [0.0,0.21962352941176444,0.8667], + [0.0,0.2562274509803922,0.8667], + [0.0,0.2928313725490196,0.8667], + [0.0,0.3294352941176471,0.8667], + [0.0,0.36603921568627423,0.8667], + [0.0,0.402643137254902,0.8667], + [0.0,0.43924705882352943,0.8667], + [0.0,0.46931372549019607,0.8667], + [0.0,0.47976862745098037,0.8667], + [0.0,0.49022352941176456,0.8667], + [0.0,0.500678431372549,0.8667], + [0.0,0.5111333333333333,0.8667], + [0.0,0.5215882352941177,0.8667], + [0.0,0.5320431372549019,0.8667], + [0.0,0.5424980392156863,0.8667], + [0.0,0.5529529411764705,0.8667], + [0.0,0.5634078431372549,0.8667], + [0.0,0.573862745098039,0.8667], + [0.0,0.5843176470588235,0.8667], + [0.0,0.5947725490196079,0.8667], + [0.0,0.6026156862745098,0.8588568627450981], + [0.0,0.6078470588235294,0.8431705882352941], + [0.0,0.613078431372549,0.8274843137254903], + [0.0,0.6183098039215686,0.8117980392156863], + [0.0,0.6235411764705882,0.7961117647058824], + [0.0,0.6287725490196078,0.7804254901960787], + [0.0,0.6340039215686274,0.7647392156862745], + [0.0,0.639235294117647,0.7490529411764706], + [0.0,0.6444666666666666,0.7333666666666667], + [0.0,0.6496980392156863,0.7176803921568627], + [0.0,0.6549294117647059,0.7019941176470588], + [0.0,0.6601607843137255,0.6863078431372549], + [0.0,0.665392156862745,0.6706215686274509], + [0.0,0.6667,0.6588529411764708], + [0.0,0.6667,0.6483901960784313], + [0.0,0.6667,0.6379274509803922], + [0.0,0.6667,0.6274647058823529], + [0.0,0.6667,0.6170019607843137], + [0.0,0.6667,0.6065392156862744], + [0.0,0.6667,0.5960764705882353], + [0.0,0.6667,0.5856137254901961], + [0.0,0.6667,0.575150980392157], + [0.0,0.6667,0.5646882352941176], + [0.0,0.6667,0.5542254901960784], + [0.0,0.6667,0.5437627450980392], + [0.0,0.6667,0.5333], + [0.0,0.6614686274509803,0.49147254901960785], + [0.0,0.6562372549019607,0.4496450980392157], + [0.0,0.6510058823529411,0.4078176470588235], + [0.0,0.6457745098039216,0.365990196078432], + [0.0,0.640543137254902,0.3241627450980392], + [0.0,0.6353117647058824,0.2823352941176471], + [0.0,0.6300803921568627,0.24050784313725487], + [0.0,0.6248490196078431,0.19868039215686273], + [0.0,0.6196176470588235,0.15685294117647058], + [0.0,0.6143862745098039,0.11502549019607844], + [0.0,0.6091549019607843,0.07319803921568624], + [0.0,0.6039235294117647,0.031370588235294705], + [0.0,0.6026137254901961,0.0], + [0.0,0.6130686274509803,0.0], + [0.0,0.6235235294117647,0.0], + [0.0,0.633978431372549,0.0], + [0.0,0.6444333333333333,0.0], + [0.0,0.6548882352941177,0.0], + [0.0,0.6653431372549019,0.0], + [0.0,0.675798039215686,0.0], + [0.0,0.6862529411764705,0.0], + [0.0,0.6967078431372549,0.0], + [0.0,0.7071627450980392,0.0], + [0.0,0.7176176470588235,0.0], + [0.0,0.7280725490196078,0.0], + [0.0,0.7385313725490196,0.0], + [0.0,0.7489941176470588,0.0], + [0.0,0.759456862745098,0.0], + [0.0,0.7699196078431372,0.0], + [0.0,0.7803823529411762,0.0], + [0.0,0.7908450980392157,0.0], + [0.0,0.8013078431372549,0.0], + [0.0,0.8117705882352941,0.0], + [0.0,0.8222333333333334,0.0], + [0.0,0.8326960784313726,0.0], + [0.0,0.8431588235294117,0.0], + [0.0,0.853621568627451,0.0], + [0.0,0.8640843137254902,0.0], + [0.0,0.8745411764705883,0.0], + [0.0,0.8849960784313726,0.0], + [0.0,0.8954509803921569,0.0], + [0.0,0.9059058823529412,0.0], + [0.0,0.9163607843137255,0.0], + [0.0,0.9268156862745098,0.0], + [0.0,0.9372705882352941,0.0], + [0.0,0.9477254901960781,0.0], + [0.0,0.9581803921568628,0.0], + [0.0,0.968635294117647,0.0], + [0.0,0.9790901960784314,0.0], + [0.0,0.9895450980392156,0.0], + [0.0,1.0,0.0], + [0.05751372549019607,1.0,0.0], + [0.11502745098039215,1.0,0.0], + [0.17254117647058823,1.0,0.0], + [0.2300549019607843,1.0,0.0], + [0.2875686274509804,1.0,0.0], + [0.34508235294117645,1.0,0.0], + [0.4025960784313726,1.0,0.0], + [0.4601098039215686,1.0,0.0], + [0.5176235294117647,1.0,0.0], + [0.5751372549019608,1.0,0.0], + [0.6326509803921552,1.0,0.0], + [0.6901647058823529,1.0,0.0], + [0.7372215686274509,0.9986921568627452,0.0], + [0.7529078431372549,0.9934607843137255,0.0], + [0.7685941176470588,0.9882294117647059,0.0], + [0.7842803921568627,0.9829980392156863,0.0], + [0.7999666666666666,0.9777666666666667,0.0], + [0.8156529411764706,0.972535294117647,0.0], + [0.8313392156862744,0.9673039215686274,0.0], + [0.8470254901960784,0.9620725490196078,0.0], + [0.8627117647058824,0.9568411764705882,0.0], + [0.8783980392156863,0.9516098039215687,0.0], + [0.8940843137254902,0.9463784313725491,0.0], + [0.9097705882352941,0.9411470588235294,0.0], + [0.9254568627450981,0.9359156862745098,0.0], + [0.9359156862745098,0.9280725490196079,0.0], + [0.9411470588235292,0.9176176470588239,0.0], + [0.9463784313725491,0.9071627450980393,0.0], + [0.9516098039215687,0.8967078431372549,0.0], + [0.9568411764705882,0.8862529411764706,0.0], + [0.9620725490196078,0.8757980392156863,0.0], + [0.9673039215686274,0.865343137254902,0.0], + [0.972535294117647,0.8548882352941177,0.0], + [0.9777666666666667,0.8444333333333334,0.0], + [0.9829980392156863,0.833978431372549,0.0], + [0.9882294117647059,0.8235235294117648,0.0], + [0.9934607843137255,0.8130686274509804,0.0], + [0.9986921568627452,0.8026137254901962,0.0], + [1.0,0.7882352941176471,0.0], + [1.0,0.7725490196078432,0.0], + [1.0,0.7568627450980392,0.0], + [1.0,0.7411764705882353,0.0], + [1.0,0.7254901960784318,0.0], + [1.0,0.7098039215686275,0.0], + [1.0,0.6941176470588235,0.0], + [1.0,0.6784313725490196,0.0], + [1.0,0.6627450980392157,0.0], + [1.0,0.6470588235294118,0.0], + [1.0,0.6313725490196078,0.0], + [1.0,0.615686274509804,0.0], + [1.0,0.6,0.0], + [1.0,0.5529411764705883,0.0], + [1.0,0.5058823529411764,0.0], + [1.0,0.4588235294117647,0.0], + [1.0,0.4117647058823529,0.0], + [1.0,0.36470588235294116,0.0], + [1.0,0.3176470588235294,0.0], + [1.0,0.27058823529411763,0.0], + [1.0,0.2235294117647072,0.0], + [1.0,0.1764705882352941,0.0], + [1.0,0.12941176470588234,0.0], + [1.0,0.08235294117647052,0.0], + [1.0,0.03529411764705881,0.0], + [0.9973862745098039,0.0,0.0], + [0.9869313725490196,0.0,0.0], + [0.9764764705882353,0.0,0.0], + [0.966021568627451,0.0,0.0], + [0.9555666666666667,0.0,0.0], + [0.9451117647058823,0.0,0.0], + [0.9346568627450981,0.0,0.0], + [0.9242019607843137,0.0,0.0], + [0.9137470588235295,0.0,0.0], + [0.9032921568627451,0.0,0.0], + [0.8928372549019608,0.0,0.0], + [0.8823823529411768,0.0,0.0], + [0.8719274509803921,0.0,0.0], + [0.8640843137254902,0.0,0.0], + [0.8588529411764706,0.0,0.0], + [0.853621568627451,0.0,0.0], + [0.8483901960784314,0.0,0.0], + [0.8431588235294118,0.0,0.0], + [0.8379274509803922,0.0,0.0], + [0.8326960784313726,0.0,0.0], + [0.827464705882353,0.0,0.0], + [0.8222333333333334,0.0,0.0], + [0.8170019607843138,0.0,0.0], + [0.8117705882352941,0.0,0.0], + [0.8065392156862745,0.0,0.0], + [0.8013078431372549,0.0,0.0], + [0.8,0.047058823529411764,0.047058823529411764], + [0.8,0.10980392156862567,0.10980392156862567], + [0.8,0.17254901960784316,0.17254901960784316], + [0.8,0.23529411764705885,0.23529411764705885], + [0.8,0.2980392156862745,0.2980392156862745], + [0.8,0.36078431372549025,0.36078431372549025], + [0.8,0.42352941176470593,0.42352941176470593], + [0.8,0.48627450980392156,0.48627450980392156], + [0.8,0.5490196078431373,0.5490196078431373], + [0.8,0.611764705882353,0.611764705882353], + [0.8,0.6745098039215687,0.6745098039215687], + [0.8,0.7372549019607844,0.7372549019607844], + [0.8,0.8,0.8] ], + nipy_spectral_r: [ + [0.8,0.8,0.8], + [0.8,0.7372549019607844,0.7372549019607844], + [0.8,0.6745098039215688,0.6745098039215688], + [0.8,0.6117647058823531,0.6117647058823531], + [0.8,0.5490196078431375,0.5490196078431375], + [0.8,0.48627450980392184,0.48627450980392184], + [0.8,0.4235294117647062,0.4235294117647062], + [0.8,0.36078431372549064,0.36078431372549064], + [0.8,0.298039215686275,0.298039215686275], + [0.8,0.23529411764705932,0.23529411764705932], + [0.8,0.17254901960784363,0.17254901960784363], + [0.8,0.10980392156862806,0.10980392156862806], + [0.8,0.047058823529412375,0.047058823529412375], + [0.8013078431372549,0.0,0.0], + [0.8065392156862745,0.0,0.0], + [0.8117705882352941,0.0,0.0], + [0.8170019607843138,0.0,0.0], + [0.8222333333333334,0.0,0.0], + [0.827464705882353,0.0,0.0], + [0.8326960784313726,0.0,0.0], + [0.8379274509803922,0.0,0.0], + [0.8431588235294118,0.0,0.0], + [0.8483901960784315,0.0,0.0], + [0.853621568627451,0.0,0.0], + [0.8588529411764706,0.0,0.0], + [0.8640843137254902,0.0,0.0], + [0.8719274509803923,0.0,0.0], + [0.8823823529411765,0.0,0.0], + [0.8928372549019609,0.0,0.0], + [0.9032921568627451,0.0,0.0], + [0.9137470588235295,0.0,0.0], + [0.9242019607843137,0.0,0.0], + [0.9346568627450981,0.0,0.0], + [0.9451117647058823,0.0,0.0], + [0.9555666666666667,0.0,0.0], + [0.9660215686274509,0.0,0.0], + [0.9764764705882353,0.0,0.0], + [0.9869313725490195,0.0,0.0], + [0.9973862745098039,0.0,0.0], + [1.0,0.035294117647058545,0.0], + [1.0,0.08235294117647039,0.0], + [1.0,0.1294117647058819,0.0], + [1.0,0.17647058823529407,0.0], + [1.0,0.22352941176470592,0.0], + [1.0,0.27058823529411774,0.0], + [1.0,0.3176470588235293,0.0], + [1.0,0.3647058823529415,0.0], + [1.0,0.41176470588235325,0.0], + [1.0,0.45882352941176513,0.0], + [1.0,0.5058823529411767,0.0], + [1.0,0.5529411764705888,0.0], + [1.0,0.6000000000000002,0.0], + [1.0,0.6156862745098041,0.0], + [1.0,0.6313725490196079,0.0], + [1.0,0.6470588235294119,0.0], + [1.0,0.6627450980392159,0.0], + [1.0,0.6784313725490198,0.0], + [1.0,0.6941176470588235,0.0], + [1.0,0.7098039215686276,0.0], + [1.0,0.7254901960784315,0.0], + [1.0,0.7411764705882353,0.0], + [1.0,0.7568627450980392,0.0], + [1.0,0.7725490196078432,0.0], + [1.0,0.7882352941176471,0.0], + [0.9986921568627452,0.8026137254901962,0.0], + [0.9934607843137255,0.8130686274509804,0.0], + [0.988229411764706,0.8235235294117645,0.0], + [0.9829980392156863,0.833978431372549,0.0], + [0.9777666666666667,0.8444333333333334,0.0], + [0.972535294117647,0.8548882352941176,0.0], + [0.9673039215686275,0.8653431372549019,0.0], + [0.9620725490196079,0.8757980392156862,0.0], + [0.9568411764705883,0.8862529411764706,0.0], + [0.9516098039215687,0.8967078431372548,0.0], + [0.9463784313725492,0.907162745098039,0.0], + [0.9411470588235294,0.9176176470588234,0.0], + [0.9359156862745099,0.9280725490196078,0.0], + [0.9254568627450983,0.9359156862745097,0.0], + [0.9097705882352943,0.9411470588235293,0.0], + [0.8940843137254904,0.946378431372549,0.0], + [0.8783980392156865,0.9516098039215686,0.0], + [0.8627117647058825,0.9568411764705882,0.0], + [0.8470254901960788,0.9620725490196077,0.0], + [0.8313392156862747,0.9673039215686274,0.0], + [0.8156529411764707,0.972535294117647,0.0], + [0.7999666666666667,0.9777666666666667,0.0], + [0.7842803921568627,0.9829980392156863,0.0], + [0.7685941176470588,0.9882294117647059,0.0], + [0.7529078431372549,0.9934607843137255,0.0], + [0.7372215686274509,0.9986921568627452,0.0], + [0.6901647058823537,1.0,0.0], + [0.6326509803921568,1.0,0.0], + [0.5751372549019608,1.0,0.0], + [0.5176235294117647,1.0,0.0], + [0.4601098039215686,1.0,0.0], + [0.4025960784313725,1.0,0.0], + [0.34508235294117645,1.0,0.0], + [0.2875686274509804,1.0,0.0], + [0.23005490196078515,1.0,0.0], + [0.1725411764705883,1.0,0.0], + [0.11502745098039213,1.0,0.0], + [0.057513725490196066,1.0,0.0], + [0.0,1.0,0.0], + [0.0,0.9895450980392156,0.0], + [0.0,0.9790901960784314,0.0], + [0.0,0.968635294117647,0.0], + [0.0,0.9581803921568629,0.0], + [0.0,0.9477254901960784,0.0], + [0.0,0.9372705882352941,0.0], + [0.0,0.9268156862745097,0.0], + [0.0,0.9163607843137254,0.0], + [0.0,0.9059058823529411,0.0], + [0.0,0.8954509803921568,0.0], + [0.0,0.8849960784313724,0.0], + [0.0,0.8745411764705883,0.0], + [0.0,0.8640843137254901,0.0], + [0.0,0.8536215686274509,0.0], + [0.0,0.8431588235294116,0.0], + [0.0,0.8326960784313724,0.0], + [0.0,0.8222333333333333,0.0], + [0.0,0.811770588235294,0.0], + [0.0,0.8013078431372548,0.0], + [0.0,0.7908450980392158,0.0], + [0.0,0.7803823529411764,0.0], + [0.0,0.7699196078431372,0.0], + [0.0,0.7594568627450979,0.0], + [0.0,0.7489941176470588,0.0], + [0.0,0.7385313725490196,0.0], + [0.0,0.7280725490196078,0.0], + [0.0,0.7176176470588235,0.0], + [0.0,0.7071627450980392,0.0], + [0.0,0.6967078431372549,0.0], + [0.0,0.6862529411764708,0.0], + [0.0,0.6757980392156863,0.0], + [0.0,0.6653431372549019,0.0], + [0.0,0.6548882352941177,0.0], + [0.0,0.6444333333333333,0.0], + [0.0,0.633978431372549,0.0], + [0.0,0.6235235294117647,0.0], + [0.0,0.6130686274509803,0.0], + [0.0,0.6026137254901961,0.0], + [0.0,0.6039235294117646,0.031370588235294115], + [0.0,0.6091549019607843,0.07319803921568628], + [0.0,0.6143862745098039,0.11502549019607844], + [0.0,0.6196176470588235,0.15685294117647058], + [0.0,0.6248490196078431,0.19868039215686276], + [0.0,0.6300803921568627,0.2405078431372549], + [0.0,0.6353117647058824,0.2823352941176471], + [0.0,0.6405431372549018,0.324162745098038], + [0.0,0.6457745098039216,0.36599019607843136], + [0.0,0.6510058823529411,0.4078176470588235], + [0.0,0.6562372549019607,0.4496450980392157], + [0.0,0.6614686274509803,0.4914725490196078], + [0.0,0.6667,0.5333], + [0.0,0.6667,0.5437627450980392], + [0.0,0.6667,0.5542254901960785], + [0.0,0.6667,0.5646882352941176], + [0.0,0.6667,0.5751509803921568], + [0.0,0.6667,0.5856137254901961], + [0.0,0.6667,0.5960764705882353], + [0.0,0.6667,0.6065392156862744], + [0.0,0.6667,0.6170019607843137], + [0.0,0.6667,0.6274647058823529], + [0.0,0.6667,0.6379274509803922], + [0.0,0.6667,0.6483901960784311], + [0.0,0.6667,0.6588529411764705], + [0.0,0.6653921568627451,0.6706215686274509], + [0.0,0.6601607843137255,0.6863078431372549], + [0.0,0.6549294117647059,0.7019941176470588], + [0.0,0.6496980392156863,0.7176803921568627], + [0.0,0.6444666666666666,0.7333666666666666], + [0.0,0.639235294117647,0.7490529411764706], + [0.0,0.6340039215686274,0.7647392156862745], + [0.0,0.6287725490196078,0.7804254901960784], + [0.0,0.6235411764705882,0.7961117647058824], + [0.0,0.6183098039215686,0.8117980392156863], + [0.0,0.613078431372549,0.8274843137254903], + [0.0,0.6078470588235294,0.8431705882352941], + [0.0,0.6026156862745098,0.8588568627450981], + [0.0,0.5947725490196079,0.8667], + [0.0,0.5843176470588238,0.8667], + [0.0,0.5738627450980393,0.8667], + [0.0,0.5634078431372549,0.8667], + [0.0,0.5529529411764705,0.8667], + [0.0,0.5424980392156863,0.8667], + [0.0,0.5320431372549019,0.8667], + [0.0,0.5215882352941177,0.8667], + [0.0,0.5111333333333333,0.8667], + [0.0,0.500678431372549,0.8667], + [0.0,0.4902235294117647,0.8667], + [0.0,0.47976862745098037,0.8667], + [0.0,0.4693137254901961,0.8667], + [0.0,0.43924705882352943,0.8667], + [0.0,0.402643137254902,0.8667], + [0.0,0.3660392156862745,0.8667], + [0.0,0.32943529411764705,0.8667], + [0.0,0.29283137254902064,0.8667], + [0.0,0.2562274509803921,0.8667], + [0.0,0.21962352941176472,0.8667], + [0.0,0.18301960784313726,0.8667], + [0.0,0.1464156862745098,0.8667], + [0.0,0.10981176470588239,0.8667], + [0.0,0.07320784313725492,0.8667], + [0.0,0.03660392156862746,0.8667], + [0.0,0.0,0.8667], + [0.0,0.0,0.851013725490196], + [0.0,0.0,0.8353274509803922], + [0.0,0.0,0.8196411764705882], + [0.0,0.0,0.8039549019607843], + [0.0,0.0,0.7882686274509804], + [0.0,0.0,0.7725823529411765], + [0.0,0.0,0.7568960784313725], + [0.0,0.0,0.7412098039215691], + [0.0,0.0,0.7255235294117647], + [0.0,0.0,0.7098372549019607], + [0.0,0.0,0.6941509803921568], + [0.0,0.0,0.678464705882353], + [0.01045686274509804,0.0,0.6653921568627451], + [0.052284313725490195,0.0,0.6601607843137255], + [0.09411176470588235,0.0,0.6549294117647059], + [0.1359392156862745,0.0,0.6496980392156863], + [0.17776666666666666,0.0,0.6444666666666666], + [0.2195941176470588,0.0,0.639235294117647], + [0.261421568627451,0.0,0.6340039215686274], + [0.3032490196078431,0.0,0.6287725490196078], + [0.3450764705882353,0.0,0.6235411764705882], + [0.38690392156862746,0.0,0.6183098039215686], + [0.4287313725490196,0.0,0.613078431372549], + [0.4705588235294106,0.0,0.6078470588235295], + [0.5123862745098039,0.0,0.6026156862745098], + [0.5306882352941177,0.0,0.5973843137254902], + [0.525464705882353,0.0,0.5921529411764705], + [0.5202411764705882,0.0,0.5869215686274509], + [0.5150176470588235,0.0,0.5816901960784313], + [0.5097941176470588,0.0,0.5764588235294118], + [0.5045705882352941,0.0,0.5712274509803922], + [0.4993470588235294,0.0,0.5659960784313726], + [0.4941235294117647,0.0,0.5607647058823529], + [0.4889,0.0,0.5555333333333333], + [0.4836764705882353,0.0,0.5503019607843137], + [0.4784529411764706,0.0,0.5450705882352941], + [0.4732294117647059,0.0,0.5398392156862745], + [0.46800588235294116,0.0,0.534607843137255], + [0.43924705882352943,0.0,0.5019294117647058], + [0.402643137254903,0.0,0.4601019607843149], + [0.3660392156862745,0.0,0.41827450980392156], + [0.32943529411764705,0.0,0.3764470588235294], + [0.2928313725490196,0.0,0.33461960784313727], + [0.2562274509803921,0.0,0.29279215686274507], + [0.21962352941176472,0.0,0.2509647058823529], + [0.18301960784313726,0.0,0.20913725490196083], + [0.1464156862745098,0.0,0.16730980392156863], + [0.10981176470588239,0.0,0.1254823529411765], + [0.07320784313725492,0.0,0.08365490196078429], + [0.03660392156862746,0.0,0.0418274509803922], + [0.0,0.0,0.0] ], + ocean: [ + [0.0,0.5,0.0], + [0.0,0.49411764705882355,0.00392156862745098], + [0.0,0.48823529411764705,0.00784313725490196], + [0.0,0.4823529411764706,0.011764705882352941], + [0.0,0.4764705882352941,0.01568627450980392], + [0.0,0.47058823529411764,0.0196078431372549], + [0.0,0.4647058823529412,0.023529411764705882], + [0.0,0.4588235294117647,0.027450980392156862], + [0.0,0.45294117647058824,0.03137254901960784], + [0.0,0.4470588235294118,0.03529411764705882], + [0.0,0.4411764705882353,0.0392156862745098], + [0.0,0.43529411764705883,0.043137254901960784], + [0.0,0.4294117647058824,0.047058823529411764], + [0.0,0.4235294117647059,0.050980392156862744], + [0.0,0.4176470588235294,0.054901960784313725], + [0.0,0.4117647058823529,0.058823529411764705], + [0.0,0.40588235294117647,0.06274509803921569], + [0.0,0.4,0.06666666666666667], + [0.0,0.3941176470588235,0.07058823529411765], + [0.0,0.38823529411764707,0.07450980392156863], + [0.0,0.38235294117647056,0.0784313725490196], + [0.0,0.3764705882352941,0.08235294117647059], + [0.0,0.37058823529411766,0.08627450980392157], + [0.0,0.3647058823529412,0.09019607843137255], + [0.0,0.3588235294117647,0.09411764705882353], + [0.0,0.3529411764705882,0.09803921568627451], + [0.0,0.34705882352941175,0.10196078431372549], + [0.0,0.3411764705882353,0.10588235294117647], + [0.0,0.33529411764705885,0.10980392156862745], + [0.0,0.32941176470588235,0.11372549019607843], + [0.0,0.3235294117647059,0.11764705882352941], + [0.0,0.3176470588235294,0.12156862745098039], + [0.0,0.31176470588235294,0.12549019607843137], + [0.0,0.3058823529411765,0.12941176470588234], + [0.0,0.3,0.13333333333333333], + [0.0,0.2941176470588235,0.13725490196078433], + [0.0,0.28823529411764703,0.1411764705882353], + [0.0,0.2823529411764706,0.14509803921568626], + [0.0,0.27647058823529413,0.14901960784313725], + [0.0,0.27058823529411763,0.15294117647058825], + [0.0,0.2647058823529412,0.1568627450980392], + [0.0,0.25882352941176473,0.16078431372549018], + [0.0,0.2529411764705882,0.16470588235294117], + [0.0,0.24705882352941178,0.16862745098039217], + [0.0,0.24117647058823533,0.17254901960784313], + [0.0,0.23529411764705888,0.1764705882352941], + [0.0,0.22941176470588237,0.1803921568627451], + [0.0,0.22352941176470587,0.1843137254901961], + [0.0,0.21764705882352942,0.18823529411764706], + [0.0,0.21176470588235297,0.19215686274509802], + [0.0,0.20588235294117646,0.19607843137254902], + [0.0,0.19999999999999996,0.2], + [0.0,0.1941176470588235,0.20392156862745098], + [0.0,0.18823529411764706,0.20784313725490194], + [0.0,0.1823529411764706,0.21176470588235294], + [0.0,0.1764705882352941,0.21568627450980393], + [0.0,0.17058823529411765,0.2196078431372549], + [0.0,0.1647058823529412,0.22352941176470587], + [0.0,0.1588235294117647,0.22745098039215686], + [0.0,0.15294117647058825,0.23137254901960785], + [0.0,0.1470588235294118,0.23529411764705882], + [0.0,0.14117647058823535,0.2392156862745098], + [0.0,0.13529411764705884,0.24313725490196078], + [0.0,0.12941176470588234,0.24705882352941178], + [0.0,0.12352941176470589,0.25098039215686274], + [0.0,0.11764705882352944,0.2549019607843137], + [0.0,0.11176470588235299,0.2588235294117647], + [0.0,0.10588235294117643,0.2627450980392157], + [0.0,0.09999999999999998,0.26666666666666666], + [0.0,0.09411764705882353,0.27058823529411763], + [0.0,0.08823529411764702,0.27450980392156865], + [0.0,0.08235294117647057,0.2784313725490196], + [0.0,0.07647058823529412,0.2823529411764706], + [0.0,0.07058823529411767,0.28627450980392155], + [0.0,0.06470588235294122,0.2901960784313725], + [0.0,0.05882352941176472,0.29411764705882354], + [0.0,0.05294117647058827,0.2980392156862745], + [0.0,0.04705882352941182,0.30196078431372547], + [0.0,0.04117647058823526,0.3058823529411765], + [0.0,0.03529411764705881,0.30980392156862746], + [0.0,0.02941176470588236,0.3137254901960784], + [0.0,0.02352941176470591,0.3176470588235294], + [0.0,0.01764705882352946,0.32156862745098036], + [0.0,0.0117647058823529,0.3254901960784314], + [0.0,0.00588235294117645,0.32941176470588235], + [0.0,0.0,0.3333333333333333], + [0.0,0.00588235294117645,0.33725490196078434], + [0.0,0.0117647058823529,0.3411764705882353], + [0.0,0.01764705882352935,0.34509803921568627], + [0.0,0.0235294117647058,0.34901960784313724], + [0.0,0.02941176470588225,0.3529411764705882], + [0.0,0.03529411764705881,0.3568627450980392], + [0.0,0.04117647058823526,0.3607843137254902], + [0.0,0.04705882352941171,0.36470588235294116], + [0.0,0.05294117647058827,0.3686274509803922], + [0.0,0.05882352941176472,0.37254901960784315], + [0.0,0.06470588235294117,0.3764705882352941], + [0.0,0.07058823529411762,0.3803921568627451], + [0.0,0.07647058823529407,0.38431372549019605], + [0.0,0.08235294117647063,0.38823529411764707], + [0.0,0.08823529411764708,0.39215686274509803], + [0.0,0.09411764705882353,0.396078431372549], + [0.0,0.10000000000000009,0.4], + [0.0,0.10588235294117654,0.403921568627451], + [0.0,0.11176470588235299,0.40784313725490196], + [0.0,0.11764705882352944,0.4117647058823529], + [0.0,0.12352941176470589,0.4156862745098039], + [0.0,0.12941176470588234,0.4196078431372549], + [0.0,0.1352941176470588,0.4235294117647059], + [0.0,0.14117647058823524,0.42745098039215684], + [0.0,0.1470588235294118,0.43137254901960786], + [0.0,0.15294117647058825,0.43529411764705883], + [0.0,0.1588235294117647,0.4392156862745098], + [0.0,0.16470588235294115,0.44313725490196076], + [0.0,0.1705882352941176,0.44705882352941173], + [0.0,0.17647058823529416,0.45098039215686275], + [0.0,0.1823529411764706,0.4549019607843137], + [0.0,0.18823529411764706,0.4588235294117647], + [0.0,0.1941176470588235,0.4627450980392157], + [0.0,0.19999999999999996,0.4666666666666667], + [0.0,0.2058823529411764,0.47058823529411764], + [0.0,0.21176470588235285,0.4745098039215686], + [0.0,0.2176470588235293,0.4784313725490196], + [0.0,0.22352941176470587,0.4823529411764706], + [0.0,0.22941176470588232,0.48627450980392156], + [0.0,0.23529411764705876,0.49019607843137253], + [0.0,0.24117647058823533,0.49411764705882355], + [0.0,0.24705882352941178,0.4980392156862745], + [0.0,0.2529411764705882,0.5019607843137255], + [0.0,0.2588235294117647,0.5058823529411764], + [0.0,0.2647058823529411,0.5098039215686274], + [0.0,0.2705882352941176,0.5137254901960784], + [0.0,0.276470588235294,0.5176470588235293], + [0.0,0.2823529411764707,0.5215686274509804], + [0.0,0.28823529411764715,0.5254901960784314], + [0.0,0.2941176470588236,0.5294117647058824], + [0.0,0.30000000000000004,0.5333333333333333], + [0.0,0.3058823529411765,0.5372549019607843], + [0.0,0.31176470588235294,0.5411764705882353], + [0.0,0.3176470588235294,0.5450980392156862], + [0.0,0.32352941176470595,0.5490196078431373], + [0.0,0.3294117647058824,0.5529411764705883], + [0.0,0.33529411764705885,0.5568627450980392], + [0.0,0.3411764705882353,0.5607843137254902], + [0.0,0.34705882352941175,0.5647058823529412], + [0.0,0.3529411764705882,0.5686274509803921], + [0.0,0.35882352941176465,0.5725490196078431], + [0.0,0.3647058823529411,0.5764705882352941], + [0.0,0.37058823529411755,0.580392156862745], + [0.0,0.3764705882352941,0.5843137254901961], + [0.0,0.38235294117647056,0.5882352941176471], + [0.0,0.388235294117647,0.592156862745098], + [0.0,0.39411764705882346,0.596078431372549], + [0.0,0.3999999999999999,0.6], + [0.0,0.40588235294117636,0.6039215686274509], + [0.0,0.4117647058823528,0.6078431372549019], + [0.0,0.4176470588235295,0.611764705882353], + [0.0,0.42352941176470593,0.615686274509804], + [0.0,0.4294117647058824,0.6196078431372549], + [0.0,0.43529411764705883,0.6235294117647059], + [0.0,0.4411764705882353,0.6274509803921569], + [0.0,0.44705882352941173,0.6313725490196078], + [0.0,0.4529411764705882,0.6352941176470588], + [0.0,0.45882352941176463,0.6392156862745098], + [0.0,0.4647058823529411,0.6431372549019607], + [0.0,0.47058823529411775,0.6470588235294118], + [0.0,0.4764705882352942,0.6509803921568628], + [0.0,0.48235294117647065,0.6549019607843137], + [0.0,0.4882352941176471,0.6588235294117647], + [0.0,0.49411764705882355,0.6627450980392157], + [0.0,0.5,0.6666666666666666], + [0.0117647058823529,0.5058823529411764,0.6705882352941176], + [0.0235294117647058,0.5117647058823529,0.6745098039215687], + [0.0352941176470587,0.5176470588235293,0.6784313725490196], + [0.0470588235294116,0.5235294117647058,0.6823529411764706], + [0.0588235294117645,0.5294117647058822,0.6862745098039216], + [0.0705882352941174,0.5352941176470587,0.6901960784313725], + [0.0823529411764703,0.5411764705882351,0.6941176470588235], + [0.0941176470588232,0.5470588235294116,0.6980392156862745], + [0.1058823529411761,0.552941176470588,0.7019607843137254], + [0.117647058823529,0.5588235294117645,0.7058823529411764], + [0.12941176470588234,0.5647058823529412,0.7098039215686275], + [0.14117647058823524,0.5705882352941176,0.7137254901960784], + [0.15294117647058814,0.5764705882352941,0.7176470588235294], + [0.16470588235294104,0.5823529411764705,0.7215686274509804], + [0.17647058823529393,0.588235294117647,0.7254901960784313], + [0.18823529411764683,0.5941176470588234,0.7294117647058823], + [0.19999999999999973,0.5999999999999999,0.7333333333333333], + [0.21176470588235308,0.6058823529411765,0.7372549019607844], + [0.22352941176470598,0.611764705882353,0.7411764705882353], + [0.23529411764705888,0.6176470588235294,0.7450980392156863], + [0.24705882352941178,0.6235294117647059,0.7490196078431373], + [0.2588235294117647,0.6294117647058823,0.7529411764705882], + [0.2705882352941176,0.6352941176470588,0.7568627450980392], + [0.2823529411764705,0.6411764705882352,0.7607843137254902], + [0.2941176470588234,0.6470588235294117,0.7647058823529411], + [0.30588235294117627,0.6529411764705881,0.7686274509803921], + [0.3176470588235296,0.6588235294117648,0.7725490196078432], + [0.3294117647058825,0.6647058823529413,0.7764705882352941], + [0.3411764705882354,0.6705882352941177,0.7803921568627451], + [0.3529411764705883,0.6764705882352942,0.7843137254901961], + [0.3647058823529412,0.6823529411764706,0.788235294117647], + [0.3764705882352941,0.6882352941176471,0.792156862745098], + [0.388235294117647,0.6941176470588235,0.796078431372549], + [0.40000000000000036,0.7000000000000002,0.8], + [0.41176470588235325,0.7058823529411766,0.803921568627451], + [0.42352941176470615,0.7117647058823531,0.807843137254902], + [0.43529411764705905,0.7176470588235295,0.8117647058823529], + [0.44705882352941195,0.723529411764706,0.8156862745098039], + [0.45882352941176485,0.7294117647058824,0.8196078431372549], + [0.47058823529411775,0.7352941176470589,0.8235294117647058], + [0.48235294117647065,0.7411764705882353,0.8274509803921568], + [0.49411764705882355,0.7470588235294118,0.8313725490196078], + [0.5058823529411764,0.7529411764705882,0.8352941176470589], + [0.5176470588235293,0.7588235294117647,0.8392156862745098], + [0.5294117647058822,0.7647058823529411,0.8431372549019608], + [0.5411764705882351,0.7705882352941176,0.8470588235294118], + [0.552941176470588,0.776470588235294,0.8509803921568627], + [0.564705882352941,0.7823529411764705,0.8549019607843137], + [0.5764705882352938,0.7882352941176469,0.8588235294117647], + [0.5882352941176472,0.7941176470588236,0.8627450980392157], + [0.6000000000000001,0.8,0.8666666666666667], + [0.611764705882353,0.8058823529411765,0.8705882352941177], + [0.6235294117647059,0.8117647058823529,0.8745098039215686], + [0.6352941176470588,0.8176470588235294,0.8784313725490196], + [0.6470588235294117,0.8235294117647058,0.8823529411764706], + [0.6588235294117646,0.8294117647058823,0.8862745098039215], + [0.6705882352941175,0.8352941176470587,0.8901960784313725], + [0.6823529411764704,0.8411764705882352,0.8941176470588235], + [0.6941176470588237,0.8470588235294119,0.8980392156862745], + [0.7058823529411766,0.8529411764705883,0.9019607843137255], + [0.7176470588235295,0.8588235294117648,0.9058823529411765], + [0.7294117647058824,0.8647058823529412,0.9098039215686274], + [0.7411764705882353,0.8705882352941177,0.9137254901960784], + [0.7529411764705882,0.8764705882352941,0.9176470588235294], + [0.7647058823529411,0.8823529411764706,0.9215686274509803], + [0.776470588235294,0.888235294117647,0.9254901960784314], + [0.7882352941176469,0.8941176470588235,0.9294117647058824], + [0.7999999999999998,0.8999999999999999,0.9333333333333333], + [0.8117647058823527,0.9058823529411764,0.9372549019607843], + [0.8235294117647056,0.9117647058823528,0.9411764705882353], + [0.8352941176470585,0.9176470588235293,0.9450980392156862], + [0.8470588235294114,0.9235294117647057,0.9490196078431372], + [0.8588235294117643,0.9294117647058822,0.9529411764705882], + [0.8705882352941172,0.9352941176470586,0.9568627450980391], + [0.8823529411764706,0.9411764705882353,0.9607843137254902], + [0.8941176470588235,0.9470588235294117,0.9647058823529412], + [0.9058823529411764,0.9529411764705882,0.9686274509803922], + [0.9176470588235293,0.9588235294117646,0.9725490196078431], + [0.9294117647058822,0.9647058823529411,0.9764705882352941], + [0.9411764705882351,0.9705882352941175,0.9803921568627451], + [0.952941176470588,0.976470588235294,0.984313725490196], + [0.9647058823529413,0.9823529411764707,0.9882352941176471], + [0.9764705882352942,0.9882352941176471,0.9921568627450981], + [0.9882352941176471,0.9941176470588236,0.996078431372549], + [1.0,1.0,1.0] ], + ocean_r: [ + [1.0,1.0,1.0], + [0.9882352941176471,0.9941176470588236,0.996078431372549], + [0.9764705882352942,0.9882352941176471,0.9921568627450981], + [0.9647058823529413,0.9823529411764707,0.9882352941176471], + [0.9529411764705884,0.9764705882352942,0.9843137254901961], + [0.9411764705882351,0.9705882352941175,0.9803921568627451], + [0.9294117647058822,0.9647058823529411,0.9764705882352941], + [0.9176470588235293,0.9588235294117646,0.9725490196078431], + [0.9058823529411764,0.9529411764705882,0.9686274509803922], + [0.8941176470588235,0.9470588235294117,0.9647058823529412], + [0.8823529411764706,0.9411764705882353,0.9607843137254902], + [0.8705882352941177,0.9352941176470588,0.9568627450980393], + [0.8588235294117643,0.9294117647058822,0.9529411764705882], + [0.8470588235294114,0.9235294117647057,0.9490196078431372], + [0.8352941176470585,0.9176470588235293,0.9450980392156862], + [0.8235294117647056,0.9117647058823528,0.9411764705882353], + [0.8117647058823527,0.9058823529411764,0.9372549019607843], + [0.7999999999999998,0.8999999999999999,0.9333333333333333], + [0.7882352941176469,0.8941176470588235,0.9294117647058824], + [0.776470588235294,0.888235294117647,0.9254901960784314], + [0.7647058823529411,0.8823529411764706,0.9215686274509804], + [0.7529411764705882,0.8764705882352941,0.9176470588235294], + [0.7411764705882353,0.8705882352941177,0.9137254901960784], + [0.7294117647058824,0.8647058823529412,0.9098039215686274], + [0.7176470588235295,0.8588235294117648,0.9058823529411765], + [0.7058823529411766,0.8529411764705883,0.9019607843137255], + [0.6941176470588237,0.8470588235294119,0.8980392156862745], + [0.6823529411764708,0.8411764705882354,0.8941176470588236], + [0.6705882352941175,0.8352941176470587,0.8901960784313725], + [0.6588235294117646,0.8294117647058823,0.8862745098039215], + [0.6470588235294117,0.8235294117647058,0.8823529411764706], + [0.6352941176470588,0.8176470588235294,0.8784313725490196], + [0.6235294117647059,0.8117647058823529,0.8745098039215686], + [0.611764705882353,0.8058823529411765,0.8705882352941177], + [0.6000000000000001,0.8,0.8666666666666667], + [0.5882352941176472,0.7941176470588236,0.8627450980392157], + [0.5764705882352943,0.7882352941176471,0.8588235294117648], + [0.5647058823529414,0.7823529411764707,0.8549019607843138], + [0.552941176470588,0.776470588235294,0.8509803921568627], + [0.5411764705882351,0.7705882352941176,0.8470588235294118], + [0.5294117647058822,0.7647058823529411,0.8431372549019608], + [0.5176470588235293,0.7588235294117647,0.8392156862745098], + [0.5058823529411764,0.7529411764705882,0.8352941176470589], + [0.49411764705882355,0.7470588235294118,0.8313725490196078], + [0.48235294117647065,0.7411764705882353,0.8274509803921568], + [0.47058823529411775,0.7352941176470589,0.8235294117647058], + [0.45882352941176485,0.7294117647058824,0.8196078431372549], + [0.44705882352941195,0.723529411764706,0.8156862745098039], + [0.43529411764705905,0.7176470588235295,0.8117647058823529], + [0.42352941176470615,0.7117647058823531,0.807843137254902], + [0.41176470588235325,0.7058823529411766,0.803921568627451], + [0.40000000000000036,0.7000000000000002,0.8], + [0.38823529411764746,0.6941176470588237,0.7960784313725491], + [0.37647058823529456,0.6882352941176473,0.7921568627450981], + [0.3647058823529412,0.6823529411764706,0.788235294117647], + [0.3529411764705883,0.6764705882352942,0.7843137254901961], + [0.3411764705882354,0.6705882352941177,0.7803921568627451], + [0.3294117647058825,0.6647058823529413,0.7764705882352941], + [0.3176470588235296,0.6588235294117648,0.7725490196078432], + [0.30588235294117627,0.6529411764705881,0.7686274509803921], + [0.2941176470588234,0.6470588235294117,0.7647058823529411], + [0.2823529411764705,0.6411764705882352,0.7607843137254902], + [0.2705882352941176,0.6352941176470588,0.7568627450980392], + [0.2588235294117647,0.6294117647058823,0.7529411764705882], + [0.24705882352941178,0.6235294117647059,0.7490196078431373], + [0.23529411764705888,0.6176470588235294,0.7450980392156863], + [0.22352941176470598,0.611764705882353,0.7411764705882353], + [0.21176470588235308,0.6058823529411765,0.7372549019607844], + [0.20000000000000018,0.6000000000000001,0.7333333333333334], + [0.18823529411764728,0.5941176470588236,0.7294117647058824], + [0.17647058823529393,0.588235294117647,0.7254901960784313], + [0.16470588235294104,0.5823529411764705,0.7215686274509804], + [0.15294117647058814,0.5764705882352941,0.7176470588235294], + [0.14117647058823524,0.5705882352941176,0.7137254901960784], + [0.12941176470588234,0.5647058823529412,0.7098039215686275], + [0.117647058823529,0.5588235294117645,0.7058823529411764], + [0.1058823529411761,0.552941176470588,0.7019607843137254], + [0.0941176470588232,0.5470588235294116,0.6980392156862745], + [0.0823529411764703,0.5411764705882351,0.6941176470588235], + [0.0705882352941174,0.5352941176470587,0.6901960784313725], + [0.0588235294117645,0.5294117647058822,0.6862745098039216], + [0.0470588235294116,0.5235294117647058,0.6823529411764706], + [0.0352941176470587,0.5176470588235293,0.6784313725490196], + [0.0235294117647058,0.5117647058823529,0.6745098039215687], + [0.0117647058823529,0.5058823529411764,0.6705882352941177], + [0.0,0.5,0.6666666666666667], + [0.0,0.49411764705882355,0.6627450980392157], + [0.0,0.4882352941176471,0.6588235294117647], + [0.0,0.48235294117647065,0.6549019607843137], + [0.0,0.4764705882352942,0.6509803921568628], + [0.0,0.47058823529411775,0.6470588235294118], + [0.0,0.4647058823529411,0.6431372549019607], + [0.0,0.45882352941176463,0.6392156862745098], + [0.0,0.4529411764705882,0.6352941176470588], + [0.0,0.44705882352941173,0.6313725490196078], + [0.0,0.4411764705882353,0.6274509803921569], + [0.0,0.43529411764705883,0.6235294117647059], + [0.0,0.4294117647058824,0.6196078431372549], + [0.0,0.42352941176470593,0.615686274509804], + [0.0,0.4176470588235295,0.611764705882353], + [0.0,0.41176470588235303,0.607843137254902], + [0.0,0.4058823529411766,0.603921568627451], + [0.0,0.3999999999999999,0.6], + [0.0,0.39411764705882346,0.596078431372549], + [0.0,0.388235294117647,0.592156862745098], + [0.0,0.38235294117647056,0.5882352941176471], + [0.0,0.3764705882352941,0.5843137254901961], + [0.0,0.37058823529411755,0.580392156862745], + [0.0,0.3647058823529411,0.5764705882352941], + [0.0,0.35882352941176465,0.5725490196078431], + [0.0,0.3529411764705882,0.5686274509803921], + [0.0,0.34705882352941175,0.5647058823529412], + [0.0,0.3411764705882353,0.5607843137254902], + [0.0,0.33529411764705885,0.5568627450980392], + [0.0,0.3294117647058824,0.5529411764705883], + [0.0,0.32352941176470595,0.5490196078431373], + [0.0,0.3176470588235295,0.5450980392156863], + [0.0,0.31176470588235305,0.5411764705882354], + [0.0,0.3058823529411765,0.5372549019607843], + [0.0,0.30000000000000004,0.5333333333333333], + [0.0,0.2941176470588236,0.5294117647058824], + [0.0,0.28823529411764715,0.5254901960784314], + [0.0,0.2823529411764707,0.5215686274509804], + [0.0,0.276470588235294,0.5176470588235293], + [0.0,0.2705882352941176,0.5137254901960784], + [0.0,0.2647058823529411,0.5098039215686274], + [0.0,0.2588235294117647,0.5058823529411764], + [0.0,0.2529411764705882,0.5019607843137255], + [0.0,0.24705882352941178,0.4980392156862745], + [0.0,0.24117647058823533,0.49411764705882355], + [0.0,0.23529411764705888,0.4901960784313726], + [0.0,0.22941176470588243,0.4862745098039216], + [0.0,0.22352941176470598,0.48235294117647065], + [0.0,0.2176470588235293,0.4784313725490196], + [0.0,0.21176470588235285,0.4745098039215686], + [0.0,0.2058823529411764,0.47058823529411764], + [0.0,0.19999999999999996,0.4666666666666667], + [0.0,0.1941176470588235,0.4627450980392157], + [0.0,0.18823529411764706,0.45882352941176474], + [0.0,0.1823529411764706,0.4549019607843138], + [0.0,0.17647058823529405,0.4509803921568627], + [0.0,0.1705882352941176,0.44705882352941173], + [0.0,0.16470588235294115,0.44313725490196076], + [0.0,0.1588235294117647,0.4392156862745098], + [0.0,0.15294117647058825,0.43529411764705883], + [0.0,0.1470588235294118,0.43137254901960786], + [0.0,0.14117647058823535,0.4274509803921569], + [0.0,0.1352941176470589,0.42352941176470593], + [0.0,0.12941176470588245,0.41960784313725497], + [0.0,0.12352941176470589,0.4156862745098039], + [0.0,0.11764705882352944,0.4117647058823529], + [0.0,0.11176470588235299,0.40784313725490196], + [0.0,0.10588235294117654,0.403921568627451], + [0.0,0.10000000000000009,0.4], + [0.0,0.09411764705882364,0.39607843137254906], + [0.0,0.08823529411764719,0.3921568627450981], + [0.0,0.08235294117647052,0.388235294117647], + [0.0,0.07647058823529407,0.38431372549019605], + [0.0,0.07058823529411762,0.3803921568627451], + [0.0,0.06470588235294117,0.3764705882352941], + [0.0,0.05882352941176472,0.37254901960784315], + [0.0,0.05294117647058827,0.3686274509803922], + [0.0,0.04705882352941182,0.3647058823529412], + [0.0,0.04117647058823537,0.36078431372549025], + [0.0,0.03529411764705892,0.3568627450980393], + [0.0,0.02941176470588225,0.3529411764705882], + [0.0,0.0235294117647058,0.34901960784313724], + [0.0,0.01764705882352935,0.34509803921568627], + [0.0,0.0117647058823529,0.3411764705882353], + [0.0,0.00588235294117645,0.33725490196078434], + [0.0,0.0,0.33333333333333337], + [0.0,0.005882352941176394,0.3294117647058824], + [0.0,0.01176470588235301,0.3254901960784313], + [0.0,0.01764705882352946,0.32156862745098036], + [0.0,0.02352941176470591,0.3176470588235294], + [0.0,0.02941176470588236,0.3137254901960784], + [0.0,0.03529411764705881,0.30980392156862746], + [0.0,0.04117647058823526,0.3058823529411765], + [0.0,0.04705882352941171,0.3019607843137255], + [0.0,0.05294117647058816,0.29803921568627456], + [0.0,0.05882352941176461,0.2941176470588236], + [0.0,0.06470588235294122,0.2901960784313725], + [0.0,0.07058823529411767,0.28627450980392155], + [0.0,0.07647058823529412,0.2823529411764706], + [0.0,0.08235294117647057,0.2784313725490196], + [0.0,0.08823529411764702,0.27450980392156865], + [0.0,0.09411764705882347,0.2705882352941177], + [0.0,0.09999999999999992,0.2666666666666667], + [0.0,0.10588235294117654,0.26274509803921564], + [0.0,0.11176470588235299,0.2588235294117647], + [0.0,0.11764705882352944,0.2549019607843137], + [0.0,0.12352941176470589,0.25098039215686274], + [0.0,0.12941176470588234,0.24705882352941178], + [0.0,0.1352941176470588,0.2431372549019608], + [0.0,0.14117647058823524,0.23921568627450984], + [0.0,0.1470588235294117,0.23529411764705888], + [0.0,0.15294117647058814,0.2313725490196079], + [0.0,0.15882352941176475,0.22745098039215683], + [0.0,0.1647058823529412,0.22352941176470587], + [0.0,0.17058823529411765,0.2196078431372549], + [0.0,0.1764705882352941,0.21568627450980393], + [0.0,0.18235294117647055,0.21176470588235297], + [0.0,0.188235294117647,0.207843137254902], + [0.0,0.19411764705882345,0.20392156862745103], + [0.0,0.20000000000000007,0.19999999999999996], + [0.0,0.20588235294117652,0.196078431372549], + [0.0,0.21176470588235297,0.19215686274509802], + [0.0,0.21764705882352942,0.18823529411764706], + [0.0,0.22352941176470587,0.1843137254901961], + [0.0,0.22941176470588232,0.18039215686274512], + [0.0,0.23529411764705876,0.17647058823529416], + [0.0,0.24117647058823521,0.1725490196078432], + [0.0,0.24705882352941166,0.16862745098039222], + [0.0,0.2529411764705883,0.16470588235294115], + [0.0,0.25882352941176473,0.16078431372549018], + [0.0,0.2647058823529412,0.1568627450980392], + [0.0,0.27058823529411763,0.15294117647058825], + [0.0,0.2764705882352941,0.14901960784313728], + [0.0,0.28235294117647053,0.14509803921568631], + [0.0,0.288235294117647,0.14117647058823535], + [0.0,0.2941176470588236,0.13725490196078427], + [0.0,0.30000000000000004,0.1333333333333333], + [0.0,0.3058823529411765,0.12941176470588234], + [0.0,0.31176470588235294,0.12549019607843137], + [0.0,0.3176470588235294,0.1215686274509804], + [0.0,0.32352941176470584,0.11764705882352944], + [0.0,0.3294117647058823,0.11372549019607847], + [0.0,0.33529411764705874,0.1098039215686275], + [0.0,0.3411764705882352,0.10588235294117654], + [0.0,0.3470588235294118,0.10196078431372546], + [0.0,0.35294117647058826,0.0980392156862745], + [0.0,0.3588235294117647,0.09411764705882353], + [0.0,0.36470588235294116,0.09019607843137256], + [0.0,0.3705882352941176,0.0862745098039216], + [0.0,0.37647058823529406,0.08235294117647063], + [0.0,0.3823529411764705,0.07843137254901966], + [0.0,0.3882352941176471,0.07450980392156858], + [0.0,0.3941176470588236,0.07058823529411762], + [0.0,0.4,0.06666666666666665], + [0.0,0.40588235294117647,0.06274509803921569], + [0.0,0.4117647058823529,0.05882352941176472], + [0.0,0.41764705882352937,0.05490196078431375], + [0.0,0.4235294117647058,0.050980392156862786], + [0.0,0.42941176470588227,0.04705882352941182], + [0.0,0.4352941176470587,0.04313725490196085], + [0.0,0.44117647058823534,0.039215686274509776], + [0.0,0.4470588235294118,0.03529411764705881], + [0.0,0.45294117647058824,0.03137254901960784], + [0.0,0.4588235294117647,0.027450980392156876], + [0.0,0.46470588235294114,0.02352941176470591], + [0.0,0.4705882352941176,0.019607843137254943], + [0.0,0.47647058823529403,0.015686274509803977], + [0.0,0.48235294117647065,0.0117647058823529], + [0.0,0.4882352941176471,0.007843137254901933], + [0.0,0.49411764705882355,0.0039215686274509665], + [0.0,0.5,0.0] ], + pink: [ + [0.1178,0.0,0.0], + [0.13708468987292516,0.02541471953236659,0.02541471953236659], + [0.15636937974585033,0.05082943906473318,0.05082943906473318], + [0.1756540696187755,0.07624415859709976,0.07624415859709976], + [0.19493875949170067,0.10165887812946636,0.10165887812946636], + [0.20875212652265593,0.11289493498887616,0.11289493498887616], + [0.22229195182718714,0.1234221219866514,0.1234221219866514], + [0.23583177713171832,0.1339493089844266,0.1339493089844266], + [0.2493716024362495,0.14447649598220186,0.14447649598220186], + [0.26067678198272315,0.15278736681601388,0.15278736681601388], + [0.2717467577585813,0.1608649631289043,0.1608649631289043], + [0.2828167335344394,0.16894255944179473,0.16894255944179473], + [0.29388670931029753,0.17702015575468516,0.17702015575468516], + [0.3036964542082189,0.18401117088211205,0.18401117088211205], + [0.313296181455005,0.19082110710381298,0.19082110710381298], + [0.322895908701791,0.1976310433255139,0.1976310433255139], + [0.3324956359485771,0.20444097954721482,0.20444097954721482], + [0.3412817461097461,0.21059490199290198,0.21059490199290198], + [0.3498764370573782,0.2165944844630727,0.2165944844630727], + [0.35847112800501035,0.2225940669332434,0.2225940669332434], + [0.36706581895264245,0.2285936494034141,0.2285936494034141], + [0.37509428252934135,0.23415463154969035,0.23415463154969035], + [0.3829458197926433,0.2395785663853899,0.2395785663853899], + [0.3907973570559453,0.24500250122108944,0.24500250122108944], + [0.39864889431924727,0.25042643605678894,0.25042643605678894], + [0.4060872994763583,0.25553906587953645,0.25553906587953645], + [0.41336047145541266,0.2605271885147179,0.2605271885147179], + [0.42063364343446696,0.2655153111498994,0.2655153111498994], + [0.4279068154135213,0.27050343378508085,0.27050343378508085], + [0.43486900915971505,0.275261122867417,0.275261122867417], + [0.4416757336134983,0.2799036098628452,0.2799036098628452], + [0.4484824580672816,0.28454609685827337,0.28454609685827337], + [0.4552891825210649,0.2891885838537015,0.2891885838537015], + [0.4618563883249765,0.2936565556642615,0.2936565556642615], + [0.4682762182742183,0.29801714826014825,0.29801714826014825], + [0.47469604822345995,0.30237774085603497,0.30237774085603497], + [0.4811158781727017,0.3067383334519217,0.3067383334519217], + [0.48734835481511946,0.3109638114173408,0.3109638114173408], + [0.4934403373776903,0.31508796848267434,0.31508796848267434], + [0.4995323199402611,0.3192121255480079,0.3192121255480079], + [0.5056243025028319,0.3233362826133414,0.3233362826133414], + [0.5115686146842029,0.3273549608349608,0.3273549608349608], + [0.5173787028472322,0.3312777647577647,0.3312777647577647], + [0.5231887910102616,0.33520056868056863,0.33520056868056863], + [0.5289988791732909,0.33912337260337255,0.33912337260337255], + [0.5346917797925445,0.3429628745372274,0.3429628745372274], + [0.5402557971212677,0.3467107606380547,0.3467107606380547], + [0.545819814449991,0.350458646738882,0.350458646738882], + [0.5513838317787141,0.35420653283970926,0.35420653283970926], + [0.556854661983662,0.3578888702705173,0.3578888702705173], + [0.5622012673302673,0.3614838268066503,0.3614838268066503], + [0.5675478726768727,0.3650787833427833,0.3650787833427833], + [0.572894478023478,0.36867373987891633,0.36867373987891633], + [0.5781672848689907,0.3722169245073951,0.3722169245073951], + [0.5833201959042548,0.37567599855470446,0.37567599855470446], + [0.5884731069395187,0.3791350726020138,0.3791350726020138], + [0.5936260179747826,0.3825941466493231,0.3825941466493231], + [0.5987208602584484,0.3860127784880726,0.3860127784880726], + [0.6036995946489476,0.389350546531723,0.389350546531723], + [0.6086783290394466,0.3926883145753734,0.3926883145753734], + [0.6136570634299457,0.3960260826190238,0.3960260826190238], + [0.6185908941178941,0.3993325027948557,0.3993325027948557], + [0.6234124989394989,0.40256057661116484,0.40256057661116484], + [0.6282341037611038,0.4057886504274739,0.4057886504274739], + [0.6330557085827085,0.40901672424378305,0.40901672424378305], + [0.637843068763951,0.4122210857060269,0.4122210857060269], + [0.6425208852064733,0.41534959471688876,0.41534959471688876], + [0.6471987016489957,0.4184781037277508,0.4184781037277508], + [0.651876518091518,0.4216066127386127,0.4216066127386127], + [0.656529337246749,0.42471789198083315,0.42471789198083315], + [0.6610759653227889,0.4277559773718597,0.4277559773718597], + [0.6656225933988287,0.4307940627628863,0.4307940627628863], + [0.6701692214748686,0.43383214815391286,0.43383214815391286], + [0.6746985819081114,0.4368582980372392,0.4368582980372392], + [0.6791243980986333,0.4398128774624068,0.4398128774624068], + [0.6835502142891555,0.4427674568875745,0.4427674568875745], + [0.6879760304796776,0.44572203631274215,0.44572203631274215], + [0.6923911792290028,0.44866931572296276,0.44866931572296276], + [0.6967050776605482,0.451547306836248,0.451547306836248], + [0.7010189760920937,0.45442529794953324,0.45442529794953324], + [0.7053328745236392,0.4573032890628185,0.4573032890628185], + [0.7096418351584822,0.46017788617741556,0.46017788617741556], + [0.713852215839451,0.4629847242783713,0.4629847242783713], + [0.71806259652042,0.46579156237932706,0.46579156237932706], + [0.7222729772013889,0.46859840048028284,0.46859840048028284], + [0.7264833496713496,0.47140523295323294,0.47140523295323294], + [0.7305971302557185,0.474145859223271,0.474145859223271], + [0.7347109108400872,0.47688648549330903,0.47688648549330903], + [0.7388246914244561,0.47962711176334705,0.47962711176334705], + [0.7429384720088249,0.48236773803338506,0.48236773803338506], + [0.7469665974407149,0.48504977053153514,0.48504977053153514], + [0.7509904485233897,0.4877288790929967,0.4877288790929967], + [0.7550142996060643,0.49040798765445826,0.49040798765445826], + [0.7590381506887389,0.49308709621591973,0.49308709621591973], + [0.7609713375259257,0.4987535386431269,0.4957141170133523], + [0.7626846921804569,0.5047340975648622,0.49833566081136665], + [0.764398046834988,0.5107146564865976,0.5009572046093811], + [0.7661114014895192,0.5166952154083331,0.5035787484073955], + [0.7678116252311546,0.5224466187211481,0.5061536986435221], + [0.7695096622233093,0.5281598597285068,0.5087208894460071], + [0.771207699215464,0.5338731007358655,0.511288080248492], + [0.7729057362076186,0.5395863417432242,0.513855271050977], + [0.7745917716877717,0.5451095588105589,0.5163816567126568], + [0.776274985135691,0.5505880937008585,0.5188984474647416], + [0.7779581985836104,0.5560666285911581,0.5214152382168264], + [0.7796414120315297,0.5615451634814577,0.5239320289689113], + [0.7813135180519887,0.5668653704650763,0.5264119204704498], + [0.7829821550147433,0.5721361286770111,0.5288802876446994], + [0.7846507919774979,0.5774068868889458,0.531348654818949], + [0.7863194289402525,0.5826776451008805,0.5338170219931986], + [0.7879778290326526,0.5878156769937358,0.5362532665742666], + [0.7896321365693131,0.592900646784588,0.5386766689976691], + [0.7912864441059735,0.5979856165754401,0.5411000714210714], + [0.792940751642634,0.6030705863662923,0.5435234738444739], + [0.7945858340726576,0.6080438664732194,0.5459182125436831], + [0.7962263063013651,0.6129613302142126,0.5482986266888031], + [0.7978667785300726,0.6178787939552057,0.5506790408339232], + [0.7995072507587802,0.622796257696199,0.5530594549790432], + [0.8011394625896978,0.627619644684586,0.5554146290198054], + [0.8027665936285936,0.6323851670971672,0.5577542784182784], + [0.8043937246674894,0.6371506895097484,0.5600939278167514], + [0.8060208557063852,0.6419162119223296,0.5624335772152244], + [0.8076403615882439,0.6466026586323057,0.5647511983822572], + [0.8092541514373279,0.6512298279653574,0.5670523065657184], + [0.8108679412864119,0.6558569972984091,0.5693534147491794], + [0.8124817311354959,0.6604841666314608,0.5716545229326406], + [0.8140887371135931,0.6650443949151036,0.5739361399550875], + [0.8156895790378643,0.6695437983050345,0.5762000466516959], + [0.8172904209621357,0.6740432016949655,0.5784639533483042], + [0.8188912628864069,0.6785426050848965,0.5807278600449126], + [0.8204862720145073,0.6829862757376874,0.5829752507600156], + [0.8220748618383912,0.687368609531786,0.5852044647539354], + [0.8236634516622752,0.6917509433258844,0.5874336787478552], + [0.8252520414861592,0.696133277119983,0.5896628927417752], + [0.8268352328346446,0.7004691416846711,0.591877710801299], + [0.8284112226459285,0.7047430165467813,0.5940733247616189], + [0.8299872124572125,0.7090168914088913,0.5962689387219388], + [0.8315632022684964,0.7132907662710015,0.5984645526822586], + [0.8331346758202053,0.7175262529267236,0.6006479351062293], + [0.8346988067961009,0.7216993276880336,0.6028114313873726], + [0.8362629377719966,0.7258724024493436,0.6049749276685159], + [0.8378270687478923,0.7300454772106536,0.6071384239496592], + [0.8393873304476833,0.7341871861380096,0.6092916296028649], + [0.8409398496472614,0.7382661313934255,0.6114242435001846], + [0.8424923688468394,0.7423450766488413,0.6135568573975044], + [0.8440448880464174,0.7464240219042572,0.6156894712948242], + [0.8455941614259261,0.7504779178960943,0.6178137589580531], + [0.8471353159082571,0.7544691571814512,0.6199172198850434], + [0.848676470390588,0.7584603964668081,0.6220206808120338], + [0.850217624872919,0.7624516357521651,0.6241241417390241], + [0.8517560746661923,0.766423177845472,0.6262208409433704], + [0.8532858644312762,0.7703316523421817,0.6282958900772431], + [0.8548156541963601,0.7742401268388915,0.6303709392111156], + [0.856345443961444,0.7781486013356014,0.6324459883449883], + [0.8578731172023525,0.7820423071969542,0.6345159107869696], + [0.8593917893092599,0.7858732051454993,0.636564030482148], + [0.8609104614161673,0.7897041030940443,0.6386121501773266], + [0.8624291335230747,0.7935350010425892,0.6406602698725051], + [0.8639462890134066,0.7973554590258708,0.6427046509314744], + [0.8654543375802788,0.8011132274895216,0.6447265823651706], + [0.8669623861471508,0.8048709959531725,0.6467485137988667], + [0.868470434714023,0.8086287644168233,0.6487704452325629], + [0.8699774960106137,0.8123799745850334,0.6507899790098614], + [0.871475168096521,0.8160688135679901,0.6527867104183575], + [0.8729728401824284,0.8197576525509466,0.6547834418268536], + [0.8744705122683358,0.8234464915339033,0.6567801732353497], + [0.875967691160103,0.8271322069539717,0.6587757656002362], + [0.8774549867650456,0.8307553282241518,0.6607485322788852], + [0.8789422823699883,0.8343784494943318,0.6627212989575343], + [0.8804295779749308,0.8380015707645119,0.6646940656361833], + [0.8819168735798735,0.8416246920346919,0.6666668323148323], + [0.8833940406239229,0.8451860537872302,0.6686158833387068], + [0.8848712068069715,0.8487474102897632,0.6705649323465794], + [0.88634837299002,0.8523087667922962,0.672513981354452], + [0.8878255391730686,0.8558701232948291,0.6744630303623245], + [0.8892932943820002,0.8593752492270139,0.6763909046784341], + [0.8907605782022253,0.8628775586116763,0.6783177183699537], + [0.8922278620224503,0.8663798679963386,0.6802445320614733], + [0.8936951458426753,0.8698821773810009,0.6821713457529929], + [0.8951537127481245,0.8733335263408204,0.6840784905086081], + [0.8966113612645965,0.8767795062573884,0.6859835630019159], + [0.8980690097810686,0.8802254861739567,0.6878886354952237], + [0.8995266582975406,0.8836714660905248,0.6897937079885315], + [0.9009762604311428,0.8870717086728851,0.6916805702469231], + [0.9024245207029324,0.8904643238302061,0.6935643956601603], + [0.9038727809747221,0.8938569389875272,0.6954482210733974], + [0.9053210412465118,0.8972495541448482,0.6973320464866346], + [0.9067617021567022,0.9006007727797728,0.6991994732774732], + [0.9082005741838095,0.903942246709482,0.7010630398469222], + [0.9096394462109169,0.9072837206391913,0.7029266064163712], + [0.9110783182380242,0.9106251945689005,0.70479017298582], + [0.912510226144285,0.912510226144285,0.709362029686618], + [0.9139399569857806,0.9139399569857806,0.7147805292227646], + [0.9153696878272761,0.9153696878272761,0.7201990287589111], + [0.9167994186687717,0.9167994186687717,0.7256175282950577], + [0.9182226206469736,0.9182226206469736,0.730922566774508], + [0.9196432103028573,0.9196432103028573,0.736182207328266], + [0.9210637999587411,0.9210637999587411,0.7414418478820244], + [0.9224843896146249,0.9224843896146249,0.7467014884357827], + [0.9238992150488621,0.9238992150488621,0.7518642900658784], + [0.9253111576372752,0.9253111576372752,0.7569786598861306], + [0.9267231002256885,0.9267231002256885,0.7620930297063827], + [0.9281350428141016,0.9281350428141016,0.7672073995266349], + [0.9295416329109858,0.9295416329109858,0.7722387292640234], + [0.9309449284319284,0.9309449284319284,0.777218946008946], + [0.932348223952871,0.932348223952871,0.7821991627538686], + [0.9337515194738136,0.9337515194738136,0.7871793794987912], + [0.9351500153979566,0.9351500153979566,0.7920885904440021], + [0.9365449109104992,0.9365449109104992,0.7969445364764188], + [0.9379398064230418,0.9379398064230418,0.8018004825088355], + [0.9393347019355843,0.9393347019355843,0.8066564285412521], + [0.9407251978177272,0.9407251978177272,0.8114522031579091], + [0.9421116933218697,0.9421116933218697,0.8161932667225019], + [0.9434981888260123,0.9434981888260123,0.8209343302870951], + [0.9448846843301549,0.9448846843301549,0.825675393851688], + [0.9462672978074743,0.9462672978074743,0.8303651676073441], + [0.9476456403622874,0.9476456403622874,0.8349985134171606], + [0.9490239829171006,0.9490239829171006,0.8396318592269769], + [0.9504023254719137,0.9504023254719137,0.8442652050367934], + [0.951777174202586,0.951777174202586,0.8488555662223309], + [0.9531473638080697,0.9531473638080697,0.8533886060494884], + [0.9545175534135535,0.9545175534135535,0.8579216458766459], + [0.9558877430190371,0.9558877430190371,0.8624546857038033], + [0.9572549211128035,0.9572549211128035,0.8669519638293167], + [0.9586172048280284,0.9586172048280284,0.8713911212096506], + [0.9599794885432533,0.9599794885432533,0.8758302785899845], + [0.9613417722584782,0.9613417722584782,0.8802694359703184], + [0.9627015032469739,0.9627015032469739,0.8846789487821841], + [0.9640561281310105,0.9640561281310105,0.889029164897106], + [0.9654107530150471,0.9654107530150471,0.8933793810120281], + [0.9667653778990838,0.9667653778990838,0.8977295971269501], + [0.9681178147316383,0.9681178147316383,0.9020560975870977], + [0.9694647807844866,0.9694647807844866,0.9063233018543019], + [0.9708117468373351,0.9708117468373351,0.9105905061215062], + [0.9721587128901834,0.9721587128901834,0.9148577103887104], + [0.973503914385385,0.973503914385385,0.919106092707681], + [0.9748434686661157,0.9748434686661157,0.9232942380722969], + [0.9761830229468464,0.9761830229468464,0.9274823834369129], + [0.9775225772275772,0.9775225772275772,0.9316705288015288], + [0.9788607198621905,0.9788607198621905,0.9358444635952283], + [0.9801928623708035,0.9801928623708035,0.9399579971205265], + [0.9815250048794166,0.9815250048794166,0.9440715306458247], + [0.9828571473880297,0.9828571473880297,0.9481850641711229], + [0.9841882311620547,0.9841882311620547,0.9522885044266809], + [0.9855129618985501,0.9855129618985501,0.9563313790577906], + [0.9868376926350456,0.9868376926350456,0.9603742536889007], + [0.988162423371541,0.988162423371541,0.9644171283200107], + [0.9894864953398483,0.9894864953398483,0.9684536034887212], + [0.9908043084223673,0.9908043084223673,0.972429278052631], + [0.9921221215048862,0.9921221215048862,0.9764049526165409], + [0.9934399345874052,0.9934399345874052,0.9803806271804507], + [0.9947574065221124,0.9947574065221124,0.9843532549414903], + [0.9960680548915843,0.9960680548915843,0.9882649412061177], + [0.9973787032610562,0.9973787032610562,0.9921766274707451], + [0.9986893516305281,0.9986893516305281,0.9960883137353725], + [1.0,1.0,1.0] ], + pink_r: [ + [1.0,1.0,1.0], + [0.9986893516305281,0.9986893516305281,0.9960883137353725], + [0.9973787032610562,0.9973787032610562,0.9921766274707451], + [0.9960680548915843,0.9960680548915843,0.9882649412061177], + [0.9947574065221124,0.9947574065221124,0.9843532549414903], + [0.9934399345874052,0.9934399345874052,0.9803806271804507], + [0.9921221215048862,0.9921221215048862,0.9764049526165409], + [0.9908043084223673,0.9908043084223673,0.972429278052631], + [0.9894864953398483,0.9894864953398483,0.9684536034887212], + [0.988162423371541,0.988162423371541,0.9644171283200107], + [0.9868376926350456,0.9868376926350456,0.9603742536889007], + [0.9855129618985501,0.9855129618985501,0.9563313790577908], + [0.9841882311620547,0.9841882311620547,0.9522885044266809], + [0.9828571473880297,0.9828571473880297,0.9481850641711229], + [0.9815250048794166,0.9815250048794166,0.9440715306458247], + [0.9801928623708035,0.9801928623708035,0.9399579971205265], + [0.9788607198621905,0.9788607198621905,0.9358444635952283], + [0.9775225772275772,0.9775225772275772,0.9316705288015288], + [0.9761830229468464,0.9761830229468464,0.9274823834369128], + [0.9748434686661157,0.9748434686661157,0.9232942380722969], + [0.973503914385385,0.973503914385385,0.919106092707681], + [0.9721587128901834,0.9721587128901834,0.9148577103887103], + [0.9708117468373351,0.9708117468373351,0.9105905061215062], + [0.9694647807844866,0.9694647807844866,0.9063233018543019], + [0.9681178147316383,0.9681178147316383,0.9020560975870976], + [0.9667653778990838,0.9667653778990838,0.8977295971269501], + [0.9654107530150471,0.9654107530150471,0.8933793810120281], + [0.9640561281310105,0.9640561281310105,0.889029164897106], + [0.9627015032469739,0.9627015032469739,0.8846789487821841], + [0.9613417722584782,0.9613417722584782,0.8802694359703183], + [0.9599794885432533,0.9599794885432533,0.8758302785899844], + [0.9586172048280284,0.9586172048280284,0.8713911212096506], + [0.9572549211128035,0.9572549211128035,0.8669519638293167], + [0.9558877430190371,0.9558877430190371,0.8624546857038033], + [0.9545175534135534,0.9545175534135534,0.8579216458766459], + [0.9531473638080696,0.9531473638080696,0.8533886060494884], + [0.951777174202586,0.951777174202586,0.8488555662223309], + [0.9504023254719137,0.9504023254719137,0.8442652050367934], + [0.9490239829171006,0.9490239829171006,0.8396318592269769], + [0.9476456403622874,0.9476456403622874,0.8349985134171605], + [0.9462672978074743,0.9462672978074743,0.8303651676073441], + [0.9448846843301549,0.9448846843301549,0.825675393851688], + [0.9434981888260123,0.9434981888260123,0.8209343302870951], + [0.9421116933218698,0.9421116933218698,0.816193266722502], + [0.9407251978177272,0.9407251978177272,0.811452203157909], + [0.9393347019355843,0.9393347019355843,0.8066564285412521], + [0.9379398064230418,0.9379398064230418,0.8018004825088354], + [0.9365449109104992,0.9365449109104992,0.7969445364764188], + [0.9351500153979566,0.9351500153979566,0.7920885904440021], + [0.9337515194738136,0.9337515194738136,0.7871793794987912], + [0.932348223952871,0.932348223952871,0.7821991627538686], + [0.9309449284319284,0.9309449284319284,0.7772189460089459], + [0.9295416329109858,0.9295416329109858,0.7722387292640234], + [0.9281350428141016,0.9281350428141016,0.7672073995266349], + [0.9267231002256884,0.9267231002256884,0.7620930297063826], + [0.9253111576372752,0.9253111576372752,0.7569786598861304], + [0.9238992150488621,0.9238992150488621,0.7518642900658783], + [0.9224843896146249,0.9224843896146249,0.7467014884357825], + [0.9210637999587411,0.9210637999587411,0.7414418478820243], + [0.9196432103028573,0.9196432103028573,0.7361822073282661], + [0.9182226206469736,0.9182226206469736,0.7309225667745078], + [0.9167994186687716,0.9167994186687716,0.7256175282950577], + [0.9153696878272761,0.9153696878272761,0.7201990287589111], + [0.9139399569857806,0.9139399569857806,0.7147805292227645], + [0.912510226144285,0.912510226144285,0.7093620296866179], + [0.9110783182380241,0.9106251945689005,0.70479017298582], + [0.9096394462109169,0.9072837206391913,0.7029266064163712], + [0.9082005741838095,0.903942246709482,0.7010630398469222], + [0.9067617021567022,0.9006007727797728,0.6991994732774732], + [0.9053210412465118,0.8972495541448483,0.6973320464866347], + [0.9038727809747221,0.8938569389875273,0.6954482210733975], + [0.9024245207029324,0.8904643238302061,0.6935643956601604], + [0.9009762604311428,0.8870717086728851,0.6916805702469232], + [0.8995266582975406,0.8836714660905249,0.6897937079885315], + [0.8980690097810686,0.8802254861739568,0.6878886354952237], + [0.8966113612645966,0.8767795062573887,0.685983563001916], + [0.8951537127481246,0.8733335263408205,0.6840784905086083], + [0.8936951458426753,0.8698821773810009,0.6821713457529929], + [0.8922278620224503,0.8663798679963386,0.6802445320614733], + [0.8907605782022253,0.8628775586116763,0.6783177183699537], + [0.8892932943820003,0.8593752492270139,0.6763909046784341], + [0.8878255391730686,0.8558701232948291,0.6744630303623245], + [0.8863483729900201,0.8523087667922963,0.672513981354452], + [0.8848712068069715,0.8487474102897632,0.6705649323465794], + [0.8833940406239229,0.8451860537872302,0.6686158833387069], + [0.8819168735798736,0.841624692034692,0.6666668323148324], + [0.8804295779749309,0.8380015707645119,0.6646940656361833], + [0.8789422823699883,0.8343784494943318,0.6627212989575343], + [0.8774549867650456,0.8307553282241518,0.6607485322788852], + [0.875967691160103,0.8271322069539717,0.6587757656002362], + [0.8744705122683358,0.8234464915339034,0.6567801732353498], + [0.8729728401824285,0.8197576525509467,0.6547834418268536], + [0.871475168096521,0.8160688135679901,0.6527867104183575], + [0.8699774960106137,0.8123799745850334,0.6507899790098614], + [0.868470434714023,0.8086287644168233,0.6487704452325629], + [0.8669623861471509,0.8048709959531725,0.6467485137988668], + [0.8654543375802788,0.8011132274895216,0.6447265823651706], + [0.8639462890134066,0.7973554590258708,0.6427046509314744], + [0.8624291335230747,0.7935350010425893,0.6406602698725051], + [0.8609104614161673,0.7897041030940443,0.6386121501773266], + [0.8593917893092599,0.7858732051454993,0.636564030482148], + [0.8578731172023525,0.7820423071969542,0.6345159107869696], + [0.856345443961444,0.7781486013356014,0.6324459883449883], + [0.8548156541963601,0.7742401268388915,0.6303709392111156], + [0.8532858644312762,0.7703316523421817,0.6282958900772431], + [0.8517560746661923,0.766423177845472,0.6262208409433704], + [0.8502176248729191,0.7624516357521652,0.6241241417390242], + [0.848676470390588,0.7584603964668082,0.6220206808120338], + [0.8471353159082571,0.7544691571814512,0.6199172198850434], + [0.8455941614259261,0.7504779178960943,0.6178137589580531], + [0.8440448880464174,0.7464240219042572,0.6156894712948242], + [0.8424923688468394,0.7423450766488413,0.6135568573975044], + [0.8409398496472614,0.7382661313934255,0.6114242435001846], + [0.8393873304476833,0.7341871861380096,0.6092916296028649], + [0.8378270687478923,0.7300454772106537,0.6071384239496592], + [0.8362629377719966,0.7258724024493436,0.6049749276685159], + [0.8346988067961009,0.7216993276880336,0.6028114313873726], + [0.8331346758202053,0.7175262529267236,0.6006479351062293], + [0.8315632022684964,0.7132907662710015,0.5984645526822586], + [0.8299872124572125,0.7090168914088913,0.5962689387219388], + [0.8284112226459285,0.7047430165467813,0.5940733247616189], + [0.8268352328346446,0.7004691416846711,0.591877710801299], + [0.8252520414861592,0.6961332771199831,0.5896628927417752], + [0.8236634516622752,0.6917509433258845,0.5874336787478552], + [0.8220748618383912,0.687368609531786,0.5852044647539354], + [0.8204862720145073,0.6829862757376874,0.5829752507600156], + [0.8188912628864069,0.6785426050848965,0.5807278600449126], + [0.8172904209621357,0.6740432016949656,0.5784639533483042], + [0.8156895790378644,0.6695437983050345,0.5762000466516959], + [0.8140887371135931,0.6650443949151036,0.5739361399550875], + [0.8124817311354959,0.6604841666314609,0.5716545229326406], + [0.8108679412864119,0.6558569972984092,0.5693534147491794], + [0.809254151437328,0.6512298279653576,0.5670523065657185], + [0.807640361588244,0.6466026586323057,0.5647511983822573], + [0.8060208557063852,0.6419162119223296,0.5624335772152244], + [0.8043937246674894,0.6371506895097484,0.5600939278167514], + [0.8027665936285936,0.6323851670971672,0.5577542784182784], + [0.8011394625896978,0.627619644684586,0.5554146290198054], + [0.7995072507587802,0.622796257696199,0.5530594549790432], + [0.7978667785300726,0.6178787939552057,0.5506790408339232], + [0.796226306301365,0.6129613302142125,0.5482986266888031], + [0.7945858340726576,0.6080438664732194,0.5459182125436831], + [0.792940751642634,0.6030705863662922,0.5435234738444739], + [0.7912864441059735,0.59798561657544,0.5411000714210714], + [0.7896321365693131,0.592900646784588,0.538676668997669], + [0.7879778290326526,0.5878156769937358,0.5362532665742666], + [0.7863194289402525,0.5826776451008804,0.5338170219931985], + [0.7846507919774979,0.5774068868889457,0.531348654818949], + [0.7829821550147433,0.5721361286770112,0.5288802876446995], + [0.7813135180519887,0.5668653704650763,0.5264119204704498], + [0.7796414120315297,0.5615451634814577,0.5239320289689113], + [0.7779581985836104,0.5560666285911581,0.5214152382168264], + [0.776274985135691,0.5505880937008585,0.5188984474647416], + [0.7745917716877717,0.5451095588105589,0.5163816567126568], + [0.7729057362076186,0.5395863417432242,0.513855271050977], + [0.771207699215464,0.5338731007358655,0.511288080248492], + [0.7695096622233093,0.5281598597285069,0.5087208894460071], + [0.7678116252311548,0.5224466187211483,0.5061536986435222], + [0.7661114014895192,0.5166952154083332,0.5035787484073955], + [0.7643980468349881,0.5107146564865979,0.5009572046093811], + [0.762684692180457,0.5047340975648624,0.49833566081136677], + [0.7609713375259258,0.49875353864312705,0.4957141170133524], + [0.759038150688739,0.49308709621591984,0.49308709621591984], + [0.7550142996060644,0.4904079876544583,0.4904079876544583], + [0.7509904485233898,0.48772887909299684,0.48772887909299684], + [0.7469665974407151,0.48504977053153525,0.48504977053153525], + [0.7429384720088249,0.48236773803338506,0.48236773803338506], + [0.7388246914244562,0.47962711176334705,0.47962711176334705], + [0.7347109108400873,0.47688648549330903,0.47688648549330903], + [0.7305971302557185,0.474145859223271,0.474145859223271], + [0.7264833496713498,0.471405232953233,0.471405232953233], + [0.7222729772013889,0.4685984004802829,0.4685984004802829], + [0.71806259652042,0.4657915623793271,0.4657915623793271], + [0.7138522158394511,0.46298472427837134,0.46298472427837134], + [0.7096418351584822,0.46017788617741556,0.46017788617741556], + [0.7053328745236392,0.4573032890628185,0.4573032890628185], + [0.7010189760920937,0.45442529794953324,0.45442529794953324], + [0.6967050776605482,0.451547306836248,0.451547306836248], + [0.6923911792290028,0.44866931572296276,0.44866931572296276], + [0.6879760304796776,0.4457220363127422,0.4457220363127422], + [0.6835502142891556,0.44276745688757463,0.44276745688757463], + [0.6791243980986335,0.4398128774624069,0.4398128774624069], + [0.6746985819081114,0.43685829803723925,0.43685829803723925], + [0.6701692214748686,0.43383214815391286,0.43383214815391286], + [0.6656225933988288,0.4307940627628863,0.4307940627628863], + [0.6610759653227889,0.4277559773718598,0.4277559773718598], + [0.6565293372467491,0.4247178919808332,0.4247178919808332], + [0.6518765180915181,0.4216066127386128,0.4216066127386128], + [0.6471987016489957,0.4184781037277508,0.4184781037277508], + [0.6425208852064734,0.4153495947168888,0.4153495947168888], + [0.6378430687639511,0.4122210857060269,0.4122210857060269], + [0.6330557085827085,0.40901672424378305,0.40901672424378305], + [0.6282341037611038,0.4057886504274739,0.4057886504274739], + [0.6234124989394989,0.40256057661116484,0.40256057661116484], + [0.6185908941178941,0.3993325027948557,0.3993325027948557], + [0.6136570634299457,0.3960260826190238,0.3960260826190238], + [0.6086783290394467,0.39268831457537345,0.39268831457537345], + [0.6036995946489475,0.38935054653172296,0.38935054653172296], + [0.5987208602584484,0.3860127784880726,0.3860127784880726], + [0.5936260179747825,0.38259414664932306,0.38259414664932306], + [0.5884731069395186,0.37913507260201373,0.37913507260201373], + [0.5833201959042547,0.3756759985547044,0.3756759985547044], + [0.5781672848689907,0.372216924507395,0.372216924507395], + [0.572894478023478,0.3686737398789163,0.3686737398789163], + [0.5675478726768727,0.3650787833427833,0.3650787833427833], + [0.5622012673302673,0.3614838268066503,0.3614838268066503], + [0.556854661983662,0.3578888702705173,0.3578888702705173], + [0.5513838317787141,0.35420653283970926,0.35420653283970926], + [0.5458198144499908,0.350458646738882,0.350458646738882], + [0.5402557971212676,0.34671076063805467,0.34671076063805467], + [0.5346917797925443,0.3429628745372274,0.3429628745372274], + [0.5289988791732908,0.3391233726033725,0.3391233726033725], + [0.5231887910102616,0.3352005686805687,0.3352005686805687], + [0.5173787028472322,0.33127776475776466,0.33127776475776466], + [0.5115686146842028,0.32735496083496074,0.32735496083496074], + [0.5056243025028319,0.32333628261334135,0.32333628261334135], + [0.49953231994026104,0.3192121255480078,0.3192121255480078], + [0.4934403373776902,0.3150879684826743,0.3150879684826743], + [0.48734835481511946,0.3109638114173408,0.3109638114173408], + [0.4811158781727016,0.30673833345192164,0.30673833345192164], + [0.47469604822345995,0.30237774085603497,0.30237774085603497], + [0.4682762182742182,0.29801714826014825,0.29801714826014825], + [0.46185638832497655,0.2936565556642615,0.2936565556642615], + [0.4552891825210649,0.2891885838537015,0.2891885838537015], + [0.4484824580672816,0.28454609685827337,0.28454609685827337], + [0.4416757336134983,0.2799036098628452,0.2799036098628452], + [0.4348690091597151,0.275261122867417,0.275261122867417], + [0.4279068154135213,0.27050343378508085,0.27050343378508085], + [0.4206336434344672,0.2655153111498995,0.2655153111498995], + [0.4133604714554126,0.2605271885147179,0.2605271885147179], + [0.40608729947635824,0.2555390658795364,0.2555390658795364], + [0.39864889431924716,0.2504264360567889,0.2504264360567889], + [0.3907973570559452,0.24500250122108935,0.24500250122108935], + [0.38294581979264325,0.23957856638538985,0.23957856638538985], + [0.3750942825293413,0.23415463154969032,0.23415463154969032], + [0.3670658189526424,0.22859364940341406,0.22859364940341406], + [0.3584711280050103,0.22259406693324338,0.22259406693324338], + [0.3498764370573782,0.21659448446307267,0.21659448446307267], + [0.3412817461097461,0.21059490199290198,0.21059490199290198], + [0.3324956359485771,0.20444097954721482,0.20444097954721482], + [0.3228959087017911,0.19763104332551393,0.19763104332551393], + [0.31329618145500504,0.190821107103813,0.190821107103813], + [0.30369645420821895,0.18401117088211208,0.18401117088211208], + [0.2938867093102976,0.17702015575468522,0.17702015575468522], + [0.28281673353443976,0.16894255944179495,0.16894255944179495], + [0.27174675775858126,0.16086496312890425,0.16086496312890425], + [0.26067678198272304,0.1527873668160138,0.1527873668160138], + [0.2493716024362493,0.14447649598220172,0.14447649598220172], + [0.23583177713171816,0.1339493089844265,0.1339493089844265], + [0.22229195182718697,0.12342212198665128,0.12342212198665128], + [0.20875212652265582,0.11289493498887607,0.11289493498887607], + [0.19493875949170053,0.10165887812946618,0.10165887812946618], + [0.1756540696187754,0.07624415859709964,0.07624415859709964], + [0.15636937974585027,0.0508294390647331,0.0508294390647331], + [0.13708468987292513,0.025414719532366542,0.025414719532366542], + [0.1178,0.0,0.0] ], + plasma: [ + [0.050383,0.029803,0.527975], + [0.063536,0.028426,0.533124], + [0.075353,0.027206,0.538007], + [0.086222,0.026125,0.542658], + [0.096379,0.025165,0.547103], + [0.10598,0.024309,0.551368], + [0.115124,0.023556,0.555468], + [0.123903,0.022878,0.559423], + [0.132381,0.022258,0.56325], + [0.140603,0.021687,0.566959], + [0.148607,0.021154,0.570562], + [0.156421,0.020651,0.574065], + [0.16407,0.020171,0.577478], + [0.171574,0.019706,0.580806], + [0.17895,0.019252,0.584054], + [0.186213,0.018803,0.587228], + [0.193374,0.018354,0.59033], + [0.200445,0.017902,0.593364], + [0.207435,0.017442,0.596333], + [0.21435,0.016973,0.599239], + [0.221197,0.016497,0.602083], + [0.227983,0.016007,0.604867], + [0.234715,0.015502,0.607592], + [0.241396,0.014979,0.610259], + [0.248032,0.014439,0.612868], + [0.254627,0.013882,0.615419], + [0.261183,0.013308,0.617911], + [0.267703,0.012716,0.620346], + [0.274191,0.012109,0.622722], + [0.280648,0.011488,0.625038], + [0.287076,0.010855,0.627295], + [0.293478,0.010213,0.62949], + [0.299855,0.009561,0.631624], + [0.30621,0.008902,0.633694], + [0.312543,0.008239,0.6357], + [0.318856,0.007576,0.63764], + [0.32515,0.006915,0.639512], + [0.331426,0.006261,0.641316], + [0.337683,0.005618,0.643049], + [0.343925,0.004991,0.64471], + [0.35015,0.004382,0.646298], + [0.356359,0.003798,0.64781], + [0.362553,0.003243,0.649245], + [0.368733,0.002724,0.650601], + [0.374897,0.002245,0.651876], + [0.381047,0.001814,0.653068], + [0.387183,0.001434,0.654177], + [0.393304,0.001114,0.655199], + [0.399411,0.000859,0.656133], + [0.405503,0.000678,0.656977], + [0.41158,0.000577,0.65773], + [0.417642,0.000564,0.65839], + [0.423689,0.000646,0.658956], + [0.429719,0.000831,0.659425], + [0.435734,0.001127,0.659797], + [0.441732,0.00154,0.660069], + [0.447714,0.00208,0.66024], + [0.453677,0.002755,0.66031], + [0.459623,0.003574,0.660277], + [0.46555,0.004545,0.660139], + [0.471457,0.005678,0.659897], + [0.477344,0.00698,0.659549], + [0.48321,0.00846,0.659095], + [0.489055,0.010127,0.658534], + [0.494877,0.01199,0.657865], + [0.500678,0.014055,0.657088], + [0.506454,0.016333,0.656202], + [0.512206,0.018833,0.655209], + [0.517933,0.021563,0.654109], + [0.523633,0.024532,0.652901], + [0.529306,0.027747,0.651586], + [0.534952,0.031217,0.650165], + [0.54057,0.03495,0.64864], + [0.546157,0.038954,0.64701], + [0.551715,0.043136,0.645277], + [0.557243,0.047331,0.643443], + [0.562738,0.051545,0.641509], + [0.568201,0.055778,0.639477], + [0.573632,0.060028,0.637349], + [0.579029,0.064296,0.635126], + [0.584391,0.068579,0.632812], + [0.589719,0.072878,0.630408], + [0.595011,0.07719,0.627917], + [0.600266,0.081516,0.625342], + [0.605485,0.085854,0.622686], + [0.610667,0.090204,0.619951], + [0.615812,0.094564,0.61714], + [0.620919,0.098934,0.614257], + [0.625987,0.103312,0.611305], + [0.631017,0.107699,0.608287], + [0.636008,0.112092,0.605205], + [0.640959,0.116492,0.602065], + [0.645872,0.120898,0.598867], + [0.650746,0.125309,0.595617], + [0.65558,0.129725,0.592317], + [0.660374,0.134144,0.588971], + [0.665129,0.138566,0.585582], + [0.669845,0.142992,0.582154], + [0.674522,0.147419,0.578688], + [0.67916,0.151848,0.575189], + [0.683758,0.156278,0.57166], + [0.688318,0.160709,0.568103], + [0.69284,0.165141,0.564522], + [0.697324,0.169573,0.560919], + [0.701769,0.174005,0.557296], + [0.706178,0.178437,0.553657], + [0.710549,0.182868,0.550004], + [0.714883,0.187299,0.546338], + [0.719181,0.191729,0.542663], + [0.723444,0.196158,0.538981], + [0.72767,0.200586,0.535293], + [0.731862,0.205013,0.531601], + [0.736019,0.209439,0.527908], + [0.740143,0.213864,0.524216], + [0.744232,0.218288,0.520524], + [0.748289,0.222711,0.516834], + [0.752312,0.227133,0.513149], + [0.756304,0.231555,0.509468], + [0.760264,0.235976,0.505794], + [0.764193,0.240396,0.502126], + [0.76809,0.244817,0.498465], + [0.771958,0.249237,0.494813], + [0.775796,0.253658,0.491171], + [0.779604,0.258078,0.487539], + [0.783383,0.2625,0.483918], + [0.787133,0.266922,0.480307], + [0.790855,0.271345,0.476706], + [0.794549,0.27577,0.473117], + [0.798216,0.280197,0.469538], + [0.801855,0.284626,0.465971], + [0.805467,0.289057,0.462415], + [0.809052,0.293491,0.45887], + [0.812612,0.297928,0.455338], + [0.816144,0.302368,0.451816], + [0.819651,0.306812,0.448306], + [0.823132,0.311261,0.444806], + [0.826588,0.315714,0.441316], + [0.830018,0.320172,0.437836], + [0.833422,0.324635,0.434366], + [0.836801,0.329105,0.430905], + [0.840155,0.33358,0.427455], + [0.843484,0.338062,0.424013], + [0.846788,0.342551,0.420579], + [0.850066,0.347048,0.417153], + [0.853319,0.351553,0.413734], + [0.856547,0.356066,0.410322], + [0.85975,0.360588,0.406917], + [0.862927,0.365119,0.403519], + [0.866078,0.36966,0.400126], + [0.869203,0.374212,0.396738], + [0.872303,0.378774,0.393355], + [0.875376,0.383347,0.389976], + [0.878423,0.387932,0.3866], + [0.881443,0.392529,0.383229], + [0.884436,0.397139,0.37986], + [0.887402,0.401762,0.376494], + [0.89034,0.406398,0.37313], + [0.89325,0.411048,0.369768], + [0.896131,0.415712,0.366407], + [0.898984,0.420392,0.363047], + [0.901807,0.425087,0.359688], + [0.904601,0.429797,0.356329], + [0.907365,0.434524,0.35297], + [0.910098,0.439268,0.34961], + [0.9128,0.444029,0.346251], + [0.915471,0.448807,0.34289], + [0.918109,0.453603,0.339529], + [0.920714,0.458417,0.336166], + [0.923287,0.463251,0.332801], + [0.925825,0.468103,0.329435], + [0.928329,0.472975,0.326067], + [0.930798,0.477867,0.322697], + [0.933232,0.48278,0.319325], + [0.93563,0.487712,0.315952], + [0.93799,0.492667,0.312575], + [0.940313,0.497642,0.309197], + [0.942598,0.502639,0.305816], + [0.944844,0.507658,0.302433], + [0.947051,0.512699,0.299049], + [0.949217,0.517763,0.295662], + [0.951344,0.52285,0.292275], + [0.953428,0.52796,0.288883], + [0.95547,0.533093,0.28549], + [0.957469,0.53825,0.282096], + [0.959424,0.543431,0.278701], + [0.961336,0.548636,0.275305], + [0.963203,0.553865,0.271909], + [0.965024,0.559118,0.268513], + [0.966798,0.564396,0.265118], + [0.968526,0.5697,0.261721], + [0.970205,0.575028,0.258325], + [0.971835,0.580382,0.254931], + [0.973416,0.585761,0.25154], + [0.974947,0.591165,0.248151], + [0.976428,0.596595,0.244767], + [0.977856,0.602051,0.241387], + [0.979233,0.607532,0.238013], + [0.980556,0.613039,0.234646], + [0.981826,0.618572,0.231287], + [0.983041,0.624131,0.227937], + [0.984199,0.629718,0.224595], + [0.985301,0.63533,0.221265], + [0.986345,0.640969,0.217948], + [0.987332,0.646633,0.214648], + [0.98826,0.652325,0.211364], + [0.989128,0.658043,0.2081], + [0.989935,0.663787,0.204859], + [0.990681,0.669558,0.201642], + [0.991365,0.675355,0.198453], + [0.991985,0.681179,0.195295], + [0.992541,0.68703,0.19217], + [0.993032,0.692907,0.189084], + [0.993456,0.69881,0.186041], + [0.993814,0.704741,0.183043], + [0.994103,0.710698,0.180097], + [0.994324,0.716681,0.177208], + [0.994474,0.722691,0.174381], + [0.994553,0.728728,0.171622], + [0.994561,0.734791,0.168938], + [0.994495,0.74088,0.166335], + [0.994355,0.746995,0.163821], + [0.994141,0.753137,0.161404], + [0.993851,0.759304,0.159092], + [0.993482,0.765499,0.156891], + [0.993033,0.77172,0.154808], + [0.992505,0.777967,0.152855], + [0.991897,0.784239,0.151042], + [0.991209,0.790537,0.149377], + [0.990439,0.796859,0.14787], + [0.989587,0.803205,0.146529], + [0.988648,0.809579,0.145357], + [0.987621,0.815978,0.144363], + [0.986509,0.822401,0.143557], + [0.985314,0.828846,0.142945], + [0.984031,0.835315,0.142528], + [0.982653,0.841812,0.142303], + [0.98119,0.848329,0.142279], + [0.979644,0.854866,0.142453], + [0.977995,0.861432,0.142808], + [0.976265,0.868016,0.143351], + [0.974443,0.874622,0.144061], + [0.97253,0.88125,0.144923], + [0.970533,0.887896,0.145919], + [0.968443,0.894564,0.147014], + [0.966271,0.901249,0.14818], + [0.964021,0.90795,0.14937], + [0.961681,0.914672,0.15052], + [0.959276,0.921407,0.151566], + [0.956808,0.928152,0.152409], + [0.954287,0.934908,0.152921], + [0.951726,0.941671,0.152925], + [0.949151,0.948435,0.152178], + [0.946602,0.95519,0.150328], + [0.944152,0.961916,0.146861], + [0.941896,0.96859,0.140956], + [0.940015,0.975158,0.131326] ], + plasma_r: [ + [0.940015,0.975158,0.131326], + [0.941896,0.96859,0.140956], + [0.944152,0.961916,0.146861], + [0.946602,0.95519,0.150328], + [0.949151,0.948435,0.152178], + [0.951726,0.941671,0.152925], + [0.954287,0.934908,0.152921], + [0.956808,0.928152,0.152409], + [0.959276,0.921407,0.151566], + [0.961681,0.914672,0.15052], + [0.964021,0.90795,0.14937], + [0.966271,0.901249,0.14818], + [0.968443,0.894564,0.147014], + [0.970533,0.887896,0.145919], + [0.97253,0.88125,0.144923], + [0.974443,0.874622,0.144061], + [0.976265,0.868016,0.143351], + [0.977995,0.861432,0.142808], + [0.979644,0.854866,0.142453], + [0.98119,0.848329,0.142279], + [0.982653,0.841812,0.142303], + [0.984031,0.835315,0.142528], + [0.985314,0.828846,0.142945], + [0.986509,0.822401,0.143557], + [0.987621,0.815978,0.144363], + [0.988648,0.809579,0.145357], + [0.989587,0.803205,0.146529], + [0.990439,0.796859,0.14787], + [0.991209,0.790537,0.149377], + [0.991897,0.784239,0.151042], + [0.992505,0.777967,0.152855], + [0.993033,0.77172,0.154808], + [0.993482,0.765499,0.156891], + [0.993851,0.759304,0.159092], + [0.994141,0.753137,0.161404], + [0.994355,0.746995,0.163821], + [0.994495,0.74088,0.166335], + [0.994561,0.734791,0.168938], + [0.994553,0.728728,0.171622], + [0.994474,0.722691,0.174381], + [0.994324,0.716681,0.177208], + [0.994103,0.710698,0.180097], + [0.993814,0.704741,0.183043], + [0.993456,0.69881,0.186041], + [0.993032,0.692907,0.189084], + [0.992541,0.68703,0.19217], + [0.991985,0.681179,0.195295], + [0.991365,0.675355,0.198453], + [0.990681,0.669558,0.201642], + [0.989935,0.663787,0.204859], + [0.989128,0.658043,0.2081], + [0.98826,0.652325,0.211364], + [0.987332,0.646633,0.214648], + [0.986345,0.640969,0.217948], + [0.985301,0.63533,0.221265], + [0.984199,0.629718,0.224595], + [0.983041,0.624131,0.227937], + [0.981826,0.618572,0.231287], + [0.980556,0.613039,0.234646], + [0.979233,0.607532,0.238013], + [0.977856,0.602051,0.241387], + [0.976428,0.596595,0.244767], + [0.974947,0.591165,0.248151], + [0.973416,0.585761,0.25154], + [0.971835,0.580382,0.254931], + [0.970205,0.575028,0.258325], + [0.968526,0.5697,0.261721], + [0.966798,0.564396,0.265118], + [0.965024,0.559118,0.268513], + [0.963203,0.553865,0.271909], + [0.961336,0.548636,0.275305], + [0.959424,0.543431,0.278701], + [0.957469,0.53825,0.282096], + [0.95547,0.533093,0.28549], + [0.953428,0.52796,0.288883], + [0.951344,0.52285,0.292275], + [0.949217,0.517763,0.295662], + [0.947051,0.512699,0.299049], + [0.944844,0.507658,0.302433], + [0.942598,0.502639,0.305816], + [0.940313,0.497642,0.309197], + [0.93799,0.492667,0.312575], + [0.93563,0.487712,0.315952], + [0.933232,0.48278,0.319325], + [0.930798,0.477867,0.322697], + [0.928329,0.472975,0.326067], + [0.925825,0.468103,0.329435], + [0.923287,0.463251,0.332801], + [0.920714,0.458417,0.336166], + [0.918109,0.453603,0.339529], + [0.915471,0.448807,0.34289], + [0.9128,0.444029,0.346251], + [0.910098,0.439268,0.34961], + [0.907365,0.434524,0.35297], + [0.904601,0.429797,0.356329], + [0.901807,0.425087,0.359688], + [0.898984,0.420392,0.363047], + [0.896131,0.415712,0.366407], + [0.89325,0.411048,0.369768], + [0.89034,0.406398,0.37313], + [0.887402,0.401762,0.376494], + [0.884436,0.397139,0.37986], + [0.881443,0.392529,0.383229], + [0.878423,0.387932,0.3866], + [0.875376,0.383347,0.389976], + [0.872303,0.378774,0.393355], + [0.869203,0.374212,0.396738], + [0.866078,0.36966,0.400126], + [0.862927,0.365119,0.403519], + [0.85975,0.360588,0.406917], + [0.856547,0.356066,0.410322], + [0.853319,0.351553,0.413734], + [0.850066,0.347048,0.417153], + [0.846788,0.342551,0.420579], + [0.843484,0.338062,0.424013], + [0.840155,0.33358,0.427455], + [0.836801,0.329105,0.430905], + [0.833422,0.324635,0.434366], + [0.830018,0.320172,0.437836], + [0.826588,0.315714,0.441316], + [0.823132,0.311261,0.444806], + [0.819651,0.306812,0.448306], + [0.816144,0.302368,0.451816], + [0.812612,0.297928,0.455338], + [0.809052,0.293491,0.45887], + [0.805467,0.289057,0.462415], + [0.801855,0.284626,0.465971], + [0.798216,0.280197,0.469538], + [0.794549,0.27577,0.473117], + [0.790855,0.271345,0.476706], + [0.787133,0.266922,0.480307], + [0.783383,0.2625,0.483918], + [0.779604,0.258078,0.487539], + [0.775796,0.253658,0.491171], + [0.771958,0.249237,0.494813], + [0.76809,0.244817,0.498465], + [0.764193,0.240396,0.502126], + [0.760264,0.235976,0.505794], + [0.756304,0.231555,0.509468], + [0.752312,0.227133,0.513149], + [0.748289,0.222711,0.516834], + [0.744232,0.218288,0.520524], + [0.740143,0.213864,0.524216], + [0.736019,0.209439,0.527908], + [0.731862,0.205013,0.531601], + [0.72767,0.200586,0.535293], + [0.723444,0.196158,0.538981], + [0.719181,0.191729,0.542663], + [0.714883,0.187299,0.546338], + [0.710549,0.182868,0.550004], + [0.706178,0.178437,0.553657], + [0.701769,0.174005,0.557296], + [0.697324,0.169573,0.560919], + [0.69284,0.165141,0.564522], + [0.688318,0.160709,0.568103], + [0.683758,0.156278,0.57166], + [0.67916,0.151848,0.575189], + [0.674522,0.147419,0.578688], + [0.669845,0.142992,0.582154], + [0.665129,0.138566,0.585582], + [0.660374,0.134144,0.588971], + [0.65558,0.129725,0.592317], + [0.650746,0.125309,0.595617], + [0.645872,0.120898,0.598867], + [0.640959,0.116492,0.602065], + [0.636008,0.112092,0.605205], + [0.631017,0.107699,0.608287], + [0.625987,0.103312,0.611305], + [0.620919,0.098934,0.614257], + [0.615812,0.094564,0.61714], + [0.610667,0.090204,0.619951], + [0.605485,0.085854,0.622686], + [0.600266,0.081516,0.625342], + [0.595011,0.07719,0.627917], + [0.589719,0.072878,0.630408], + [0.584391,0.068579,0.632812], + [0.579029,0.064296,0.635126], + [0.573632,0.060028,0.637349], + [0.568201,0.055778,0.639477], + [0.562738,0.051545,0.641509], + [0.557243,0.047331,0.643443], + [0.551715,0.043136,0.645277], + [0.546157,0.038954,0.64701], + [0.54057,0.03495,0.64864], + [0.534952,0.031217,0.650165], + [0.529306,0.027747,0.651586], + [0.523633,0.024532,0.652901], + [0.517933,0.021563,0.654109], + [0.512206,0.018833,0.655209], + [0.506454,0.016333,0.656202], + [0.500678,0.014055,0.657088], + [0.494877,0.01199,0.657865], + [0.489055,0.010127,0.658534], + [0.48321,0.00846,0.659095], + [0.477344,0.00698,0.659549], + [0.471457,0.005678,0.659897], + [0.46555,0.004545,0.660139], + [0.459623,0.003574,0.660277], + [0.453677,0.002755,0.66031], + [0.447714,0.00208,0.66024], + [0.441732,0.00154,0.660069], + [0.435734,0.001127,0.659797], + [0.429719,0.000831,0.659425], + [0.423689,0.000646,0.658956], + [0.417642,0.000564,0.65839], + [0.41158,0.000577,0.65773], + [0.405503,0.000678,0.656977], + [0.399411,0.000859,0.656133], + [0.393304,0.001114,0.655199], + [0.387183,0.001434,0.654177], + [0.381047,0.001814,0.653068], + [0.374897,0.002245,0.651876], + [0.368733,0.002724,0.650601], + [0.362553,0.003243,0.649245], + [0.356359,0.003798,0.64781], + [0.35015,0.004382,0.646298], + [0.343925,0.004991,0.64471], + [0.337683,0.005618,0.643049], + [0.331426,0.006261,0.641316], + [0.32515,0.006915,0.639512], + [0.318856,0.007576,0.63764], + [0.312543,0.008239,0.6357], + [0.30621,0.008902,0.633694], + [0.299855,0.009561,0.631624], + [0.293478,0.010213,0.62949], + [0.287076,0.010855,0.627295], + [0.280648,0.011488,0.625038], + [0.274191,0.012109,0.622722], + [0.267703,0.012716,0.620346], + [0.261183,0.013308,0.617911], + [0.254627,0.013882,0.615419], + [0.248032,0.014439,0.612868], + [0.241396,0.014979,0.610259], + [0.234715,0.015502,0.607592], + [0.227983,0.016007,0.604867], + [0.221197,0.016497,0.602083], + [0.21435,0.016973,0.599239], + [0.207435,0.017442,0.596333], + [0.200445,0.017902,0.593364], + [0.193374,0.018354,0.59033], + [0.186213,0.018803,0.587228], + [0.17895,0.019252,0.584054], + [0.171574,0.019706,0.580806], + [0.16407,0.020171,0.577478], + [0.156421,0.020651,0.574065], + [0.148607,0.021154,0.570562], + [0.140603,0.021687,0.566959], + [0.132381,0.022258,0.56325], + [0.123903,0.022878,0.559423], + [0.115124,0.023556,0.555468], + [0.10598,0.024309,0.551368], + [0.096379,0.025165,0.547103], + [0.086222,0.026125,0.542658], + [0.075353,0.027206,0.538007], + [0.063536,0.028426,0.533124], + [0.050383,0.029803,0.527975] ], + prism: [ + [1.0,0.0,0.0], + [1.0,0.0,0.0], + [1.0,0.1296454183688629,0.0], + [1.0,0.3202982932722162,0.0], + [1.0,0.5115908430661976,0.0], + [1.0,0.6909103343111338,0.0], + [1.0,0.8464334683681283,0.0], + [1.0,0.9679059418904175,0.0], + [0.8889842188839807,1.0,0.0], + [0.6990986266378024,1.0,0.0], + [0.5072944378668851,1.0,0.0], + [0.3262181205501743,0.9965688406773492,0.0], + [0.1678088083602195,0.8870493757643187,0.0], + [0.042511102674156365,0.7408012703641469,0.2247245592882939], + [0.0,0.5674672856374552,0.49152494140092684], + [0.0,0.37847607025743346,0.7259169883665946], + [0.0,0.18628862087343018,0.9124462331297782], + [0.0,0.00357667547075452,1.0], + [0.10014583563595647,0.0,1.0], + [0.24310366462004168,0.0,1.0], + [0.41420858919315884,0.0,0.9964607646437041], + [0.602178932122292,0.0,0.8449672790322316], + [0.794621007231569,0.0,0.6377614979489414], + [0.9788462879759423,0.0,0.3885053820231295], + [1.0,0.0,0.11363344975416512], + [1.0,0.0,0.0], + [1.0,0.056055670309812455,0.0], + [1.0,0.24287932849359165,0.0], + [1.0,0.43544722401426117,0.0], + [1.0,0.6210625344505782,0.0], + [1.0,0.7874868509602921,0.0], + [1.0,0.9237471087571492,0.0], + [0.9619138921773216,1.0,0.0], + [0.7763619635344249,1.0,0.0], + [0.5837971371303504,1.0,0.0], + [0.39691603302640105,1.0,0.0], + [0.2280405192384154,0.9359470417164775,0.0], + [0.08830527844059932,0.803425021423595,0.11228541743915717], + [0.0,0.6396880708821562,0.38723722923761184], + [0.0,0.45553206538175656,0.6366568394132025], + [0.0,0.2630991955680465,0.8440989495935659], + [0.0,0.07507738104169182,0.9958860169643806], + [0.0528226711158416,0.0,1.0], + [0.18168552319788434,0.0,1.0], + [0.3427450308071367,0.0,1.0], + [0.5253818538825852,0.0,0.9132024338971071], + [0.717553967953337,0.0,0.7269346398002811], + [0.906590646156668,0.0,0.4927369454028945], + [1.0,0.0,0.2260510032669593], + [1.0,0.0,0.0], + [1.0,0.0,0.0], + [1.0,0.16639256895259236,0.0], + [1.0,0.3581753026568032,0.0], + [1.0,0.5481003185232032,0.0], + [1.0,0.7236450504548502,0.0], + [1.0,0.873235085789158,0.0], + [1.0,0.9870073156756549,0.0], + [0.8524872102651132,1.0,0.0], + [0.6612222209309886,1.0,0.0], + [0.47053598799751056,1.0,0.0], + [0.2930012678485353,0.9783609765834069,0.0], + [0.1403236815547061,0.8609830483906624,0.0], + [0.022569913365935723,0.7085951438159342,0.27880601626034207], + [0.0,0.5312448471582545,0.5405843595857535], + [0.0,0.34062561966114185,0.7667196711440933], + [0.0,0.14930579975433445,0.9423018856502466], + [0.012103403565087545,0.0,1.0], + [0.12549242544231543,0.0,1.0], + [0.27478315337749076,0.0,1.0], + [0.45013221313314944,0.0,0.9716661754203261], + [0.6399780935475823,0.0,0.8083294637516734], + [0.8318034462616026,0.0,0.5916961439886985], + [1.0,0.0,0.3360497745829156], + [1.0,0.0,0.0582462106923429], + [1.0,0.0,0.0], + [1.0,0.0916564353135711,0.0], + [1.0,0.2806019010162608,0.0], + [1.0,0.4728043940081943,0.0], + [1.0,0.6555911844148508,0.0], + [1.0,0.8169103597797572,0.0], + [1.0,0.9461254590396013,0.0], + [0.926659814410898,1.0,0.0], + [0.7387412283835125,1.0,0.0], + [0.5462902400704618,1.0,0.0], + [0.3619959637023281,1.0,0.0], + [0.1980097067126243,0.9128594710927294,0.0], + [0.06514378222806994,0.7734511876437298,0.16739153393785983], + [0.0,0.6048042766094963,0.43872753991483526], + [0.0,0.4180383479099588,0.6811363685419927], + [0.0,0.2254676755554598,0.8786349721669768], + [0.0,0.039789265055744594,1.0], + [0.07512564656323162,0.0,1.0], + [0.2110501599549267,0.0,1.0], + [0.3772351931677172,0.0,1.0], + [0.5627234583833783,0.0,0.8810750320579097], + [0.755284923392744,0.0,0.6843240983936213], + [0.9422231897656017,0.0,0.4424527591062287], + [1.0,0.0,0.17140862288416459], + [1.0,0.0,0.0], + [1.0,0.01947061626135882,0.0], + [1.0,0.203557067002723,0.0], + [1.0,0.3959804394430382,0.0], + [1.0,0.5840534401839677,0.0], + [1.0,0.7553756143823904,0.0], + [1.0,0.8986509606111903,0.0], + [0.9980861171434205,1.0,0.0], + [0.8155246936044228,1.0,0.0], + [0.6233682065289654,1.0,0.0], + [0.4342863524253539,1.0,0.0], + [0.2607461041404445,0.9584992034392541,0.0], + [0.1141897101832774,0.8335622322353531,0.05418593520209718], + [0.004280258493525313,0.6754232559752646,0.3321762648003621], + [0.0,0.4945090516356058,0.5882647969296434], + [0.0,0.3027480640891441,0.8055665227582696], + [0.0,0.11278391287387979,0.9697538129728774], + [0.031124119218766566,0.0,1.0], + [0.15222800384915092,0.0,1.0], + [0.3074708038581654,0.0,1.0], + [0.4866166995181112,0.0,0.9443929554042935], + [0.6778538380871804,0.0,0.7696296745647069], + [0.8685731396240276,0.0,0.5441214277397599], + [1.0,0.0,0.2827369351630226], + [1.0,0.0,0.0027103909193387558], + [1.0,0.0,0.0], + [1.0,0.12786519276742134,0.0], + [1.0,0.31845048353324235,0.0], + [1.0,0.5097972831644594,0.0], + [1.0,0.6892892812983202,0.0], + [1.0,0.8450918051812084,0.0], + [1.0,0.9669321301038782,0.0], + [0.8907510211307248,1.0,0.0], + [0.7009451406992869,1.0,0.0], + [0.5090989151978886,1.0,0.0], + [0.3278615842663417,0.9974138929324614,0.0], + [0.1691828978913611,0.8882850797177961,0.0], + [0.04352521843865098,0.7423461507855516,0.22207065007270635], + [0.0,0.5692194819735543,0.4890986971034152], + [0.0,0.3803200527327915,0.7238783816186963], + [0.0,0.18810280786107772,0.9109296779665785], + [0.0,0.005241449887284477,1.0], + [0.09894609161848067,0.0,1.0], + [0.24158553542305422,0.0,1.0], + [0.4124721715476045,0.0,0.9976057217978873], + [0.6003387154472675,0.0,0.8467000890771819], + [0.7927983248587609,0.0,0.6399679093300441], + [0.9771613171257287,0.0,0.3910399166303531], + [1.0,0.0,0.11632899491412466], + [1.0,0.0,0.0], + [1.0,0.05433619357371594,0.0], + [1.0,0.24104410931257028,0.0], + [1.0,0.4336172662139093,0.0], + [1.0,0.6193584949512336,0.0], + [1.0,0.786021084351817,0.0], + [1.0,0.9226162592817655,0.0], + [0.9636152771239248,1.0,0.0], + [0.7781909568726978,1.0,0.0], + [0.5856331455310436,1.0,0.0], + [0.3986380006273018,1.0,0.0], + [0.22953490937348364,0.9370341867962395,0.0], + [0.0894735595964603,0.8048568752712679,0.10958884356942528], + [0.0,0.6413702252684366,0.3846991623268828], + [0.0,0.4573536086956037,0.6344446250346919], + [0.0,0.26494002569209196,0.842358448473674], + [0.0,0.07681612419693695,0.9947319877630777], + [0.05177454831811079,0.0,1.0], + [0.1802843708618902,0.0,1.0], + [0.34108323288061193,0.0,1.0], + [0.5235689797883887,0.0,0.9147106760643515], + [0.7157095482102157,0.0,0.7289666310640961], + [0.9048362912225103,0.0,0.4951587079152621], + [1.0,0.0,0.22870285989954603], + [1.0,0.0,0.0], + [1.0,0.0,0.0], + [1.0,0.16458957747078087,0.0], + [1.0,0.3563285278014729,0.0], + [1.0,0.546331526034832,0.0], + [1.0,0.7220708643639575,0.0], + [1.0,0.8719592988967217,0.0], + [1.0,0.9861140460511835,0.0], + [0.8542791123564346,1.0,0.0], + [0.6630701148153403,1.0,0.0], + [0.47231803415205864,1.0,0.0], + [0.29459996837203783,0.9792879301617472,0.0], + [0.14163362730512108,0.8622865545974812,0.0], + [0.023504734034601293,0.7101892569291322,0.2761832844617287], + [0.0,0.5330244605033188,0.5382222086273052], + [0.0,0.3424733957423271,0.7647738477102272], + [0.0,0.15109990681607144,0.9409006861765502], + [0.011218117070105449,0.0,1.0], + [0.12422324252331562,0.0,1.0], + [0.2732137566758569,0.0,1.0], + [0.4483660796650023,0.0,0.9729337112754018], + [0.6381316720228956,0.0,0.8101652922639137], + [0.8299984791242703,0.0,0.5939792211566937], + [1.0,0.0,0.3386295673944123], + [1.0,0.0,0.06095262240757771], + [1.0,0.0,0.0], + [1.0,0.08990496383064242,0.0], + [1.0,0.278758069894781,0.0], + [1.0,0.47098977489571847,0.0], + [1.0,0.653925422886624,0.0], + [1.0,0.8155032865958014,0.0], + [1.0,0.9450698485343978,0.0], + [0.9283954516138518,1.0,0.0], + [0.7405812349888883,1.0,0.0], + [0.5481132965973606,1.0,0.0], + [0.36368186826079163,1.0,0.0], + [0.1994473004267684,0.9140206819320229,0.0], + [0.06623827841472096,0.7749402022164114,0.16471220090465036], + [0.0,0.6065229178359353,0.43624072777272843], + [0.0,0.4198732984461634,0.6790060434187688], + [0.0,0.2272979492887371,0.8770015954812745], + [0.0,0.04149418423495682,1.0], + [0.07400201352317681,0.0,1.0], + [0.20958995727603252,0.0,1.0], + [0.3755346982386072,0.0,1.0], + [0.5608947920852816,0.0,0.8826950541573693], + [0.7534486574917502,0.0,0.6864440609232815], + [0.9405003971020154,0.0,0.44493288389743707], + [1.0,0.0,0.1740853847346898], + [1.0,0.0,0.0], + [1.0,0.0177894058046989,0.0], + [1.0,0.2017359089055155,0.0], + [1.0,0.3941394104236724,0.0], + [1.0,0.5823139271354538,0.0], + [1.0,0.7538523108169379,0.0], + [1.0,0.897444304427925,0.0], + [0.9997469178599929,1.0,0.0], + [0.8173371245633585,1.0,0.0], + [0.6252127664293168,1.0,0.0], + [0.4360414215680699,1.0,0.0], + [0.2622959633336974,0.9595056937677395,0.0], + [0.11543217060217881,0.8349302155714096,0.05147867022991381], + [0.005133399425059193,0.6770625353447457,0.32959140076562427], + [0.0,0.49631154236013186,0.5859727649394855], + [0.0,0.3045949202697976,0.8037184462545544], + [0.0,0.1145533634080611,0.9684715435193139], + [0.030158059112426527,0.0,1.0], + [0.15089261959719058,0.0,1.0], + [0.30585414303811553,0.0,1.0], + [0.4848253554709435,0.0,0.9457798365932134], + [0.676005921763849,0.0,0.7715638385150229], + [0.8667904920268592,0.0,0.5464753467753609], + [1.0,0.0,0.28535540536526627], + [1.0,0.0,0.00542076538317725], + [1.0,0.0,0.0], + [1.0,0.1260861943798648,0.0], + [1.0,0.3166027439144373,0.0], + [1.0,0.5080026316658522,0.0], + [1.0,0.687666046945236,0.0], + [1.0,0.8437470147356803,0.0], + [1.0,0.9659544513338876,0.0], + [0.8925164831396082,1.0,0.0], + [0.7027914668846307,1.0,0.0], + [0.5109043694019361,1.0,0.0], + [0.32950712519534225,0.99825489314128,0.0] ], + prism_r: [ + [0.32950712519534225,0.99825489314128,0.0], + [0.5109043694019361,1.0,0.0], + [0.7027914668846307,1.0,0.0], + [0.8925164831396082,1.0,0.0], + [1.0,0.9659544513338876,0.0], + [1.0,0.8437470147356803,0.0], + [1.0,0.687666046945236,0.0], + [1.0,0.5080026316658522,0.0], + [1.0,0.3166027439144373,0.0], + [1.0,0.1260861943798648,0.0], + [1.0,0.0,0.0], + [1.0,0.0,0.00542076538317725], + [1.0,0.0,0.28535540536526627], + [0.8667904920268592,0.0,0.5464753467753609], + [0.676005921763849,0.0,0.7715638385150229], + [0.4848253554709435,0.0,0.9457798365932134], + [0.30585414303811553,0.0,1.0], + [0.15089261959719058,0.0,1.0], + [0.030158059112426527,0.0,1.0], + [0.0,0.1145533634080611,0.9684715435193139], + [0.0,0.3045949202697923,0.803718446254565], + [0.0,0.49631154236013186,0.5859727649394855], + [0.005133399425059193,0.6770625353447457,0.32959140076562427], + [0.11543217060217881,0.8349302155714096,0.05147867022991381], + [0.2622959633336974,0.9595056937677395,0.0], + [0.4360414215680699,1.0,0.0], + [0.6252127664293168,1.0,0.0], + [0.8173371245633532,1.0,0.0], + [0.9997469178599929,1.0,0.0], + [1.0,0.897444304427925,0.0], + [1.0,0.7538523108169379,0.0], + [1.0,0.5823139271354538,0.0], + [1.0,0.3941394104236724,0.0], + [1.0,0.2017359089055155,0.0], + [1.0,0.0177894058046989,0.0], + [1.0,0.0,0.0], + [1.0,0.0,0.17408538473467436], + [0.9405003971020204,0.0,0.44493288389742275], + [0.7534486574917502,0.0,0.6864440609232815], + [0.5608947920852816,0.0,0.8826950541573693], + [0.3755346982386072,0.0,1.0], + [0.20958995727603252,0.0,1.0], + [0.07400201352317681,0.0,1.0], + [0.0,0.04149418423495682,1.0], + [0.0,0.2272979492887371,0.8770015954812745], + [0.0,0.4198732984461634,0.6790060434187688], + [0.0,0.6065229178359353,0.43624072777272843], + [0.06623827841472096,0.7749402022164114,0.16471220090465036], + [0.1994473004267684,0.9140206819320229,0.0], + [0.36368186826079163,1.0,0.0], + [0.5481132965973606,1.0,0.0], + [0.7405812349888883,1.0,0.0], + [0.9283954516138518,1.0,0.0], + [1.0,0.9450698485343978,0.0], + [1.0,0.8155032865958014,0.0], + [1.0,0.653925422886624,0.0], + [1.0,0.47098977489571847,0.0], + [1.0,0.278758069894781,0.0], + [1.0,0.08990496383064242,0.0], + [1.0,0.0,0.0], + [1.0,0.0,0.06095262240757771], + [1.0,0.0,0.3386295673944123], + [0.8299984791242703,0.0,0.5939792211566937], + [0.6381316720228956,0.0,0.8101652922639137], + [0.4483660796650023,0.0,0.9729337112754018], + [0.2732137566758569,0.0,1.0], + [0.12422324252331562,0.0,1.0], + [0.011218117070105449,0.0,1.0], + [0.0,0.15109990681606625,0.9409006861765544], + [0.0,0.34247339574231644,0.7647738477102384], + [0.0,0.5330244605033188,0.5382222086273052], + [0.023504734034601293,0.7101892569291322,0.2761832844617287], + [0.14163362730512108,0.8622865545974812,0.0], + [0.29459996837203783,0.9792879301617472,0.0], + [0.47231803415205864,1.0,0.0], + [0.6630701148153403,1.0,0.0], + [0.8542791123564346,1.0,0.0], + [1.0,0.9861140460511835,0.0], + [1.0,0.8719592988967217,0.0], + [1.0,0.7220708643639575,0.0], + [1.0,0.546331526034832,0.0], + [1.0,0.3563285278014729,0.0], + [1.0,0.16458957747078087,0.0], + [1.0,0.0,0.0], + [1.0,0.0,0.0], + [1.0,0.0,0.2287028598995384], + [0.9048362912225103,0.0,0.4951587079152621], + [0.7157095482102157,0.0,0.7289666310640961], + [0.5235689797883887,0.0,0.9147106760643515], + [0.34108323288061193,0.0,1.0], + [0.1802843708618902,0.0,1.0], + [0.05177454831811079,0.0,1.0], + [0.0,0.07681612419693695,0.9947319877630777], + [0.0,0.26494002569209196,0.842358448473674], + [0.0,0.4573536086956037,0.6344446250346919], + [0.0,0.6413702252684366,0.3846991623268828], + [0.0894735595964603,0.8048568752712679,0.10958884356942528], + [0.22953490937348364,0.9370341867962395,0.0], + [0.3986380006273018,1.0,0.0], + [0.5856331455310436,1.0,0.0], + [0.7781909568726872,1.0,0.0], + [0.9636152771239198,1.0,0.0], + [1.0,0.9226162592817655,0.0], + [1.0,0.786021084351817,0.0], + [1.0,0.6193584949512336,0.0], + [1.0,0.4336172662139093,0.0], + [1.0,0.24104410931257028,0.0], + [1.0,0.05433619357371594,0.0], + [1.0,0.0,0.0], + [1.0,0.0,0.11632899491412466], + [0.9771613171257287,0.0,0.3910399166303531], + [0.7927983248587609,0.0,0.6399679093300441], + [0.6003387154472675,0.0,0.8467000890771819], + [0.4124721715476045,0.0,0.9976057217978873], + [0.24158553542305422,0.0,1.0], + [0.09894609161848067,0.0,1.0], + [0.0,0.005241449887284477,1.0], + [0.0,0.18810280786107772,0.9109296779665829], + [0.0,0.3803200527327915,0.7238783816186963], + [0.0,0.5692194819735543,0.4890986971034152], + [0.04352521843865098,0.7423461507855516,0.22207065007270635], + [0.1691828978913611,0.8882850797177961,0.0], + [0.3278615842663417,0.9974138929324614,0.0], + [0.5090989151978886,1.0,0.0], + [0.7009451406992869,1.0,0.0], + [0.8907510211307248,1.0,0.0], + [1.0,0.9669321301038782,0.0], + [1.0,0.8450918051812084,0.0], + [1.0,0.6892892812983202,0.0], + [1.0,0.5097972831644594,0.0], + [1.0,0.318450483533245,0.0], + [1.0,0.12786519276742392,0.0], + [1.0,0.0,0.0], + [1.0,0.0,0.0027103909193387558], + [1.0,0.0,0.2827369351630226], + [0.8685731396240276,0.0,0.5441214277397599], + [0.6778538380871804,0.0,0.7696296745647069], + [0.4866166995181112,0.0,0.9443929554042935], + [0.3074708038581677,0.0,1.0], + [0.1522280038491548,0.0,1.0], + [0.03112411921876379,0.0,1.0], + [0.0,0.11278391287387979,0.9697538129728774], + [0.0,0.3027480640891441,0.8055665227582696], + [0.0,0.4945090516356058,0.5882647969296434], + [0.004280258493525313,0.6754232559752646,0.3321762648003621], + [0.1141897101832774,0.8335622322353531,0.05418593520209718], + [0.26074610414044,0.9584992034392512,0.0], + [0.4342863524253539,1.0,0.0], + [0.6233682065289601,1.0,0.0], + [0.8155246936044228,1.0,0.0], + [0.9980861171434205,1.0,0.0], + [1.0,0.8986509606111903,0.0], + [1.0,0.7553756143823904,0.0], + [1.0,0.5840534401839677,0.0], + [1.0,0.3959804394430382,0.0], + [1.0,0.20355706700272824,0.0], + [1.0,0.01947061626135882,0.0], + [1.0,0.0,0.0], + [1.0,0.0,0.17140862288416459], + [0.9422231897656017,0.0,0.4424527591062287], + [0.755284923392744,0.0,0.6843240983936213], + [0.5627234583833783,0.0,0.8810750320579097], + [0.37723519316772214,0.0,1.0], + [0.21105015995492876,0.0,1.0], + [0.07512564656323162,0.0,1.0], + [0.0,0.039789265055744594,1.0], + [0.0,0.2254676755554598,0.8786349721669768], + [0.0,0.4180383479099588,0.6811363685419927], + [0.0,0.6048042766094963,0.43872753991483526], + [0.06514378222806994,0.7734511876437298,0.16739153393785983], + [0.1980097067126223,0.9128594710927276,0.0], + [0.36199596370232323,1.0,0.0], + [0.5462902400704671,1.0,0.0], + [0.7387412283835125,1.0,0.0], + [0.926659814410898,1.0,0.0], + [1.0,0.9461254590396013,0.0], + [1.0,0.8169103597797572,0.0], + [1.0,0.6555911844148508,0.0], + [1.0,0.47280439400819685,0.0], + [1.0,0.2806019010162608,0.0], + [1.0,0.09165643531357615,0.0], + [1.0,0.0,0.0], + [1.0,0.0,0.0582462106923429], + [1.0,0.0,0.3360497745829156], + [0.8318034462616026,0.0,0.5916961439886985], + [0.6399780935475823,0.0,0.8083294637516734], + [0.45013221313314944,0.0,0.9716661754203243], + [0.27478315337749304,0.0,1.0], + [0.12549242544231365,0.0,1.0], + [0.012103403565087545,0.0,1.0], + [0.0,0.14930579975433445,0.9423018856502466], + [0.0,0.34062561966114185,0.7667196711440933], + [0.0,0.5312448471582545,0.5405843595857535], + [0.02256991336593439,0.7085951438159332,0.2788060162603459], + [0.1403236815547041,0.8609830483906604,0.0], + [0.293001267848533,0.9783609765834049,0.0], + [0.47053598799750795,1.0,0.0], + [0.6612222209309886,1.0,0.0], + [0.8524872102651132,1.0,0.0], + [1.0,0.9870073156756549,0.0], + [1.0,0.873235085789158,0.0], + [1.0,0.7236450504548502,0.0], + [1.0,0.548100318523207,0.0], + [1.0,0.35817530265680586,0.0], + [1.0,0.16639256895258975,0.0], + [1.0,0.0,0.0], + [1.0,0.0,0.0], + [1.0,0.0,0.2260510032669593], + [0.906590646156668,0.0,0.4927369454028945], + [0.7175539679533384,0.0,0.7269346398002796], + [0.5253818538825892,0.0,0.9132024338971049], + [0.34274503080713903,0.0,1.0], + [0.18168552319788633,0.0,1.0], + [0.052822671115840825,0.0,1.0], + [0.0,0.07507738104169182,0.9958860169643806], + [0.0,0.2630991955680465,0.8440989495935659], + [0.0,0.45553206538175656,0.6366568394132025], + [0.0,0.6396880708821548,0.38723722923761367], + [0.08830527844059766,0.8034250214235927,0.11228541743916301], + [0.22804051923841318,0.9359470417164759,0.0], + [0.39691603302640355,1.0,0.0], + [0.5837971371303531,1.0,0.0], + [0.7763619635344249,1.0,0.0], + [0.9619138921773216,1.0,0.0], + [1.0,0.92374710875715,0.0], + [1.0,0.7874868509602937,0.0], + [1.0,0.62106253445058,0.0], + [1.0,0.43544722401426383,0.0], + [1.0,0.24287932849359428,0.0], + [1.0,0.056055670309811234,0.0], + [1.0,0.0,0.0], + [1.0,0.0,0.11363344975416512], + [0.9788462879759435,0.0,0.3885053820231286], + [0.7946210072315709,0.0,0.6377614979489399], + [0.602178932122294,0.0,0.8449672790322297], + [0.41420858919316134,0.0,0.9964607646437026], + [0.24310366462004002,0.0,1.0], + [0.10014583563595558,0.0,1.0], + [0.0,0.0035766754707554083,1.0], + [0.0,0.18628862087343018,0.9124462331297782], + [0.0,0.37847607025743246,0.7259169883665957], + [0.0,0.5674672856374539,0.49152494140092856], + [0.042511102674155365,0.7408012703641451,0.22472455928829677], + [0.16780880836021728,0.8870493757643167,0.0], + [0.3262181205501711,0.9965688406773476,0.0], + [0.5072944378668864,1.0,0.0], + [0.6990986266378031,1.0,0.0], + [0.8889842188839807,1.0,0.0], + [1.0,0.9679059418904179,0.0], + [1.0,0.8464334683681294,0.0], + [1.0,0.6909103343111356,0.0], + [1.0,0.5115908430662003,0.0], + [1.0,0.3202982932722142,0.0], + [1.0,0.12964541836886156,0.0], + [1.0,0.0,0.0], + [1.0,0.0,0.0] ], + rainbow: [ + [0.5,0.0,1.0], + [0.49215686274509807,0.012319659535238442,0.9999810273487268], + [0.4843137254901961,0.02463744919538197,0.9999241101148306], + [0.4764705882352941,0.03695149938914489,0.9998292504580527], + [0.46862745098039216,0.04925994109281685,0.9996964519778716], + [0.4607843137254902,0.061560906133942835,0.9995257197133659], + [0.45294117647058824,0.07385252747487396,0.9993170601430229], + [0.44509803921568625,0.08613293949614599,0.9990704811844932], + [0.4372549019607843,0.0984002782796427,0.99878599219429], + [0.4294117647058824,0.11065268189150083,0.9984636039674339], + [0.4215686274509804,0.12288829066471411,0.9981033287370441], + [0.4137254901960784,0.13510524748139296,0.9977051801738729], + [0.40588235294117647,0.1473016980546375,0.997269173385788], + [0.39803921568627454,0.1594757912099808,0.9967953249171991], + [0.39019607843137255,0.1716256791663596,0.9962836527484294], + [0.38235294117647056,0.18374951781657034,0.9957341762950345], + [0.37450980392156863,0.19584546700716696,0.9951469164070644], + [0.3666666666666667,0.20791169081775931,0.9945218953682733], + [0.3588235294117647,0.2199463578396686,0.9938591368952737], + [0.3509803921568627,0.23194764145389815,0.9931586661366362], + [0.3431372549019608,0.24391372010837714,0.9924205096719357], + [0.33529411764705885,0.2558427775944356,0.9916446955107427], + [0.32745098039215687,0.2677330033224679,0.9908312530915603], + [0.3196078431372549,0.2795825925967438,0.989980213280707], + [0.31176470588235294,0.2913897468893246,0.989091608371146], + [0.303921568627451,0.30315267411304353,0.9881654720812594], + [0.296078431372549,0.31486958889350786,0.987201839553569], + [0.28823529411764703,0.3265387128400833,0.9862007473534026], + [0.2803921568627451,0.33815827481581706,0.9851622334675065], + [0.27254901960784317,0.34972651120626114,0.9840863373026044], + [0.2647058823529412,0.3612416661871529,0.9829730996839018], + [0.2568627450980392,0.37270199199091397,0.9818225628535369], + [0.24901960784313726,0.38410574917192586,0.9806347704689777], + [0.24117647058823533,0.3954512068705425,0.9794097676013659], + [0.23333333333333334,0.40673664307580015,0.9781476007338057], + [0.22549019607843135,0.41796034488678346,0.9768483177596007], + [0.21764705882352942,0.42912060877260894,0.9755119679804366], + [0.20980392156862748,0.44021574083098725,0.9741386021045101], + [0.2019607843137255,0.45124405704532283,0.9727282722446048], + [0.1941176470588235,0.4622038835403132,0.9712810319161138], + [0.18627450980392157,0.47309355683601007,0.9697969360350095], + [0.17843137254901964,0.4839114241003015,0.9682760409157589], + [0.17058823529411765,0.4946558433997788,0.9667184042691874], + [0.16274509803921566,0.5053251839489481,0.965124085200289], + [0.15490196078431373,0.5159178263577511,0.9634931442059831], + [0.1470588235294118,0.5264321628773557,0.961825643172819], + [0.1392156862745098,0.53686659764418,0.9601216453746282], + [0.13137254901960782,0.5472195469221112,0.9583812154701222], + [0.12352941176470589,0.5574894393428855,0.9566044195004408], + [0.11568627450980395,0.5676747161445901,0.9547913248866443], + [0.10784313725490197,0.5777738314082511,0.9529420004271566], + [0.09999999999999998,0.5877852522924731,0.9510565162951535], + [0.09215686274509804,0.5977074592660936,0.9491349440359013], + [0.08431372549019611,0.6075389463388168,0.9471773565640402], + [0.07647058823529412,0.6172782212897929,0.9451838281608196], + [0.06862745098039214,0.6269238058941065,0.9431544344712774], + [0.0607843137254902,0.6364742361471414,0.9410892525013717], + [0.05294117647058827,0.6459280624867872,0.9389883606150565], + [0.04509803921568628,0.6552838500134536,0.9368518385313106], + [0.03725490196078429,0.664540178707858,0.9346797673211106], + [0.02941176470588236,0.6736956436465572,0.9324722294043558], + [0.021568627450980427,0.6827488552151855,0.9302293085467404], + [0.013725490196078438,0.6916984393193699,0.9279510898565747], + [0.00588235294117645,0.700543037593291,0.9256376597815563], + [0.0019607843137254832,0.7092813076058534,0.9232891061054893], + [0.009803921568627416,0.7179119230644418,0.9209055179449537], + [0.01764705882352935,0.7264335740162241,0.918486985745923], + [0.025490196078431393,0.7348449670469757,0.9160336012803335], + [0.033333333333333326,0.7431448254773941,0.9135454576426009], + [0.04117647058823526,0.7513318895568732,0.9110226492460883], + [0.0490196078431373,0.7594049166547072,0.9084652718195236], + [0.056862745098039236,0.7673626814486969,0.9058734224033671], + [0.06470588235294117,0.7752039761111298,0.9032471993461288], + [0.0725490196078431,0.7829276104921027,0.9005867023006374], + [0.08039215686274503,0.7905324123001632,0.8978920322202582], + [0.08823529411764708,0.7980172272802395,0.8951632913550623], + [0.09607843137254901,0.8053809193888326,0.8924005832479478], + [0.10392156862745094,0.8126223709664456,0.8896040127307095], + [0.11176470588235299,0.8197404829072211,0.8867736859200619], + [0.11960784313725492,0.8267341748257635,0.883909710213612], + [0.12745098039215685,0.8336023852211195,0.8810121942857845], + [0.1352941176470588,0.8403440716378927,0.8780812480836979], + [0.14313725490196072,0.846958210824467,0.8751169828229928], + [0.15098039215686276,0.8534437988883159,0.8721195109836108], + [0.1588235294117647,0.8597998514483723,0.8690889463055284], + [0.16666666666666663,0.8660254037844386,0.8660254037844387], + [0.17450980392156867,0.8721195109836108,0.8629289996673897], + [0.1823529411764706,0.8780812480836979,0.8597998514483725], + [0.19019607843137254,0.883909710213612,0.8566380778638628], + [0.19803921568627447,0.8896040127307095,0.853443798888316], + [0.2058823529411764,0.8951632913550623,0.8502171357296142], + [0.21372549019607845,0.9005867023006374,0.8469582108244671], + [0.22156862745098038,0.9058734224033671,0.8436671478337664], + [0.22941176470588232,0.9110226492460882,0.8403440716378927], + [0.23725490196078436,0.9160336012803335,0.8369891083319778], + [0.2450980392156863,0.9209055179449536,0.8336023852211195], + [0.2529411764705882,0.9256376597815562,0.8301840308155507], + [0.26078431372549016,0.9302293085467402,0.8267341748257635], + [0.2686274509803921,0.9346797673211106,0.8232529481575873], + [0.27647058823529413,0.9389883606150565,0.8197404829072211], + [0.28431372549019607,0.9431544344712774,0.8161969123562217], + [0.292156862745098,0.9471773565640402,0.8126223709664456], + [0.30000000000000004,0.9510565162951535,0.8090169943749475], + [0.307843137254902,0.9547913248866443,0.8053809193888326], + [0.3156862745098039,0.9583812154701222,0.8017142839800667], + [0.32352941176470584,0.961825643172819,0.7980172272802396], + [0.3313725490196078,0.965124085200289,0.7942898895752861], + [0.3392156862745098,0.9682760409157589,0.7905324123001634], + [0.34705882352941175,0.9712810319161138,0.7867449380334832], + [0.3549019607843137,0.9741386021045101,0.7829276104921028], + [0.36274509803921573,0.9768483177596007,0.7790805745256704], + [0.37058823529411766,0.9794097676013659,0.7752039761111298], + [0.3784313725490196,0.9818225628535369,0.7712979623471807], + [0.38627450980392153,0.9840863373026044,0.767362681448697], + [0.39411764705882346,0.9862007473534026,0.763398282741103], + [0.4019607843137255,0.9881654720812594,0.7594049166547071], + [0.40980392156862744,0.989980213280707,0.7553827347189938], + [0.41764705882352937,0.9916446955107427,0.7513318895568734], + [0.4254901960784314,0.9931586661366362,0.747252534878891], + [0.43333333333333335,0.9945218953682733,0.7431448254773942], + [0.4411764705882353,0.9957341762950345,0.7390089172206591], + [0.4490196078431372,0.9967953249171991,0.7348449670469758], + [0.45686274509803915,0.9977051801738729,0.7306531329586932], + [0.4647058823529412,0.9984636039674339,0.7264335740162242], + [0.4725490196078431,0.9990704811844932,0.7221864503320093], + [0.48039215686274506,0.9995257197133659,0.717911923064442], + [0.4882352941176471,0.9998292504580527,0.7136101544117524], + [0.49607843137254903,0.9999810273487268,0.7092813076058535], + [0.503921568627451,0.9999810273487268,0.7049255469061472], + [0.5117647058823529,0.9998292504580527,0.700543037593291], + [0.5196078431372548,0.9995257197133659,0.6961339459629267], + [0.5274509803921568,0.9990704811844932,0.6916984393193701], + [0.5352941176470587,0.9984636039674339,0.6872366859692628], + [0.5431372549019609,0.9977051801738729,0.6827488552151855], + [0.5509803921568628,0.9967953249171991,0.678235117349234], + [0.5588235294117647,0.9957341762950346,0.6736956436465572], + [0.5666666666666667,0.9945218953682734,0.6691306063588582], + [0.5745098039215686,0.9931586661366362,0.6645401787078581], + [0.5823529411764705,0.9916446955107427,0.6599245348787227], + [0.5901960784313725,0.989980213280707,0.6552838500134537], + [0.5980392156862746,0.9881654720812594,0.650618300204242], + [0.6058823529411765,0.9862007473534026,0.6459280624867872], + [0.6137254901960785,0.9840863373026044,0.6412133148335784], + [0.6215686274509804,0.9818225628535369,0.6364742361471414], + [0.6294117647058823,0.9794097676013659,0.631711006253251], + [0.6372549019607843,0.9768483177596008,0.6269238058941066], + [0.6450980392156862,0.9741386021045102,0.622112816721474], + [0.6529411764705881,0.9712810319161139,0.617278221289793], + [0.6607843137254901,0.9682760409157589,0.6124202030492502], + [0.6686274509803922,0.965124085200289,0.6075389463388169], + [0.6764705882352942,0.961825643172819,0.6026346363792564], + [0.6843137254901961,0.9583812154701222,0.5977074592660936], + [0.692156862745098,0.9547913248866443,0.5927576019625549], + [0.7,0.9510565162951536,0.5877852522924731], + [0.7078431372549019,0.9471773565640402,0.582790598933161], + [0.7156862745098038,0.9431544344712776,0.5777738314082511], + [0.723529411764706,0.9389883606150565,0.5727351400805052], + [0.7313725490196079,0.9346797673211106,0.5676747161445901], + [0.7392156862745098,0.9302293085467404,0.5625927516198231], + [0.7470588235294118,0.9256376597815563,0.5574894393428855], + [0.7549019607843137,0.9209055179449537,0.5523649729605059], + [0.7627450980392156,0.9160336012803335,0.5472195469221112], + [0.7705882352941176,0.9110226492460884,0.5420533564724495], + [0.7784313725490195,0.9058734224033673,0.5368665976441802], + [0.7862745098039214,0.9005867023006376,0.5316594672504363], + [0.7941176470588236,0.8951632913550623,0.5264321628773558], + [0.8019607843137255,0.8896040127307095,0.5211848828765852], + [0.8098039215686275,0.8839097102136121,0.5159178263577512], + [0.8176470588235294,0.878081248083698,0.510631193180907], + [0.8254901960784313,0.872119510983611,0.5053251839489481], + [0.8333333333333333,0.8660254037844387,0.5000000000000001], + [0.8411764705882352,0.8597998514483726,0.49465584339977897], + [0.8490196078431373,0.8534437988883159,0.4892929169339235], + [0.8568627450980393,0.8469582108244671,0.4839114241003016], + [0.8647058823529412,0.8403440716378927,0.4785115691012865], + [0.8725490196078431,0.8336023852211195,0.47309355683601007], + [0.8803921568627451,0.8267341748257635,0.4676575928925868], + [0.888235294117647,0.8197404829072211,0.4622038835403132], + [0.896078431372549,0.8126223709664456,0.45673263572184064], + [0.9039215686274509,0.8053809193888327,0.45124405704532283], + [0.9117647058823528,0.7980172272802396,0.4457383557765383], + [0.919607843137255,0.7905324123001635,0.4402157408309874], + [0.9274509803921569,0.7829276104921029,0.43467642176596505], + [0.9352941176470588,0.77520397611113,0.42912060877260905], + [0.9431372549019608,0.7673626814486971,0.4235485126679244], + [0.9509803921568627,0.7594049166547073,0.4179603448867836], + [0.9588235294117646,0.7513318895568735,0.41235631747390367], + [0.9666666666666666,0.7431448254773945,0.4067366430758004], + [0.9745098039215687,0.7348449670469757,0.4011015349327188], + [0.9823529411764707,0.7264335740162241,0.3954512068705426], + [0.9901960784313726,0.717911923064442,0.3897858732926794], + [0.9980392156862745,0.7092813076058535,0.3841057491719259], + [1.0,0.7005430375932911,0.37841105004231035], + [1.0,0.6916984393193701,0.3727019919909141], + [1.0,0.6827488552151856,0.3669787916496722], + [1.0,0.6736956436465574,0.36124166618715303], + [1.0,0.6645401787078582,0.35549083330031817], + [1.0,0.6552838500134535,0.3497265112062611], + [1.0,0.6459280624867872,0.34394891863392807], + [1.0,0.6364742361471414,0.33815827481581706], + [1.0,0.6269238058941065,0.3323547994796596], + [1.0,0.6172782212897929,0.3265387128400833], + [1.0,0.6075389463388169,0.3207102355902552], + [1.0,0.5977074592660937,0.3148695888935079], + [1.0,0.5877852522924732,0.30901699437494745], + [1.0,0.5777738314082512,0.3031526741130436], + [1.0,0.5676747161445903,0.29727685063120274], + [1.0,0.5574894393428858,0.29138974688932473], + [1.0,0.5472195469221114,0.28549158627534216], + [1.0,0.5368665976441802,0.27958259259674395], + [1.0,0.5264321628773561,0.273662990072083], + [1.0,0.5159178263577514,0.2677330033224681], + [1.0,0.5053251839489484,0.2617928573630405], + [1.0,0.4946558433997788,0.2558427775944356], + [1.0,0.4839114241003016,0.24988298979423082], + [1.0,0.4730935568360101,0.24391372010837717], + [1.0,0.4622038835403133,0.2379351950426188], + [1.0,0.4512440570453229,0.2319476414538982], + [1.0,0.44021574083098747,0.22595128654174773], + [1.0,0.4291206087726091,0.2199463578396687], + [1.0,0.41796034488678324,0.21393308320649734], + [1.0,0.40673664307580004,0.20791169081775923], + [1.0,0.3954512068705424,0.2018824091570102], + [1.0,0.38410574917192575,0.1958454670071669], + [1.0,0.37270199199091436,0.18980109344182594], + [1.0,0.3612416661871533,0.18374951781657053], + [1.0,0.3497265112062616,0.17769096976026882], + [1.0,0.33815827481581756,0.17162567916635985], + [1.0,0.3265387128400838,0.1655538761841302], + [1.0,0.31486958889350797,0.15947579120998084], + [1.0,0.30315267411304364,0.15339165487868545], + [1.0,0.2913897468893248,0.14730169805463758], + [1.0,0.279582592596744,0.14120615182309149], + [1.0,0.26773300332246813,0.13510524748139308], + [1.0,0.25584277759443586,0.1289992165302034], + [1.0,0.24391372010837745,0.12288829066471427], + [1.0,0.23194764145389804,0.11677270176585626], + [1.0,0.21994635783966857,0.11065268189150082], + [1.0,0.20791169081775931,0.10452846326765346], + [1.0,0.19584546700716696,0.0984002782796427], + [1.0,0.18374951781657037,0.09226835946330202], + [1.0,0.1716256791663597,0.08613293949614603], + [1.0,0.1594757912099809,0.07999425118854168], + [1.0,0.14730169805463766,0.07385252747487403], + [1.0,0.13510524748139313,0.06770800140470754], + [1.0,0.12288829066471434,0.061560906133942946], + [1.0,0.1106526818915011,0.05541147491597008], + [1.0,0.098400278279643,0.04925994109281699], + [1.0,0.08613293949614632,0.043106538086295734], + [1.0,0.07385252747487431,0.03695149938914507], + [1.0,0.06156090613394323,0.030795058556170547], + [1.0,0.049259941092817276,0.024637449195382185], + [1.0,0.03695149938914491,0.018478904959129915], + [1.0,0.024637449195382025,0.012319659535238468], + [1.0,0.012319659535238529,0.006159946638138691], + [1.0,1.2246467991473532e-16,6.123233995736766e-17] ], + rainbow_r: [ + [1.0,1.2246467991473532e-16,6.123233995736766e-17], + [1.0,0.012319659535238529,0.006159946638138691], + [1.0,0.024637449195382025,0.012319659535238468], + [1.0,0.03695149938914491,0.018478904959129915], + [1.0,0.04925994109281683,0.024637449195381963], + [1.0,0.06156090613394323,0.030795058556170547], + [1.0,0.07385252747487431,0.03695149938914507], + [1.0,0.08613293949614632,0.043106538086295734], + [1.0,0.098400278279643,0.04925994109281699], + [1.0,0.1106526818915011,0.05541147491597008], + [1.0,0.12288829066471434,0.061560906133942946], + [1.0,0.13510524748139313,0.06770800140470754], + [1.0,0.14730169805463766,0.07385252747487403], + [1.0,0.1594757912099809,0.07999425118854168], + [1.0,0.1716256791663597,0.08613293949614603], + [1.0,0.18374951781657037,0.09226835946330202], + [1.0,0.19584546700716696,0.0984002782796427], + [1.0,0.20791169081775931,0.10452846326765346], + [1.0,0.21994635783966857,0.11065268189150082], + [1.0,0.23194764145389804,0.11677270176585626], + [1.0,0.243913720108377,0.12288829066471406], + [1.0,0.25584277759443586,0.1289992165302034], + [1.0,0.26773300332246813,0.13510524748139308], + [1.0,0.279582592596744,0.14120615182309149], + [1.0,0.2913897468893248,0.14730169805463758], + [1.0,0.30315267411304364,0.15339165487868545], + [1.0,0.31486958889350797,0.15947579120998084], + [1.0,0.32653871284008334,0.16555387618413], + [1.0,0.33815827481581756,0.17162567916635985], + [1.0,0.3497265112062616,0.17769096976026882], + [1.0,0.3612416661871533,0.18374951781657053], + [1.0,0.37270199199091436,0.18980109344182594], + [1.0,0.38410574917192575,0.1958454670071669], + [1.0,0.3954512068705424,0.2018824091570102], + [1.0,0.40673664307580004,0.20791169081775923], + [1.0,0.41796034488678324,0.21393308320649734], + [1.0,0.4291206087726087,0.2199463578396685], + [1.0,0.4402157408309871,0.2259512865417475], + [1.0,0.4512440570453229,0.2319476414538982], + [1.0,0.4622038835403133,0.2379351950426188], + [1.0,0.4730935568360101,0.24391372010837717], + [1.0,0.4839114241003016,0.24988298979423082], + [1.0,0.4946558433997788,0.2558427775944356], + [1.0,0.5053251839489484,0.2617928573630405], + [1.0,0.5159178263577514,0.2677330033224681], + [1.0,0.5264321628773561,0.273662990072083], + [1.0,0.5368665976441802,0.27958259259674395], + [1.0,0.5472195469221114,0.28549158627534216], + [1.0,0.5574894393428858,0.29138974688932473], + [1.0,0.5676747161445903,0.29727685063120274], + [1.0,0.5777738314082512,0.3031526741130436], + [1.0,0.5877852522924732,0.30901699437494745], + [1.0,0.5977074592660937,0.3148695888935079], + [1.0,0.6075389463388169,0.3207102355902552], + [1.0,0.6172782212897929,0.3265387128400833], + [1.0,0.6269238058941065,0.3323547994796596], + [1.0,0.6364742361471414,0.33815827481581706], + [1.0,0.6459280624867872,0.34394891863392807], + [1.0,0.6552838500134535,0.3497265112062611], + [1.0,0.6645401787078582,0.35549083330031817], + [1.0,0.6736956436465574,0.36124166618715303], + [1.0,0.6827488552151856,0.3669787916496722], + [1.0,0.6916984393193701,0.3727019919909141], + [1.0,0.7005430375932911,0.37841105004231035], + [0.9980392156862745,0.7092813076058535,0.3841057491719259], + [0.9901960784313726,0.717911923064442,0.3897858732926794], + [0.9823529411764707,0.7264335740162241,0.3954512068705426], + [0.9745098039215687,0.7348449670469757,0.4011015349327188], + [0.9666666666666668,0.7431448254773942,0.4067366430758002], + [0.9588235294117649,0.7513318895568732,0.41235631747390344], + [0.9509803921568627,0.7594049166547073,0.4179603448867836], + [0.9431372549019608,0.7673626814486971,0.4235485126679244], + [0.9352941176470588,0.77520397611113,0.42912060877260905], + [0.9274509803921569,0.7829276104921029,0.43467642176596505], + [0.919607843137255,0.7905324123001635,0.4402157408309874], + [0.9117647058823528,0.7980172272802396,0.4457383557765383], + [0.9039215686274509,0.8053809193888327,0.45124405704532283], + [0.896078431372549,0.8126223709664456,0.45673263572184064], + [0.888235294117647,0.8197404829072211,0.4622038835403132], + [0.8803921568627451,0.8267341748257635,0.4676575928925868], + [0.8725490196078431,0.8336023852211195,0.47309355683601007], + [0.8647058823529412,0.8403440716378927,0.4785115691012865], + [0.8568627450980393,0.8469582108244671,0.4839114241003016], + [0.8490196078431373,0.8534437988883159,0.4892929169339235], + [0.8411764705882354,0.8597998514483723,0.49465584339977875], + [0.8333333333333335,0.8660254037844385,0.4999999999999999], + [0.8254901960784313,0.872119510983611,0.5053251839489481], + [0.8176470588235294,0.878081248083698,0.510631193180907], + [0.8098039215686275,0.8839097102136121,0.5159178263577512], + [0.8019607843137255,0.8896040127307095,0.5211848828765852], + [0.7941176470588236,0.8951632913550623,0.5264321628773558], + [0.7862745098039214,0.9005867023006376,0.5316594672504363], + [0.7784313725490195,0.9058734224033673,0.5368665976441802], + [0.7705882352941176,0.9110226492460884,0.5420533564724495], + [0.7627450980392156,0.9160336012803335,0.5472195469221112], + [0.7549019607843137,0.9209055179449537,0.5523649729605059], + [0.7470588235294118,0.9256376597815563,0.5574894393428855], + [0.7392156862745098,0.9302293085467404,0.5625927516198231], + [0.7313725490196079,0.9346797673211106,0.5676747161445901], + [0.723529411764706,0.9389883606150565,0.5727351400805052], + [0.715686274509804,0.9431544344712774,0.5777738314082511], + [0.7078431372549021,0.9471773565640402,0.5827905989331609], + [0.7,0.9510565162951536,0.5877852522924731], + [0.692156862745098,0.9547913248866443,0.5927576019625549], + [0.6843137254901961,0.9583812154701222,0.5977074592660936], + [0.6764705882352942,0.961825643172819,0.6026346363792564], + [0.6686274509803922,0.965124085200289,0.6075389463388169], + [0.6607843137254901,0.9682760409157589,0.6124202030492502], + [0.6529411764705881,0.9712810319161139,0.617278221289793], + [0.6450980392156862,0.9741386021045102,0.622112816721474], + [0.6372549019607843,0.9768483177596008,0.6269238058941066], + [0.6294117647058823,0.9794097676013659,0.631711006253251], + [0.6215686274509804,0.9818225628535369,0.6364742361471414], + [0.6137254901960785,0.9840863373026044,0.6412133148335784], + [0.6058823529411765,0.9862007473534026,0.6459280624867872], + [0.5980392156862746,0.9881654720812594,0.650618300204242], + [0.5901960784313727,0.989980213280707,0.6552838500134535], + [0.5823529411764707,0.9916446955107427,0.6599245348787225], + [0.5745098039215686,0.9931586661366362,0.6645401787078581], + [0.5666666666666667,0.9945218953682734,0.6691306063588582], + [0.5588235294117647,0.9957341762950346,0.6736956436465572], + [0.5509803921568628,0.9967953249171991,0.678235117349234], + [0.5431372549019609,0.9977051801738729,0.6827488552151855], + [0.5352941176470587,0.9984636039674339,0.6872366859692628], + [0.5274509803921568,0.9990704811844932,0.6916984393193701], + [0.5196078431372548,0.9995257197133659,0.6961339459629267], + [0.5117647058823529,0.9998292504580527,0.700543037593291], + [0.503921568627451,0.9999810273487268,0.7049255469061472], + [0.49607843137254903,0.9999810273487268,0.7092813076058535], + [0.4882352941176471,0.9998292504580527,0.7136101544117524], + [0.48039215686274517,0.9995257197133659,0.717911923064442], + [0.47254901960784323,0.9990704811844932,0.7221864503320093], + [0.4647058823529413,0.9984636039674339,0.7264335740162241], + [0.45686274509803915,0.9977051801738729,0.7306531329586932], + [0.4490196078431372,0.9967953249171991,0.7348449670469758], + [0.4411764705882353,0.9957341762950345,0.7390089172206591], + [0.43333333333333335,0.9945218953682733,0.7431448254773942], + [0.4254901960784314,0.9931586661366362,0.747252534878891], + [0.4176470588235295,0.9916446955107427,0.7513318895568732], + [0.40980392156862755,0.989980213280707,0.7553827347189938], + [0.4019607843137254,0.9881654720812594,0.7594049166547072], + [0.39411764705882346,0.9862007473534026,0.763398282741103], + [0.38627450980392153,0.9840863373026044,0.767362681448697], + [0.3784313725490196,0.9818225628535369,0.7712979623471807], + [0.37058823529411766,0.9794097676013659,0.7752039761111298], + [0.36274509803921573,0.9768483177596007,0.7790805745256704], + [0.3549019607843138,0.9741386021045101,0.7829276104921028], + [0.34705882352941186,0.9712810319161139,0.7867449380334832], + [0.33921568627450993,0.9682760409157589,0.7905324123001632], + [0.3313725490196078,0.965124085200289,0.7942898895752861], + [0.32352941176470584,0.961825643172819,0.7980172272802396], + [0.3156862745098039,0.9583812154701222,0.8017142839800667], + [0.307843137254902,0.9547913248866443,0.8053809193888326], + [0.30000000000000004,0.9510565162951535,0.8090169943749475], + [0.2921568627450981,0.9471773565640402,0.8126223709664456], + [0.2843137254901962,0.9431544344712774,0.8161969123562217], + [0.276470588235294,0.9389883606150565,0.8197404829072211], + [0.2686274509803921,0.9346797673211106,0.8232529481575873], + [0.26078431372549016,0.9302293085467402,0.8267341748257635], + [0.2529411764705882,0.9256376597815562,0.8301840308155507], + [0.2450980392156863,0.9209055179449536,0.8336023852211195], + [0.23725490196078436,0.9160336012803335,0.8369891083319778], + [0.22941176470588243,0.9110226492460883,0.8403440716378927], + [0.2215686274509805,0.9058734224033671,0.8436671478337663], + [0.21372549019607856,0.9005867023006375,0.8469582108244671], + [0.2058823529411764,0.8951632913550623,0.8502171357296142], + [0.19803921568627447,0.8896040127307095,0.853443798888316], + [0.19019607843137254,0.883909710213612,0.8566380778638628], + [0.1823529411764706,0.8780812480836979,0.8597998514483725], + [0.17450980392156867,0.8721195109836108,0.8629289996673897], + [0.16666666666666674,0.8660254037844387,0.8660254037844386], + [0.1588235294117648,0.8597998514483725,0.8690889463055282], + [0.15098039215686265,0.8534437988883158,0.872119510983611], + [0.14313725490196072,0.846958210824467,0.8751169828229928], + [0.1352941176470588,0.8403440716378927,0.8780812480836979], + [0.12745098039215685,0.8336023852211195,0.8810121942857845], + [0.11960784313725492,0.8267341748257635,0.883909710213612], + [0.11176470588235299,0.8197404829072211,0.8867736859200619], + [0.10392156862745106,0.8126223709664456,0.8896040127307095], + [0.09607843137254912,0.8053809193888327,0.8924005832479478], + [0.08823529411764719,0.7980172272802396,0.8951632913550623], + [0.08039215686274503,0.7905324123001632,0.8978920322202582], + [0.0725490196078431,0.7829276104921027,0.9005867023006374], + [0.06470588235294117,0.7752039761111298,0.9032471993461288], + [0.056862745098039236,0.7673626814486969,0.9058734224033671], + [0.0490196078431373,0.7594049166547072,0.9084652718195236], + [0.04117647058823537,0.7513318895568734,0.9110226492460883], + [0.03333333333333344,0.7431448254773944,0.9135454576426009], + [0.025490196078431282,0.7348449670469757,0.9160336012803335], + [0.01764705882352935,0.7264335740162241,0.918486985745923], + [0.009803921568627416,0.7179119230644418,0.9209055179449537], + [0.0019607843137254832,0.7092813076058534,0.9232891061054893], + [0.00588235294117645,0.700543037593291,0.9256376597815563], + [0.013725490196078383,0.69169843931937,0.9279510898565746], + [0.021568627450980316,0.6827488552151855,0.9302293085467402], + [0.02941176470588225,0.6736956436465573,0.9324722294043558], + [0.03725490196078418,0.6645401787078581,0.9346797673211106], + [0.045098039215686336,0.6552838500134535,0.9368518385313106], + [0.05294117647058827,0.6459280624867872,0.9389883606150565], + [0.0607843137254902,0.6364742361471414,0.9410892525013717], + [0.06862745098039214,0.6269238058941065,0.9431544344712774], + [0.07647058823529407,0.617278221289793,0.9451838281608195], + [0.084313725490196,0.607538946338817,0.9471773565640402], + [0.09215686274509793,0.5977074592660938,0.9491349440359012], + [0.10000000000000009,0.587785252292473,0.9510565162951536], + [0.10784313725490202,0.577773831408251,0.9529420004271566], + [0.11568627450980395,0.5676747161445901,0.9547913248866443], + [0.12352941176470589,0.5574894393428855,0.9566044195004408], + [0.13137254901960782,0.5472195469221112,0.9583812154701222], + [0.13921568627450975,0.53686659764418,0.9601216453746281], + [0.1470588235294117,0.5264321628773558,0.961825643172819], + [0.15490196078431362,0.5159178263577512,0.9634931442059831], + [0.16274509803921555,0.5053251839489482,0.965124085200289], + [0.1705882352941177,0.4946558433997787,0.9667184042691874], + [0.17843137254901964,0.4839114241003015,0.9682760409157589], + [0.18627450980392157,0.47309355683601007,0.9697969360350095], + [0.1941176470588235,0.4622038835403132,0.9712810319161138], + [0.20196078431372544,0.45124405704532283,0.9727282722446048], + [0.20980392156862737,0.4402157408309874,0.9741386021045101], + [0.2176470588235293,0.4291206087726091,0.9755119679804366], + [0.22549019607843146,0.41796034488678324,0.9768483177596007], + [0.2333333333333334,0.40673664307580015,0.9781476007338057], + [0.24117647058823533,0.3954512068705425,0.9794097676013659], + [0.24901960784313726,0.38410574917192586,0.9806347704689777], + [0.2568627450980392,0.372701991990914,0.9818225628535369], + [0.2647058823529411,0.361241666187153,0.9829730996839018], + [0.27254901960784306,0.34972651120626125,0.9840863373026044], + [0.280392156862745,0.3381582748158173,0.9851622334675065], + [0.2882352941176469,0.3265387128400835,0.9862007473534026], + [0.2960784313725491,0.3148695888935078,0.987201839553569], + [0.303921568627451,0.3031526741130435,0.9881654720812594], + [0.31176470588235294,0.2913897468893246,0.989091608371146], + [0.3196078431372549,0.27958259259674384,0.989980213280707], + [0.3274509803921568,0.26773300332246797,0.9908312530915603], + [0.33529411764705874,0.2558427775944357,0.9916446955107427], + [0.3431372549019607,0.2439137201083773,0.9924205096719357], + [0.35098039215686283,0.231947641453898,0.9931586661366362], + [0.35882352941176476,0.2199463578396685,0.9938591368952737], + [0.3666666666666667,0.2079116908177593,0.9945218953682733], + [0.37450980392156863,0.19584546700716696,0.9951469164070644], + [0.38235294117647056,0.18374951781657037,0.9957341762950345], + [0.3901960784313725,0.1716256791663597,0.9962836527484294], + [0.39803921568627443,0.15947579120998093,0.9967953249171991], + [0.40588235294117636,0.14730169805463766,0.997269173385788], + [0.4137254901960783,0.1351052474813932,0.9977051801738729], + [0.42156862745098045,0.12288829066471403,0.9981033287370441], + [0.4294117647058824,0.11065268189150079,0.9984636039674339], + [0.4372549019607843,0.0984002782796427,0.99878599219429], + [0.44509803921568625,0.08613293949614605,0.9990704811844932], + [0.4529411764705882,0.07385252747487404,0.9993170601430229], + [0.4607843137254901,0.061560906133942966,0.9995257197133659], + [0.46862745098039205,0.04925994109281702,0.9996964519778716], + [0.4764705882352942,0.03695149938914476,0.9998292504580527], + [0.48431372549019613,0.024637449195381883,0.9999241101148306], + [0.49215686274509807,0.012319659535238399,0.9999810273487268], + [0.5,0.0,1.0] ], + seismic: [ + [0.0,0.0,0.3], + [0.0,0.0,0.31098039215686274], + [0.0,0.0,0.3219607843137255], + [0.0,0.0,0.33294117647058824], + [0.0,0.0,0.34392156862745094], + [0.0,0.0,0.3549019607843137], + [0.0,0.0,0.36588235294117644], + [0.0,0.0,0.3768627450980392], + [0.0,0.0,0.38784313725490194], + [0.0,0.0,0.3988235294117647], + [0.0,0.0,0.40980392156862744], + [0.0,0.0,0.4207843137254902], + [0.0,0.0,0.43176470588235294], + [0.0,0.0,0.4427450980392157], + [0.0,0.0,0.45372549019607844], + [0.0,0.0,0.4647058823529412], + [0.0,0.0,0.4756862745098039], + [0.0,0.0,0.48666666666666664], + [0.0,0.0,0.4976470588235294], + [0.0,0.0,0.5086274509803921], + [0.0,0.0,0.5196078431372548], + [0.0,0.0,0.5305882352941176], + [0.0,0.0,0.5415686274509803], + [0.0,0.0,0.5525490196078431], + [0.0,0.0,0.5635294117647058], + [0.0,0.0,0.5745098039215686], + [0.0,0.0,0.5854901960784313], + [0.0,0.0,0.5964705882352941], + [0.0,0.0,0.6074509803921568], + [0.0,0.0,0.6184313725490196], + [0.0,0.0,0.6294117647058823], + [0.0,0.0,0.6403921568627451], + [0.0,0.0,0.6513725490196078], + [0.0,0.0,0.6623529411764706], + [0.0,0.0,0.6733333333333333], + [0.0,0.0,0.6843137254901961], + [0.0,0.0,0.6952941176470588], + [0.0,0.0,0.7062745098039215], + [0.0,0.0,0.7172549019607843], + [0.0,0.0,0.7282352941176471], + [0.0,0.0,0.7392156862745097], + [0.0,0.0,0.7501960784313725], + [0.0,0.0,0.7611764705882352], + [0.0,0.0,0.7721568627450981], + [0.0,0.0,0.7831372549019607], + [0.0,0.0,0.7941176470588234], + [0.0,0.0,0.8050980392156861], + [0.0,0.0,0.8160784313725491], + [0.0,0.0,0.8270588235294116], + [0.0,0.0,0.8380392156862744], + [0.0,0.0,0.8490196078431371], + [0.0,0.0,0.8599999999999999], + [0.0,0.0,0.8709803921568626], + [0.0,0.0,0.8819607843137254], + [0.0,0.0,0.8929411764705881], + [0.0,0.0,0.9039215686274509], + [0.0,0.0,0.9149019607843136], + [0.0,0.0,0.9258823529411764], + [0.0,0.0,0.9368627450980391], + [0.0,0.0,0.9478431372549019], + [0.0,0.0,0.9588235294117646], + [0.0,0.0,0.9698039215686274], + [0.0,0.0,0.9807843137254901], + [0.0,0.0,0.9917647058823529], + [0.00392156862745098,0.00392156862745098,1.0], + [0.0196078431372549,0.0196078431372549,1.0], + [0.0352941176470586,0.0352941176470586,1.0], + [0.050980392156862744,0.050980392156862744,1.0], + [0.06666666666666667,0.06666666666666667,1.0], + [0.08235294117647059,0.08235294117647059,1.0], + [0.09803921568627451,0.09803921568627451,1.0], + [0.11372549019607843,0.11372549019607843,1.0], + [0.12941176470588237,0.12941176470588237,1.0], + [0.1450980392156863,0.1450980392156863,1.0], + [0.16078431372548999,0.16078431372548999,1.0], + [0.17647058823529413,0.17647058823529413,1.0], + [0.19215686274509805,0.19215686274509805,1.0], + [0.20784313725490197,0.20784313725490197,1.0], + [0.2235294117647059,0.2235294117647059,1.0], + [0.23921568627450981,0.23921568627450981,1.0], + [0.2549019607843137,0.2549019607843137,1.0], + [0.27058823529411763,0.27058823529411763,1.0], + [0.28627450980392133,0.28627450980392133,1.0], + [0.30196078431372547,0.30196078431372547,1.0], + [0.3176470588235294,0.3176470588235294,1.0], + [0.3333333333333333,0.3333333333333333,1.0], + [0.34901960784313724,0.34901960784313724,1.0], + [0.36470588235294116,0.36470588235294116,1.0], + [0.3803921568627451,0.3803921568627451,1.0], + [0.396078431372549,0.396078431372549,1.0], + [0.4117647058823527,0.4117647058823527,1.0], + [0.42745098039215684,0.42745098039215684,1.0], + [0.44313725490196076,0.44313725490196076,1.0], + [0.4588235294117647,0.4588235294117647,1.0], + [0.4745098039215686,0.4745098039215686,1.0], + [0.49019607843137253,0.49019607843137253,1.0], + [0.5058823529411764,0.5058823529411764,1.0], + [0.5215686274509804,0.5215686274509804,1.0], + [0.5372549019607841,0.5372549019607841,1.0], + [0.5529411764705883,0.5529411764705883,1.0], + [0.5686274509803921,0.5686274509803921,1.0], + [0.5843137254901961,0.5843137254901961,1.0], + [0.6,0.6,1.0], + [0.615686274509804,0.615686274509804,1.0], + [0.6313725490196078,0.6313725490196078,1.0], + [0.6470588235294118,0.6470588235294118,1.0], + [0.6627450980392154,0.6627450980392154,1.0], + [0.6784313725490196,0.6784313725490196,1.0], + [0.6941176470588235,0.6941176470588235,1.0], + [0.7098039215686275,0.7098039215686275,1.0], + [0.7254901960784313,0.7254901960784313,1.0], + [0.7411764705882353,0.7411764705882353,1.0], + [0.7568627450980392,0.7568627450980392,1.0], + [0.7725490196078432,0.7725490196078432,1.0], + [0.7882352941176468,0.7882352941176468,1.0], + [0.803921568627451,0.803921568627451,1.0], + [0.8196078431372549,0.8196078431372549,1.0], + [0.8352941176470589,0.8352941176470589,1.0], + [0.8509803921568627,0.8509803921568627,1.0], + [0.8666666666666667,0.8666666666666667,1.0], + [0.8823529411764706,0.8823529411764706,1.0], + [0.8980392156862745,0.8980392156862745,1.0], + [0.9137254901960782,0.9137254901960782,1.0], + [0.9294117647058824,0.9294117647058824,1.0], + [0.9450980392156862,0.9450980392156862,1.0], + [0.9607843137254902,0.9607843137254902,1.0], + [0.9764705882352941,0.9764705882352941,1.0], + [0.9921568627450981,0.9921568627450981,1.0], + [1.0,0.9921568627450981,0.9921568627450981], + [1.0,0.9764705882352941,0.9764705882352941], + [1.0,0.9607843137254902,0.9607843137254902], + [1.0,0.9450980392156862,0.9450980392156862], + [1.0,0.9294117647058828,0.9294117647058828], + [1.0,0.9137254901960784,0.9137254901960784], + [1.0,0.8980392156862745,0.8980392156862745], + [1.0,0.8823529411764706,0.8823529411764706], + [1.0,0.8666666666666667,0.8666666666666667], + [1.0,0.8509803921568627,0.8509803921568627], + [1.0,0.8352941176470589,0.8352941176470589], + [1.0,0.8196078431372549,0.8196078431372549], + [1.0,0.803921568627451,0.803921568627451], + [1.0,0.788235294117647,0.788235294117647], + [1.0,0.7725490196078432,0.7725490196078432], + [1.0,0.7568627450980392,0.7568627450980392], + [1.0,0.7411764705882353,0.7411764705882353], + [1.0,0.7254901960784313,0.7254901960784313], + [1.0,0.7098039215686274,0.7098039215686274], + [1.0,0.6941176470588235,0.6941176470588235], + [1.0,0.6784313725490201,0.6784313725490201], + [1.0,0.6627450980392157,0.6627450980392157], + [1.0,0.6470588235294117,0.6470588235294117], + [1.0,0.6313725490196078,0.6313725490196078], + [1.0,0.615686274509804,0.615686274509804], + [1.0,0.6,0.6], + [1.0,0.584313725490196,0.584313725490196], + [1.0,0.5686274509803921,0.5686274509803921], + [1.0,0.5529411764705883,0.5529411764705883], + [1.0,0.5372549019607843,0.5372549019607843], + [1.0,0.5215686274509803,0.5215686274509803], + [1.0,0.5058823529411764,0.5058823529411764], + [1.0,0.4901960784313726,0.4901960784313726], + [1.0,0.4745098039215686,0.4745098039215686], + [1.0,0.45882352941176474,0.45882352941176474], + [1.0,0.44313725490196076,0.44313725490196076], + [1.0,0.42745098039215734,0.42745098039215734], + [1.0,0.4117647058823529,0.4117647058823529], + [1.0,0.39607843137254906,0.39607843137254906], + [1.0,0.3803921568627451,0.3803921568627451], + [1.0,0.3647058823529412,0.3647058823529412], + [1.0,0.34901960784313724,0.34901960784313724], + [1.0,0.33333333333333337,0.33333333333333337], + [1.0,0.3176470588235294,0.3176470588235294], + [1.0,0.3019607843137255,0.3019607843137255], + [1.0,0.28627450980392155,0.28627450980392155], + [1.0,0.2705882352941177,0.2705882352941177], + [1.0,0.2549019607843137,0.2549019607843137], + [1.0,0.23921568627450984,0.23921568627450984], + [1.0,0.22352941176470587,0.22352941176470587], + [1.0,0.207843137254902,0.207843137254902], + [1.0,0.19215686274509802,0.19215686274509802], + [1.0,0.1764705882352946,0.1764705882352946], + [1.0,0.16078431372549018,0.16078431372549018], + [1.0,0.14509803921568631,0.14509803921568631], + [1.0,0.12941176470588234,0.12941176470588234], + [1.0,0.11372549019607847,0.11372549019607847], + [1.0,0.0980392156862745,0.0980392156862745], + [1.0,0.08235294117647063,0.08235294117647063], + [1.0,0.06666666666666665,0.06666666666666665], + [1.0,0.050980392156862786,0.050980392156862786], + [1.0,0.03529411764705881,0.03529411764705881], + [1.0,0.019607843137254943,0.019607843137254943], + [1.0,0.0039215686274509665,0.0039215686274509665], + [0.9941176470588236,0.0,0.0], + [0.9862745098039216,0.0,0.0], + [0.9784313725490196,0.0,0.0], + [0.9705882352941176,0.0,0.0], + [0.9627450980392159,0.0,0.0], + [0.9549019607843138,0.0,0.0], + [0.9470588235294117,0.0,0.0], + [0.9392156862745098,0.0,0.0], + [0.9313725490196079,0.0,0.0], + [0.9235294117647059,0.0,0.0], + [0.9156862745098039,0.0,0.0], + [0.907843137254902,0.0,0.0], + [0.9,0.0,0.0], + [0.892156862745098,0.0,0.0], + [0.884313725490196,0.0,0.0], + [0.8764705882352941,0.0,0.0], + [0.8686274509803922,0.0,0.0], + [0.8607843137254902,0.0,0.0], + [0.8529411764705882,0.0,0.0], + [0.8450980392156863,0.0,0.0], + [0.8372549019607846,0.0,0.0], + [0.8294117647058823,0.0,0.0], + [0.8215686274509804,0.0,0.0], + [0.8137254901960784,0.0,0.0], + [0.8058823529411765,0.0,0.0], + [0.7980392156862746,0.0,0.0], + [0.7901960784313725,0.0,0.0], + [0.7823529411764706,0.0,0.0], + [0.7745098039215687,0.0,0.0], + [0.7666666666666666,0.0,0.0], + [0.7588235294117647,0.0,0.0], + [0.7509803921568627,0.0,0.0], + [0.7431372549019608,0.0,0.0], + [0.7352941176470589,0.0,0.0], + [0.7274509803921569,0.0,0.0], + [0.7196078431372549,0.0,0.0], + [0.7117647058823532,0.0,0.0], + [0.7039215686274509,0.0,0.0], + [0.696078431372549,0.0,0.0], + [0.6882352941176471,0.0,0.0], + [0.6803921568627451,0.0,0.0], + [0.6725490196078432,0.0,0.0], + [0.6647058823529413,0.0,0.0], + [0.6568627450980392,0.0,0.0], + [0.6490196078431373,0.0,0.0], + [0.6411764705882352,0.0,0.0], + [0.6333333333333333,0.0,0.0], + [0.6254901960784314,0.0,0.0], + [0.6176470588235294,0.0,0.0], + [0.6098039215686275,0.0,0.0], + [0.6019607843137256,0.0,0.0], + [0.5941176470588235,0.0,0.0], + [0.5862745098039218,0.0,0.0], + [0.5784313725490196,0.0,0.0], + [0.5705882352941176,0.0,0.0], + [0.5627450980392157,0.0,0.0], + [0.5549019607843138,0.0,0.0], + [0.5470588235294118,0.0,0.0], + [0.5392156862745099,0.0,0.0], + [0.5313725490196078,0.0,0.0], + [0.5235294117647059,0.0,0.0], + [0.5156862745098039,0.0,0.0], + [0.5078431372549019,0.0,0.0], + [0.5,0.0,0.0] ], + seismic_r: [ + [0.5,0.0,0.0], + [0.5078431372549019,0.0,0.0], + [0.5156862745098039,0.0,0.0], + [0.5235294117647059,0.0,0.0], + [0.5313725490196078,0.0,0.0], + [0.5392156862745098,0.0,0.0], + [0.5470588235294118,0.0,0.0], + [0.5549019607843138,0.0,0.0], + [0.5627450980392157,0.0,0.0], + [0.5705882352941176,0.0,0.0], + [0.5784313725490196,0.0,0.0], + [0.5862745098039216,0.0,0.0], + [0.5941176470588235,0.0,0.0], + [0.6019607843137255,0.0,0.0], + [0.6098039215686275,0.0,0.0], + [0.6176470588235294,0.0,0.0], + [0.6254901960784314,0.0,0.0], + [0.6333333333333333,0.0,0.0], + [0.6411764705882352,0.0,0.0], + [0.6490196078431373,0.0,0.0], + [0.6568627450980392,0.0,0.0], + [0.6647058823529411,0.0,0.0], + [0.6725490196078432,0.0,0.0], + [0.6803921568627451,0.0,0.0], + [0.6882352941176471,0.0,0.0], + [0.696078431372549,0.0,0.0], + [0.7039215686274509,0.0,0.0], + [0.711764705882353,0.0,0.0], + [0.7196078431372549,0.0,0.0], + [0.7274509803921568,0.0,0.0], + [0.7352941176470589,0.0,0.0], + [0.7431372549019608,0.0,0.0], + [0.7509803921568627,0.0,0.0], + [0.7588235294117647,0.0,0.0], + [0.7666666666666666,0.0,0.0], + [0.7745098039215687,0.0,0.0], + [0.7823529411764706,0.0,0.0], + [0.7901960784313725,0.0,0.0], + [0.7980392156862746,0.0,0.0], + [0.8058823529411765,0.0,0.0], + [0.8137254901960784,0.0,0.0], + [0.8215686274509804,0.0,0.0], + [0.8294117647058823,0.0,0.0], + [0.8372549019607843,0.0,0.0], + [0.8450980392156863,0.0,0.0], + [0.8529411764705882,0.0,0.0], + [0.8607843137254902,0.0,0.0], + [0.8686274509803922,0.0,0.0], + [0.8764705882352941,0.0,0.0], + [0.884313725490196,0.0,0.0], + [0.892156862745098,0.0,0.0], + [0.9,0.0,0.0], + [0.907843137254902,0.0,0.0], + [0.9156862745098039,0.0,0.0], + [0.9235294117647059,0.0,0.0], + [0.9313725490196079,0.0,0.0], + [0.9392156862745098,0.0,0.0], + [0.9470588235294117,0.0,0.0], + [0.9549019607843137,0.0,0.0], + [0.9627450980392157,0.0,0.0], + [0.9705882352941176,0.0,0.0], + [0.9784313725490196,0.0,0.0], + [0.9862745098039216,0.0,0.0], + [0.9941176470588236,0.0,0.0], + [1.0,0.00392156862745098,0.00392156862745098], + [1.0,0.0196078431372549,0.0196078431372549], + [1.0,0.0352941176470586,0.0352941176470586], + [1.0,0.050980392156862744,0.050980392156862744], + [1.0,0.06666666666666667,0.06666666666666667], + [1.0,0.08235294117647059,0.08235294117647059], + [1.0,0.09803921568627451,0.09803921568627451], + [1.0,0.11372549019607843,0.11372549019607843], + [1.0,0.12941176470588237,0.12941176470588237], + [1.0,0.1450980392156863,0.1450980392156863], + [1.0,0.16078431372548999,0.16078431372548999], + [1.0,0.17647058823529413,0.17647058823529413], + [1.0,0.19215686274509805,0.19215686274509805], + [1.0,0.20784313725490197,0.20784313725490197], + [1.0,0.2235294117647059,0.2235294117647059], + [1.0,0.23921568627450981,0.23921568627450981], + [1.0,0.2549019607843137,0.2549019607843137], + [1.0,0.27058823529411763,0.27058823529411763], + [1.0,0.28627450980392133,0.28627450980392133], + [1.0,0.30196078431372547,0.30196078431372547], + [1.0,0.3176470588235294,0.3176470588235294], + [1.0,0.3333333333333333,0.3333333333333333], + [1.0,0.34901960784313724,0.34901960784313724], + [1.0,0.36470588235294116,0.36470588235294116], + [1.0,0.3803921568627451,0.3803921568627451], + [1.0,0.396078431372549,0.396078431372549], + [1.0,0.4117647058823527,0.4117647058823527], + [1.0,0.42745098039215684,0.42745098039215684], + [1.0,0.44313725490196076,0.44313725490196076], + [1.0,0.4588235294117647,0.4588235294117647], + [1.0,0.4745098039215686,0.4745098039215686], + [1.0,0.49019607843137253,0.49019607843137253], + [1.0,0.5058823529411764,0.5058823529411764], + [1.0,0.5215686274509804,0.5215686274509804], + [1.0,0.5372549019607841,0.5372549019607841], + [1.0,0.5529411764705883,0.5529411764705883], + [1.0,0.5686274509803921,0.5686274509803921], + [1.0,0.5843137254901961,0.5843137254901961], + [1.0,0.6,0.6], + [1.0,0.615686274509804,0.615686274509804], + [1.0,0.6313725490196078,0.6313725490196078], + [1.0,0.6470588235294118,0.6470588235294118], + [1.0,0.6627450980392154,0.6627450980392154], + [1.0,0.6784313725490196,0.6784313725490196], + [1.0,0.6941176470588235,0.6941176470588235], + [1.0,0.7098039215686275,0.7098039215686275], + [1.0,0.7254901960784313,0.7254901960784313], + [1.0,0.7411764705882353,0.7411764705882353], + [1.0,0.7568627450980392,0.7568627450980392], + [1.0,0.7725490196078432,0.7725490196078432], + [1.0,0.7882352941176468,0.7882352941176468], + [1.0,0.803921568627451,0.803921568627451], + [1.0,0.8196078431372549,0.8196078431372549], + [1.0,0.8352941176470589,0.8352941176470589], + [1.0,0.8509803921568627,0.8509803921568627], + [1.0,0.8666666666666667,0.8666666666666667], + [1.0,0.8823529411764706,0.8823529411764706], + [1.0,0.8980392156862745,0.8980392156862745], + [1.0,0.9137254901960782,0.9137254901960782], + [1.0,0.9294117647058824,0.9294117647058824], + [1.0,0.9450980392156862,0.9450980392156862], + [1.0,0.9607843137254902,0.9607843137254902], + [1.0,0.9764705882352941,0.9764705882352941], + [1.0,0.9921568627450981,0.9921568627450981], + [0.9921568627450981,0.9921568627450981,1.0], + [0.9764705882352941,0.9764705882352941,1.0], + [0.9607843137254902,0.9607843137254902,1.0], + [0.9450980392156862,0.9450980392156862,1.0], + [0.9294117647058828,0.9294117647058828,1.0], + [0.9137254901960784,0.9137254901960784,1.0], + [0.8980392156862745,0.8980392156862745,1.0], + [0.8823529411764706,0.8823529411764706,1.0], + [0.8666666666666667,0.8666666666666667,1.0], + [0.8509803921568627,0.8509803921568627,1.0], + [0.8352941176470589,0.8352941176470589,1.0], + [0.8196078431372549,0.8196078431372549,1.0], + [0.803921568627451,0.803921568627451,1.0], + [0.788235294117647,0.788235294117647,1.0], + [0.7725490196078432,0.7725490196078432,1.0], + [0.7568627450980392,0.7568627450980392,1.0], + [0.7411764705882353,0.7411764705882353,1.0], + [0.7254901960784313,0.7254901960784313,1.0], + [0.7098039215686274,0.7098039215686274,1.0], + [0.6941176470588235,0.6941176470588235,1.0], + [0.6784313725490201,0.6784313725490201,1.0], + [0.6627450980392157,0.6627450980392157,1.0], + [0.6470588235294117,0.6470588235294117,1.0], + [0.6313725490196078,0.6313725490196078,1.0], + [0.615686274509804,0.615686274509804,1.0], + [0.6,0.6,1.0], + [0.584313725490196,0.584313725490196,1.0], + [0.5686274509803921,0.5686274509803921,1.0], + [0.5529411764705883,0.5529411764705883,1.0], + [0.5372549019607843,0.5372549019607843,1.0], + [0.5215686274509803,0.5215686274509803,1.0], + [0.5058823529411764,0.5058823529411764,1.0], + [0.4901960784313726,0.4901960784313726,1.0], + [0.4745098039215686,0.4745098039215686,1.0], + [0.45882352941176474,0.45882352941176474,1.0], + [0.44313725490196076,0.44313725490196076,1.0], + [0.42745098039215734,0.42745098039215734,1.0], + [0.4117647058823529,0.4117647058823529,1.0], + [0.39607843137254906,0.39607843137254906,1.0], + [0.3803921568627451,0.3803921568627451,1.0], + [0.3647058823529412,0.3647058823529412,1.0], + [0.34901960784313724,0.34901960784313724,1.0], + [0.33333333333333337,0.33333333333333337,1.0], + [0.3176470588235294,0.3176470588235294,1.0], + [0.3019607843137255,0.3019607843137255,1.0], + [0.28627450980392155,0.28627450980392155,1.0], + [0.2705882352941177,0.2705882352941177,1.0], + [0.2549019607843137,0.2549019607843137,1.0], + [0.23921568627450984,0.23921568627450984,1.0], + [0.22352941176470587,0.22352941176470587,1.0], + [0.207843137254902,0.207843137254902,1.0], + [0.19215686274509802,0.19215686274509802,1.0], + [0.1764705882352946,0.1764705882352946,1.0], + [0.16078431372549018,0.16078431372549018,1.0], + [0.14509803921568631,0.14509803921568631,1.0], + [0.12941176470588234,0.12941176470588234,1.0], + [0.11372549019607847,0.11372549019607847,1.0], + [0.0980392156862745,0.0980392156862745,1.0], + [0.08235294117647063,0.08235294117647063,1.0], + [0.06666666666666665,0.06666666666666665,1.0], + [0.050980392156862786,0.050980392156862786,1.0], + [0.03529411764705881,0.03529411764705881,1.0], + [0.019607843137254943,0.019607843137254943,1.0], + [0.0039215686274509665,0.0039215686274509665,1.0], + [0.0,0.0,0.991764705882353], + [0.0,0.0,0.9807843137254902], + [0.0,0.0,0.9698039215686275], + [0.0,0.0,0.9588235294117647], + [0.0,0.0,0.9478431372549023], + [0.0,0.0,0.9368627450980392], + [0.0,0.0,0.9258823529411765], + [0.0,0.0,0.9149019607843137], + [0.0,0.0,0.903921568627451], + [0.0,0.0,0.8929411764705882], + [0.0,0.0,0.8819607843137255], + [0.0,0.0,0.8709803921568627], + [0.0,0.0,0.86], + [0.0,0.0,0.8490196078431372], + [0.0,0.0,0.8380392156862745], + [0.0,0.0,0.8270588235294117], + [0.0,0.0,0.816078431372549], + [0.0,0.0,0.8050980392156863], + [0.0,0.0,0.7941176470588236], + [0.0,0.0,0.7831372549019608], + [0.0,0.0,0.7721568627450983], + [0.0,0.0,0.7611764705882353], + [0.0,0.0,0.7501960784313726], + [0.0,0.0,0.7392156862745098], + [0.0,0.0,0.7282352941176471], + [0.0,0.0,0.7172549019607843], + [0.0,0.0,0.7062745098039216], + [0.0,0.0,0.6952941176470588], + [0.0,0.0,0.6843137254901961], + [0.0,0.0,0.6733333333333333], + [0.0,0.0,0.6623529411764706], + [0.0,0.0,0.6513725490196078], + [0.0,0.0,0.6403921568627451], + [0.0,0.0,0.6294117647058823], + [0.0,0.0,0.6184313725490196], + [0.0,0.0,0.6074509803921568], + [0.0,0.0,0.5964705882352945], + [0.0,0.0,0.5854901960784313], + [0.0,0.0,0.5745098039215687], + [0.0,0.0,0.5635294117647058], + [0.0,0.0,0.5525490196078432], + [0.0,0.0,0.5415686274509804], + [0.0,0.0,0.5305882352941177], + [0.0,0.0,0.5196078431372549], + [0.0,0.0,0.5086274509803923], + [0.0,0.0,0.49764705882352944], + [0.0,0.0,0.4866666666666667], + [0.0,0.0,0.47568627450980394], + [0.0,0.0,0.4647058823529413], + [0.0,0.0,0.45372549019607844], + [0.0,0.0,0.4427450980392158], + [0.0,0.0,0.43176470588235294], + [0.0,0.0,0.42078431372549063], + [0.0,0.0,0.40980392156862744], + [0.0,0.0,0.3988235294117648], + [0.0,0.0,0.38784313725490205], + [0.0,0.0,0.3768627450980393], + [0.0,0.0,0.36588235294117655], + [0.0,0.0,0.3549019607843138], + [0.0,0.0,0.34392156862745105], + [0.0,0.0,0.3329411764705883], + [0.0,0.0,0.32196078431372555], + [0.0,0.0,0.3109803921568628], + [0.0,0.0,0.3] ], + spring: [ + [1.0,0.0,1.0], + [1.0,0.00392156862745098,0.996078431372549], + [1.0,0.00784313725490196,0.9921568627450981], + [1.0,0.011764705882352941,0.9882352941176471], + [1.0,0.01568627450980392,0.9843137254901961], + [1.0,0.0196078431372549,0.9803921568627451], + [1.0,0.023529411764705882,0.9764705882352941], + [1.0,0.027450980392156862,0.9725490196078431], + [1.0,0.03137254901960784,0.9686274509803922], + [1.0,0.03529411764705882,0.9647058823529412], + [1.0,0.0392156862745098,0.9607843137254902], + [1.0,0.043137254901960784,0.9568627450980393], + [1.0,0.047058823529411764,0.9529411764705882], + [1.0,0.050980392156862744,0.9490196078431372], + [1.0,0.054901960784313725,0.9450980392156862], + [1.0,0.058823529411764705,0.9411764705882353], + [1.0,0.06274509803921569,0.9372549019607843], + [1.0,0.06666666666666667,0.9333333333333333], + [1.0,0.07058823529411765,0.9294117647058824], + [1.0,0.07450980392156863,0.9254901960784314], + [1.0,0.0784313725490196,0.9215686274509804], + [1.0,0.08235294117647059,0.9176470588235294], + [1.0,0.08627450980392157,0.9137254901960784], + [1.0,0.09019607843137255,0.9098039215686274], + [1.0,0.09411764705882353,0.9058823529411765], + [1.0,0.09803921568627451,0.9019607843137255], + [1.0,0.10196078431372549,0.8980392156862745], + [1.0,0.10588235294117647,0.8941176470588236], + [1.0,0.10980392156862745,0.8901960784313725], + [1.0,0.11372549019607843,0.8862745098039215], + [1.0,0.11764705882352941,0.8823529411764706], + [1.0,0.12156862745098039,0.8784313725490196], + [1.0,0.12549019607843137,0.8745098039215686], + [1.0,0.12941176470588234,0.8705882352941177], + [1.0,0.13333333333333333,0.8666666666666667], + [1.0,0.13725490196078433,0.8627450980392157], + [1.0,0.1411764705882353,0.8588235294117648], + [1.0,0.14509803921568626,0.8549019607843138], + [1.0,0.14901960784313725,0.8509803921568627], + [1.0,0.15294117647058825,0.8470588235294118], + [1.0,0.1568627450980392,0.8431372549019608], + [1.0,0.16078431372549018,0.8392156862745098], + [1.0,0.16470588235294117,0.8352941176470589], + [1.0,0.16862745098039217,0.8313725490196078], + [1.0,0.17254901960784313,0.8274509803921568], + [1.0,0.1764705882352941,0.8235294117647058], + [1.0,0.1803921568627451,0.8196078431372549], + [1.0,0.1843137254901961,0.8156862745098039], + [1.0,0.18823529411764706,0.8117647058823529], + [1.0,0.19215686274509802,0.807843137254902], + [1.0,0.19607843137254902,0.803921568627451], + [1.0,0.2,0.8], + [1.0,0.20392156862745098,0.7960784313725491], + [1.0,0.20784313725490194,0.7921568627450981], + [1.0,0.21176470588235294,0.788235294117647], + [1.0,0.21568627450980393,0.7843137254901961], + [1.0,0.2196078431372549,0.7803921568627451], + [1.0,0.22352941176470587,0.7764705882352941], + [1.0,0.22745098039215686,0.7725490196078432], + [1.0,0.23137254901960785,0.7686274509803921], + [1.0,0.23529411764705882,0.7647058823529411], + [1.0,0.2392156862745098,0.7607843137254902], + [1.0,0.24313725490196078,0.7568627450980392], + [1.0,0.24705882352941178,0.7529411764705882], + [1.0,0.25098039215686274,0.7490196078431373], + [1.0,0.2549019607843137,0.7450980392156863], + [1.0,0.2588235294117647,0.7411764705882353], + [1.0,0.2627450980392157,0.7372549019607844], + [1.0,0.26666666666666666,0.7333333333333334], + [1.0,0.27058823529411763,0.7294117647058824], + [1.0,0.27450980392156865,0.7254901960784313], + [1.0,0.2784313725490196,0.7215686274509804], + [1.0,0.2823529411764706,0.7176470588235294], + [1.0,0.28627450980392155,0.7137254901960784], + [1.0,0.2901960784313725,0.7098039215686275], + [1.0,0.29411764705882354,0.7058823529411764], + [1.0,0.2980392156862745,0.7019607843137254], + [1.0,0.30196078431372547,0.6980392156862745], + [1.0,0.3058823529411765,0.6941176470588235], + [1.0,0.30980392156862746,0.6901960784313725], + [1.0,0.3137254901960784,0.6862745098039216], + [1.0,0.3176470588235294,0.6823529411764706], + [1.0,0.32156862745098036,0.6784313725490196], + [1.0,0.3254901960784314,0.6745098039215687], + [1.0,0.32941176470588235,0.6705882352941177], + [1.0,0.3333333333333333,0.6666666666666667], + [1.0,0.33725490196078434,0.6627450980392157], + [1.0,0.3411764705882353,0.6588235294117647], + [1.0,0.34509803921568627,0.6549019607843137], + [1.0,0.34901960784313724,0.6509803921568628], + [1.0,0.3529411764705882,0.6470588235294118], + [1.0,0.3568627450980392,0.6431372549019607], + [1.0,0.3607843137254902,0.6392156862745098], + [1.0,0.36470588235294116,0.6352941176470588], + [1.0,0.3686274509803922,0.6313725490196078], + [1.0,0.37254901960784315,0.6274509803921569], + [1.0,0.3764705882352941,0.6235294117647059], + [1.0,0.3803921568627451,0.6196078431372549], + [1.0,0.38431372549019605,0.615686274509804], + [1.0,0.38823529411764707,0.611764705882353], + [1.0,0.39215686274509803,0.607843137254902], + [1.0,0.396078431372549,0.603921568627451], + [1.0,0.4,0.6], + [1.0,0.403921568627451,0.596078431372549], + [1.0,0.40784313725490196,0.592156862745098], + [1.0,0.4117647058823529,0.5882352941176471], + [1.0,0.4156862745098039,0.5843137254901961], + [1.0,0.4196078431372549,0.580392156862745], + [1.0,0.4235294117647059,0.5764705882352941], + [1.0,0.42745098039215684,0.5725490196078431], + [1.0,0.43137254901960786,0.5686274509803921], + [1.0,0.43529411764705883,0.5647058823529412], + [1.0,0.4392156862745098,0.5607843137254902], + [1.0,0.44313725490196076,0.5568627450980392], + [1.0,0.44705882352941173,0.5529411764705883], + [1.0,0.45098039215686275,0.5490196078431373], + [1.0,0.4549019607843137,0.5450980392156863], + [1.0,0.4588235294117647,0.5411764705882354], + [1.0,0.4627450980392157,0.5372549019607843], + [1.0,0.4666666666666667,0.5333333333333333], + [1.0,0.47058823529411764,0.5294117647058824], + [1.0,0.4745098039215686,0.5254901960784314], + [1.0,0.4784313725490196,0.5215686274509804], + [1.0,0.4823529411764706,0.5176470588235293], + [1.0,0.48627450980392156,0.5137254901960784], + [1.0,0.49019607843137253,0.5098039215686274], + [1.0,0.49411764705882355,0.5058823529411764], + [1.0,0.4980392156862745,0.5019607843137255], + [1.0,0.5019607843137255,0.4980392156862745], + [1.0,0.5058823529411764,0.49411764705882355], + [1.0,0.5098039215686274,0.4901960784313726], + [1.0,0.5137254901960784,0.4862745098039216], + [1.0,0.5176470588235293,0.48235294117647065], + [1.0,0.5215686274509804,0.4784313725490196], + [1.0,0.5254901960784314,0.4745098039215686], + [1.0,0.5294117647058824,0.47058823529411764], + [1.0,0.5333333333333333,0.4666666666666667], + [1.0,0.5372549019607843,0.4627450980392157], + [1.0,0.5411764705882353,0.45882352941176474], + [1.0,0.5450980392156862,0.4549019607843138], + [1.0,0.5490196078431373,0.4509803921568627], + [1.0,0.5529411764705883,0.44705882352941173], + [1.0,0.5568627450980392,0.44313725490196076], + [1.0,0.5607843137254902,0.4392156862745098], + [1.0,0.5647058823529412,0.43529411764705883], + [1.0,0.5686274509803921,0.43137254901960786], + [1.0,0.5725490196078431,0.4274509803921569], + [1.0,0.5764705882352941,0.42352941176470593], + [1.0,0.580392156862745,0.41960784313725497], + [1.0,0.5843137254901961,0.4156862745098039], + [1.0,0.5882352941176471,0.4117647058823529], + [1.0,0.592156862745098,0.40784313725490196], + [1.0,0.596078431372549,0.403921568627451], + [1.0,0.6,0.4], + [1.0,0.6039215686274509,0.39607843137254906], + [1.0,0.6078431372549019,0.3921568627450981], + [1.0,0.611764705882353,0.388235294117647], + [1.0,0.615686274509804,0.38431372549019605], + [1.0,0.6196078431372549,0.3803921568627451], + [1.0,0.6235294117647059,0.3764705882352941], + [1.0,0.6274509803921569,0.37254901960784315], + [1.0,0.6313725490196078,0.3686274509803922], + [1.0,0.6352941176470588,0.3647058823529412], + [1.0,0.6392156862745098,0.36078431372549025], + [1.0,0.6431372549019607,0.3568627450980393], + [1.0,0.6470588235294118,0.3529411764705882], + [1.0,0.6509803921568628,0.34901960784313724], + [1.0,0.6549019607843137,0.34509803921568627], + [1.0,0.6588235294117647,0.3411764705882353], + [1.0,0.6627450980392157,0.33725490196078434], + [1.0,0.6666666666666666,0.33333333333333337], + [1.0,0.6705882352941176,0.3294117647058824], + [1.0,0.6745098039215687,0.3254901960784313], + [1.0,0.6784313725490196,0.32156862745098036], + [1.0,0.6823529411764706,0.3176470588235294], + [1.0,0.6862745098039216,0.3137254901960784], + [1.0,0.6901960784313725,0.30980392156862746], + [1.0,0.6941176470588235,0.3058823529411765], + [1.0,0.6980392156862745,0.3019607843137255], + [1.0,0.7019607843137254,0.29803921568627456], + [1.0,0.7058823529411764,0.2941176470588236], + [1.0,0.7098039215686275,0.2901960784313725], + [1.0,0.7137254901960784,0.28627450980392155], + [1.0,0.7176470588235294,0.2823529411764706], + [1.0,0.7215686274509804,0.2784313725490196], + [1.0,0.7254901960784313,0.27450980392156865], + [1.0,0.7294117647058823,0.2705882352941177], + [1.0,0.7333333333333333,0.2666666666666667], + [1.0,0.7372549019607844,0.26274509803921564], + [1.0,0.7411764705882353,0.2588235294117647], + [1.0,0.7450980392156863,0.2549019607843137], + [1.0,0.7490196078431373,0.25098039215686274], + [1.0,0.7529411764705882,0.24705882352941178], + [1.0,0.7568627450980392,0.2431372549019608], + [1.0,0.7607843137254902,0.23921568627450984], + [1.0,0.7647058823529411,0.23529411764705888], + [1.0,0.7686274509803921,0.2313725490196079], + [1.0,0.7725490196078432,0.22745098039215683], + [1.0,0.7764705882352941,0.22352941176470587], + [1.0,0.7803921568627451,0.2196078431372549], + [1.0,0.7843137254901961,0.21568627450980393], + [1.0,0.788235294117647,0.21176470588235297], + [1.0,0.792156862745098,0.207843137254902], + [1.0,0.796078431372549,0.20392156862745103], + [1.0,0.8,0.19999999999999996], + [1.0,0.803921568627451,0.196078431372549], + [1.0,0.807843137254902,0.19215686274509802], + [1.0,0.8117647058823529,0.18823529411764706], + [1.0,0.8156862745098039,0.1843137254901961], + [1.0,0.8196078431372549,0.18039215686274512], + [1.0,0.8235294117647058,0.17647058823529416], + [1.0,0.8274509803921568,0.1725490196078432], + [1.0,0.8313725490196078,0.16862745098039222], + [1.0,0.8352941176470589,0.16470588235294115], + [1.0,0.8392156862745098,0.16078431372549018], + [1.0,0.8431372549019608,0.1568627450980392], + [1.0,0.8470588235294118,0.15294117647058825], + [1.0,0.8509803921568627,0.14901960784313728], + [1.0,0.8549019607843137,0.14509803921568631], + [1.0,0.8588235294117647,0.14117647058823535], + [1.0,0.8627450980392157,0.13725490196078427], + [1.0,0.8666666666666667,0.1333333333333333], + [1.0,0.8705882352941177,0.12941176470588234], + [1.0,0.8745098039215686,0.12549019607843137], + [1.0,0.8784313725490196,0.1215686274509804], + [1.0,0.8823529411764706,0.11764705882352944], + [1.0,0.8862745098039215,0.11372549019607847], + [1.0,0.8901960784313725,0.1098039215686275], + [1.0,0.8941176470588235,0.10588235294117654], + [1.0,0.8980392156862745,0.10196078431372546], + [1.0,0.9019607843137255,0.0980392156862745], + [1.0,0.9058823529411765,0.09411764705882353], + [1.0,0.9098039215686274,0.09019607843137256], + [1.0,0.9137254901960784,0.0862745098039216], + [1.0,0.9176470588235294,0.08235294117647063], + [1.0,0.9215686274509803,0.07843137254901966], + [1.0,0.9254901960784314,0.07450980392156858], + [1.0,0.9294117647058824,0.07058823529411762], + [1.0,0.9333333333333333,0.06666666666666665], + [1.0,0.9372549019607843,0.06274509803921569], + [1.0,0.9411764705882353,0.05882352941176472], + [1.0,0.9450980392156862,0.05490196078431375], + [1.0,0.9490196078431372,0.050980392156862786], + [1.0,0.9529411764705882,0.04705882352941182], + [1.0,0.9568627450980391,0.04313725490196085], + [1.0,0.9607843137254902,0.039215686274509776], + [1.0,0.9647058823529412,0.03529411764705881], + [1.0,0.9686274509803922,0.03137254901960784], + [1.0,0.9725490196078431,0.027450980392156876], + [1.0,0.9764705882352941,0.02352941176470591], + [1.0,0.9803921568627451,0.019607843137254943], + [1.0,0.984313725490196,0.015686274509803977], + [1.0,0.9882352941176471,0.0117647058823529], + [1.0,0.9921568627450981,0.007843137254901933], + [1.0,0.996078431372549,0.0039215686274509665], + [1.0,1.0,0.0] ], + spring_r: [ + [1.0,1.0,0.0], + [1.0,0.996078431372549,0.00392156862745098], + [1.0,0.9921568627450981,0.00784313725490196], + [1.0,0.9882352941176471,0.011764705882352941], + [1.0,0.9843137254901961,0.01568627450980392], + [1.0,0.9803921568627451,0.0196078431372549], + [1.0,0.9764705882352941,0.023529411764705882], + [1.0,0.9725490196078431,0.027450980392156862], + [1.0,0.9686274509803922,0.03137254901960784], + [1.0,0.9647058823529412,0.03529411764705882], + [1.0,0.9607843137254902,0.0392156862745098], + [1.0,0.9568627450980393,0.043137254901960784], + [1.0,0.9529411764705882,0.047058823529411764], + [1.0,0.9490196078431372,0.050980392156862744], + [1.0,0.9450980392156862,0.054901960784313725], + [1.0,0.9411764705882353,0.058823529411764705], + [1.0,0.9372549019607843,0.06274509803921569], + [1.0,0.9333333333333333,0.06666666666666667], + [1.0,0.9294117647058824,0.07058823529411765], + [1.0,0.9254901960784314,0.07450980392156863], + [1.0,0.9215686274509804,0.0784313725490196], + [1.0,0.9176470588235294,0.08235294117647059], + [1.0,0.9137254901960784,0.08627450980392157], + [1.0,0.9098039215686274,0.09019607843137255], + [1.0,0.9058823529411765,0.09411764705882353], + [1.0,0.9019607843137255,0.09803921568627451], + [1.0,0.8980392156862745,0.10196078431372549], + [1.0,0.8941176470588236,0.10588235294117647], + [1.0,0.8901960784313725,0.10980392156862745], + [1.0,0.8862745098039215,0.11372549019607843], + [1.0,0.8823529411764706,0.11764705882352941], + [1.0,0.8784313725490196,0.12156862745098039], + [1.0,0.8745098039215686,0.12549019607843137], + [1.0,0.8705882352941177,0.12941176470588234], + [1.0,0.8666666666666667,0.13333333333333333], + [1.0,0.8627450980392157,0.13725490196078433], + [1.0,0.8588235294117648,0.1411764705882353], + [1.0,0.8549019607843138,0.14509803921568626], + [1.0,0.8509803921568627,0.14901960784313725], + [1.0,0.8470588235294118,0.15294117647058825], + [1.0,0.8431372549019608,0.1568627450980392], + [1.0,0.8392156862745098,0.16078431372549018], + [1.0,0.8352941176470589,0.16470588235294117], + [1.0,0.8313725490196078,0.16862745098039217], + [1.0,0.8274509803921568,0.17254901960784313], + [1.0,0.8235294117647058,0.1764705882352941], + [1.0,0.8196078431372549,0.1803921568627451], + [1.0,0.8156862745098039,0.1843137254901961], + [1.0,0.8117647058823529,0.18823529411764706], + [1.0,0.807843137254902,0.19215686274509802], + [1.0,0.803921568627451,0.19607843137254902], + [1.0,0.8,0.2], + [1.0,0.7960784313725491,0.20392156862745098], + [1.0,0.7921568627450981,0.20784313725490194], + [1.0,0.788235294117647,0.21176470588235294], + [1.0,0.7843137254901961,0.21568627450980393], + [1.0,0.7803921568627451,0.2196078431372549], + [1.0,0.7764705882352941,0.22352941176470587], + [1.0,0.7725490196078432,0.22745098039215686], + [1.0,0.7686274509803921,0.23137254901960785], + [1.0,0.7647058823529411,0.23529411764705882], + [1.0,0.7607843137254902,0.2392156862745098], + [1.0,0.7568627450980392,0.24313725490196078], + [1.0,0.7529411764705882,0.24705882352941178], + [1.0,0.7490196078431373,0.25098039215686274], + [1.0,0.7450980392156863,0.2549019607843137], + [1.0,0.7411764705882353,0.2588235294117647], + [1.0,0.7372549019607844,0.2627450980392157], + [1.0,0.7333333333333334,0.26666666666666666], + [1.0,0.7294117647058824,0.27058823529411763], + [1.0,0.7254901960784313,0.27450980392156865], + [1.0,0.7215686274509804,0.2784313725490196], + [1.0,0.7176470588235294,0.2823529411764706], + [1.0,0.7137254901960784,0.28627450980392155], + [1.0,0.7098039215686275,0.2901960784313725], + [1.0,0.7058823529411764,0.29411764705882354], + [1.0,0.7019607843137254,0.2980392156862745], + [1.0,0.6980392156862745,0.30196078431372547], + [1.0,0.6941176470588235,0.3058823529411765], + [1.0,0.6901960784313725,0.30980392156862746], + [1.0,0.6862745098039216,0.3137254901960784], + [1.0,0.6823529411764706,0.3176470588235294], + [1.0,0.6784313725490196,0.32156862745098036], + [1.0,0.6745098039215687,0.3254901960784314], + [1.0,0.6705882352941177,0.32941176470588235], + [1.0,0.6666666666666667,0.3333333333333333], + [1.0,0.6627450980392157,0.33725490196078434], + [1.0,0.6588235294117647,0.3411764705882353], + [1.0,0.6549019607843137,0.34509803921568627], + [1.0,0.6509803921568628,0.34901960784313724], + [1.0,0.6470588235294118,0.3529411764705882], + [1.0,0.6431372549019607,0.3568627450980392], + [1.0,0.6392156862745098,0.3607843137254902], + [1.0,0.6352941176470588,0.36470588235294116], + [1.0,0.6313725490196078,0.3686274509803922], + [1.0,0.6274509803921569,0.37254901960784315], + [1.0,0.6235294117647059,0.3764705882352941], + [1.0,0.6196078431372549,0.3803921568627451], + [1.0,0.615686274509804,0.38431372549019605], + [1.0,0.611764705882353,0.38823529411764707], + [1.0,0.607843137254902,0.39215686274509803], + [1.0,0.603921568627451,0.396078431372549], + [1.0,0.6,0.4], + [1.0,0.596078431372549,0.403921568627451], + [1.0,0.592156862745098,0.40784313725490196], + [1.0,0.5882352941176471,0.4117647058823529], + [1.0,0.5843137254901961,0.4156862745098039], + [1.0,0.580392156862745,0.4196078431372549], + [1.0,0.5764705882352941,0.4235294117647059], + [1.0,0.5725490196078431,0.42745098039215684], + [1.0,0.5686274509803921,0.43137254901960786], + [1.0,0.5647058823529412,0.43529411764705883], + [1.0,0.5607843137254902,0.4392156862745098], + [1.0,0.5568627450980392,0.44313725490196076], + [1.0,0.5529411764705883,0.44705882352941173], + [1.0,0.5490196078431373,0.45098039215686275], + [1.0,0.5450980392156863,0.4549019607843137], + [1.0,0.5411764705882354,0.4588235294117647], + [1.0,0.5372549019607843,0.4627450980392157], + [1.0,0.5333333333333333,0.4666666666666667], + [1.0,0.5294117647058824,0.47058823529411764], + [1.0,0.5254901960784314,0.4745098039215686], + [1.0,0.5215686274509804,0.4784313725490196], + [1.0,0.5176470588235293,0.4823529411764706], + [1.0,0.5137254901960784,0.48627450980392156], + [1.0,0.5098039215686274,0.49019607843137253], + [1.0,0.5058823529411764,0.49411764705882355], + [1.0,0.5019607843137255,0.4980392156862745], + [1.0,0.4980392156862745,0.5019607843137255], + [1.0,0.49411764705882355,0.5058823529411764], + [1.0,0.4901960784313726,0.5098039215686274], + [1.0,0.4862745098039216,0.5137254901960784], + [1.0,0.48235294117647065,0.5176470588235293], + [1.0,0.4784313725490196,0.5215686274509804], + [1.0,0.4745098039215686,0.5254901960784314], + [1.0,0.47058823529411764,0.5294117647058824], + [1.0,0.4666666666666667,0.5333333333333333], + [1.0,0.4627450980392157,0.5372549019607843], + [1.0,0.45882352941176474,0.5411764705882353], + [1.0,0.4549019607843138,0.5450980392156862], + [1.0,0.4509803921568627,0.5490196078431373], + [1.0,0.44705882352941173,0.5529411764705883], + [1.0,0.44313725490196076,0.5568627450980392], + [1.0,0.4392156862745098,0.5607843137254902], + [1.0,0.43529411764705883,0.5647058823529412], + [1.0,0.43137254901960786,0.5686274509803921], + [1.0,0.4274509803921569,0.5725490196078431], + [1.0,0.42352941176470593,0.5764705882352941], + [1.0,0.41960784313725497,0.580392156862745], + [1.0,0.4156862745098039,0.5843137254901961], + [1.0,0.4117647058823529,0.5882352941176471], + [1.0,0.40784313725490196,0.592156862745098], + [1.0,0.403921568627451,0.596078431372549], + [1.0,0.4,0.6], + [1.0,0.39607843137254906,0.6039215686274509], + [1.0,0.3921568627450981,0.6078431372549019], + [1.0,0.388235294117647,0.611764705882353], + [1.0,0.38431372549019605,0.615686274509804], + [1.0,0.3803921568627451,0.6196078431372549], + [1.0,0.3764705882352941,0.6235294117647059], + [1.0,0.37254901960784315,0.6274509803921569], + [1.0,0.3686274509803922,0.6313725490196078], + [1.0,0.3647058823529412,0.6352941176470588], + [1.0,0.36078431372549025,0.6392156862745098], + [1.0,0.3568627450980393,0.6431372549019607], + [1.0,0.3529411764705882,0.6470588235294118], + [1.0,0.34901960784313724,0.6509803921568628], + [1.0,0.34509803921568627,0.6549019607843137], + [1.0,0.3411764705882353,0.6588235294117647], + [1.0,0.33725490196078434,0.6627450980392157], + [1.0,0.33333333333333337,0.6666666666666666], + [1.0,0.3294117647058824,0.6705882352941176], + [1.0,0.3254901960784313,0.6745098039215687], + [1.0,0.32156862745098036,0.6784313725490196], + [1.0,0.3176470588235294,0.6823529411764706], + [1.0,0.3137254901960784,0.6862745098039216], + [1.0,0.30980392156862746,0.6901960784313725], + [1.0,0.3058823529411765,0.6941176470588235], + [1.0,0.3019607843137255,0.6980392156862745], + [1.0,0.29803921568627456,0.7019607843137254], + [1.0,0.2941176470588236,0.7058823529411764], + [1.0,0.2901960784313725,0.7098039215686275], + [1.0,0.28627450980392155,0.7137254901960784], + [1.0,0.2823529411764706,0.7176470588235294], + [1.0,0.2784313725490196,0.7215686274509804], + [1.0,0.27450980392156865,0.7254901960784313], + [1.0,0.2705882352941177,0.7294117647058823], + [1.0,0.2666666666666667,0.7333333333333333], + [1.0,0.26274509803921564,0.7372549019607844], + [1.0,0.2588235294117647,0.7411764705882353], + [1.0,0.2549019607843137,0.7450980392156863], + [1.0,0.25098039215686274,0.7490196078431373], + [1.0,0.24705882352941178,0.7529411764705882], + [1.0,0.2431372549019608,0.7568627450980392], + [1.0,0.23921568627450984,0.7607843137254902], + [1.0,0.23529411764705888,0.7647058823529411], + [1.0,0.2313725490196079,0.7686274509803921], + [1.0,0.22745098039215683,0.7725490196078432], + [1.0,0.22352941176470587,0.7764705882352941], + [1.0,0.2196078431372549,0.7803921568627451], + [1.0,0.21568627450980393,0.7843137254901961], + [1.0,0.21176470588235297,0.788235294117647], + [1.0,0.207843137254902,0.792156862745098], + [1.0,0.20392156862745103,0.796078431372549], + [1.0,0.19999999999999996,0.8], + [1.0,0.196078431372549,0.803921568627451], + [1.0,0.19215686274509802,0.807843137254902], + [1.0,0.18823529411764706,0.8117647058823529], + [1.0,0.1843137254901961,0.8156862745098039], + [1.0,0.18039215686274512,0.8196078431372549], + [1.0,0.17647058823529416,0.8235294117647058], + [1.0,0.1725490196078432,0.8274509803921568], + [1.0,0.16862745098039222,0.8313725490196078], + [1.0,0.16470588235294115,0.8352941176470589], + [1.0,0.16078431372549018,0.8392156862745098], + [1.0,0.1568627450980392,0.8431372549019608], + [1.0,0.15294117647058825,0.8470588235294118], + [1.0,0.14901960784313728,0.8509803921568627], + [1.0,0.14509803921568631,0.8549019607843137], + [1.0,0.14117647058823535,0.8588235294117647], + [1.0,0.13725490196078427,0.8627450980392157], + [1.0,0.1333333333333333,0.8666666666666667], + [1.0,0.12941176470588234,0.8705882352941177], + [1.0,0.12549019607843137,0.8745098039215686], + [1.0,0.1215686274509804,0.8784313725490196], + [1.0,0.11764705882352944,0.8823529411764706], + [1.0,0.11372549019607847,0.8862745098039215], + [1.0,0.1098039215686275,0.8901960784313725], + [1.0,0.10588235294117654,0.8941176470588235], + [1.0,0.10196078431372546,0.8980392156862745], + [1.0,0.0980392156862745,0.9019607843137255], + [1.0,0.09411764705882353,0.9058823529411765], + [1.0,0.09019607843137256,0.9098039215686274], + [1.0,0.0862745098039216,0.9137254901960784], + [1.0,0.08235294117647063,0.9176470588235294], + [1.0,0.07843137254901966,0.9215686274509803], + [1.0,0.07450980392156858,0.9254901960784314], + [1.0,0.07058823529411762,0.9294117647058824], + [1.0,0.06666666666666665,0.9333333333333333], + [1.0,0.06274509803921569,0.9372549019607843], + [1.0,0.05882352941176472,0.9411764705882353], + [1.0,0.05490196078431375,0.9450980392156862], + [1.0,0.050980392156862786,0.9490196078431372], + [1.0,0.04705882352941182,0.9529411764705882], + [1.0,0.04313725490196085,0.9568627450980391], + [1.0,0.039215686274509776,0.9607843137254902], + [1.0,0.03529411764705881,0.9647058823529412], + [1.0,0.03137254901960784,0.9686274509803922], + [1.0,0.027450980392156876,0.9725490196078431], + [1.0,0.02352941176470591,0.9764705882352941], + [1.0,0.019607843137254943,0.9803921568627451], + [1.0,0.015686274509803977,0.984313725490196], + [1.0,0.0117647058823529,0.9882352941176471], + [1.0,0.007843137254901933,0.9921568627450981], + [1.0,0.0039215686274509665,0.996078431372549], + [1.0,0.0,1.0] ], + summer: [ + [0.0,0.5,0.4], + [0.00392156862745098,0.5019607843137255,0.4], + [0.00784313725490196,0.503921568627451,0.4], + [0.011764705882352941,0.5058823529411764,0.4], + [0.01568627450980392,0.5078431372549019,0.4], + [0.0196078431372549,0.5098039215686274,0.4], + [0.023529411764705882,0.5117647058823529,0.4], + [0.027450980392156862,0.5137254901960784,0.4], + [0.03137254901960784,0.5156862745098039,0.4], + [0.03529411764705882,0.5176470588235295,0.4], + [0.0392156862745098,0.5196078431372549,0.4], + [0.043137254901960784,0.5215686274509804,0.4], + [0.047058823529411764,0.5235294117647059,0.4], + [0.050980392156862744,0.5254901960784314,0.4], + [0.054901960784313725,0.5274509803921569,0.4], + [0.058823529411764705,0.5294117647058824,0.4], + [0.06274509803921569,0.5313725490196078,0.4], + [0.06666666666666667,0.5333333333333333,0.4], + [0.07058823529411765,0.5352941176470588,0.4], + [0.07450980392156863,0.5372549019607843,0.4], + [0.0784313725490196,0.5392156862745098,0.4], + [0.08235294117647059,0.5411764705882353,0.4], + [0.08627450980392157,0.5431372549019607,0.4], + [0.09019607843137255,0.5450980392156862,0.4], + [0.09411764705882353,0.5470588235294118,0.4], + [0.09803921568627451,0.5490196078431373,0.4], + [0.10196078431372549,0.5509803921568628,0.4], + [0.10588235294117647,0.5529411764705883,0.4], + [0.10980392156862745,0.5549019607843138,0.4], + [0.11372549019607843,0.5568627450980392,0.4], + [0.11764705882352941,0.5588235294117647,0.4], + [0.12156862745098039,0.5607843137254902,0.4], + [0.12549019607843137,0.5627450980392157,0.4], + [0.12941176470588234,0.5647058823529412,0.4], + [0.13333333333333333,0.5666666666666667,0.4], + [0.13725490196078433,0.5686274509803921,0.4], + [0.1411764705882353,0.5705882352941176,0.4], + [0.14509803921568626,0.5725490196078431,0.4], + [0.14901960784313725,0.5745098039215686,0.4], + [0.15294117647058825,0.5764705882352941,0.4], + [0.1568627450980392,0.5784313725490196,0.4], + [0.16078431372549018,0.580392156862745,0.4], + [0.16470588235294117,0.5823529411764706,0.4], + [0.16862745098039217,0.5843137254901961,0.4], + [0.17254901960784313,0.5862745098039216,0.4], + [0.1764705882352941,0.5882352941176471,0.4], + [0.1803921568627451,0.5901960784313726,0.4], + [0.1843137254901961,0.592156862745098,0.4], + [0.18823529411764706,0.5941176470588235,0.4], + [0.19215686274509802,0.596078431372549,0.4], + [0.19607843137254902,0.5980392156862745,0.4], + [0.2,0.6,0.4], + [0.20392156862745098,0.6019607843137255,0.4], + [0.20784313725490194,0.6039215686274509,0.4], + [0.21176470588235294,0.6058823529411764,0.4], + [0.21568627450980393,0.607843137254902,0.4], + [0.2196078431372549,0.6098039215686275,0.4], + [0.22352941176470587,0.611764705882353,0.4], + [0.22745098039215686,0.6137254901960785,0.4], + [0.23137254901960785,0.615686274509804,0.4], + [0.23529411764705882,0.6176470588235294,0.4], + [0.2392156862745098,0.6196078431372549,0.4], + [0.24313725490196078,0.6215686274509804,0.4], + [0.24705882352941178,0.6235294117647059,0.4], + [0.25098039215686274,0.6254901960784314,0.4], + [0.2549019607843137,0.6274509803921569,0.4], + [0.2588235294117647,0.6294117647058823,0.4], + [0.2627450980392157,0.6313725490196078,0.4], + [0.26666666666666666,0.6333333333333333,0.4], + [0.27058823529411763,0.6352941176470588,0.4], + [0.27450980392156865,0.6372549019607843,0.4], + [0.2784313725490196,0.6392156862745098,0.4], + [0.2823529411764706,0.6411764705882352,0.4], + [0.28627450980392155,0.6431372549019607,0.4], + [0.2901960784313725,0.6450980392156862,0.4], + [0.29411764705882354,0.6470588235294118,0.4], + [0.2980392156862745,0.6490196078431373,0.4], + [0.30196078431372547,0.6509803921568628,0.4], + [0.3058823529411765,0.6529411764705882,0.4], + [0.30980392156862746,0.6549019607843137,0.4], + [0.3137254901960784,0.6568627450980392,0.4], + [0.3176470588235294,0.6588235294117647,0.4], + [0.32156862745098036,0.6607843137254902,0.4], + [0.3254901960784314,0.6627450980392157,0.4], + [0.32941176470588235,0.6647058823529411,0.4], + [0.3333333333333333,0.6666666666666666,0.4], + [0.33725490196078434,0.6686274509803922,0.4], + [0.3411764705882353,0.6705882352941177,0.4], + [0.34509803921568627,0.6725490196078432,0.4], + [0.34901960784313724,0.6745098039215687,0.4], + [0.3529411764705882,0.6764705882352942,0.4], + [0.3568627450980392,0.6784313725490196,0.4], + [0.3607843137254902,0.6803921568627451,0.4], + [0.36470588235294116,0.6823529411764706,0.4], + [0.3686274509803922,0.6843137254901961,0.4], + [0.37254901960784315,0.6862745098039216,0.4], + [0.3764705882352941,0.6882352941176471,0.4], + [0.3803921568627451,0.6901960784313725,0.4], + [0.38431372549019605,0.692156862745098,0.4], + [0.38823529411764707,0.6941176470588235,0.4], + [0.39215686274509803,0.696078431372549,0.4], + [0.396078431372549,0.6980392156862745,0.4], + [0.4,0.7,0.4], + [0.403921568627451,0.7019607843137254,0.4], + [0.40784313725490196,0.7039215686274509,0.4], + [0.4117647058823529,0.7058823529411764,0.4], + [0.4156862745098039,0.7078431372549019,0.4], + [0.4196078431372549,0.7098039215686275,0.4], + [0.4235294117647059,0.711764705882353,0.4], + [0.42745098039215684,0.7137254901960784,0.4], + [0.43137254901960786,0.7156862745098039,0.4], + [0.43529411764705883,0.7176470588235294,0.4], + [0.4392156862745098,0.7196078431372549,0.4], + [0.44313725490196076,0.7215686274509804,0.4], + [0.44705882352941173,0.7235294117647059,0.4], + [0.45098039215686275,0.7254901960784313,0.4], + [0.4549019607843137,0.7274509803921568,0.4], + [0.4588235294117647,0.7294117647058823,0.4], + [0.4627450980392157,0.7313725490196079,0.4], + [0.4666666666666667,0.7333333333333334,0.4], + [0.47058823529411764,0.7352941176470589,0.4], + [0.4745098039215686,0.7372549019607844,0.4], + [0.4784313725490196,0.7392156862745098,0.4], + [0.4823529411764706,0.7411764705882353,0.4], + [0.48627450980392156,0.7431372549019608,0.4], + [0.49019607843137253,0.7450980392156863,0.4], + [0.49411764705882355,0.7470588235294118,0.4], + [0.4980392156862745,0.7490196078431373,0.4], + [0.5019607843137255,0.7509803921568627,0.4], + [0.5058823529411764,0.7529411764705882,0.4], + [0.5098039215686274,0.7549019607843137,0.4], + [0.5137254901960784,0.7568627450980392,0.4], + [0.5176470588235293,0.7588235294117647,0.4], + [0.5215686274509804,0.7607843137254902,0.4], + [0.5254901960784314,0.7627450980392156,0.4], + [0.5294117647058824,0.7647058823529411,0.4], + [0.5333333333333333,0.7666666666666666,0.4], + [0.5372549019607843,0.7686274509803921,0.4], + [0.5411764705882353,0.7705882352941176,0.4], + [0.5450980392156862,0.7725490196078431,0.4], + [0.5490196078431373,0.7745098039215687,0.4], + [0.5529411764705883,0.7764705882352941,0.4], + [0.5568627450980392,0.7784313725490196,0.4], + [0.5607843137254902,0.7803921568627451,0.4], + [0.5647058823529412,0.7823529411764706,0.4], + [0.5686274509803921,0.7843137254901961,0.4], + [0.5725490196078431,0.7862745098039216,0.4], + [0.5764705882352941,0.788235294117647,0.4], + [0.580392156862745,0.7901960784313725,0.4], + [0.5843137254901961,0.7921568627450981,0.4], + [0.5882352941176471,0.7941176470588236,0.4], + [0.592156862745098,0.7960784313725491,0.4], + [0.596078431372549,0.7980392156862746,0.4], + [0.6,0.8,0.4], + [0.6039215686274509,0.8019607843137255,0.4], + [0.6078431372549019,0.803921568627451,0.4], + [0.611764705882353,0.8058823529411765,0.4], + [0.615686274509804,0.807843137254902,0.4], + [0.6196078431372549,0.8098039215686275,0.4], + [0.6235294117647059,0.8117647058823529,0.4], + [0.6274509803921569,0.8137254901960784,0.4], + [0.6313725490196078,0.8156862745098039,0.4], + [0.6352941176470588,0.8176470588235294,0.4], + [0.6392156862745098,0.8196078431372549,0.4], + [0.6431372549019607,0.8215686274509804,0.4], + [0.6470588235294118,0.8235294117647058,0.4], + [0.6509803921568628,0.8254901960784313,0.4], + [0.6549019607843137,0.8274509803921568,0.4], + [0.6588235294117647,0.8294117647058823,0.4], + [0.6627450980392157,0.8313725490196078,0.4], + [0.6666666666666666,0.8333333333333333,0.4], + [0.6705882352941176,0.8352941176470587,0.4], + [0.6745098039215687,0.8372549019607843,0.4], + [0.6784313725490196,0.8392156862745098,0.4], + [0.6823529411764706,0.8411764705882353,0.4], + [0.6862745098039216,0.8431372549019608,0.4], + [0.6901960784313725,0.8450980392156863,0.4], + [0.6941176470588235,0.8470588235294118,0.4], + [0.6980392156862745,0.8490196078431372,0.4], + [0.7019607843137254,0.8509803921568627,0.4], + [0.7058823529411764,0.8529411764705882,0.4], + [0.7098039215686275,0.8549019607843138,0.4], + [0.7137254901960784,0.8568627450980393,0.4], + [0.7176470588235294,0.8588235294117648,0.4], + [0.7215686274509804,0.8607843137254902,0.4], + [0.7254901960784313,0.8627450980392157,0.4], + [0.7294117647058823,0.8647058823529412,0.4], + [0.7333333333333333,0.8666666666666667,0.4], + [0.7372549019607844,0.8686274509803922,0.4], + [0.7411764705882353,0.8705882352941177,0.4], + [0.7450980392156863,0.8725490196078431,0.4], + [0.7490196078431373,0.8745098039215686,0.4], + [0.7529411764705882,0.8764705882352941,0.4], + [0.7568627450980392,0.8784313725490196,0.4], + [0.7607843137254902,0.8803921568627451,0.4], + [0.7647058823529411,0.8823529411764706,0.4], + [0.7686274509803921,0.884313725490196,0.4], + [0.7725490196078432,0.8862745098039215,0.4], + [0.7764705882352941,0.888235294117647,0.4], + [0.7803921568627451,0.8901960784313725,0.4], + [0.7843137254901961,0.892156862745098,0.4], + [0.788235294117647,0.8941176470588235,0.4], + [0.792156862745098,0.896078431372549,0.4], + [0.796078431372549,0.8980392156862744,0.4], + [0.8,0.9,0.4], + [0.803921568627451,0.9019607843137255,0.4], + [0.807843137254902,0.903921568627451,0.4], + [0.8117647058823529,0.9058823529411765,0.4], + [0.8156862745098039,0.907843137254902,0.4], + [0.8196078431372549,0.9098039215686274,0.4], + [0.8235294117647058,0.9117647058823529,0.4], + [0.8274509803921568,0.9137254901960784,0.4], + [0.8313725490196078,0.9156862745098039,0.4], + [0.8352941176470589,0.9176470588235295,0.4], + [0.8392156862745098,0.919607843137255,0.4], + [0.8431372549019608,0.9215686274509804,0.4], + [0.8470588235294118,0.9235294117647059,0.4], + [0.8509803921568627,0.9254901960784314,0.4], + [0.8549019607843137,0.9274509803921569,0.4], + [0.8588235294117647,0.9294117647058824,0.4], + [0.8627450980392157,0.9313725490196079,0.4], + [0.8666666666666667,0.9333333333333333,0.4], + [0.8705882352941177,0.9352941176470588,0.4], + [0.8745098039215686,0.9372549019607843,0.4], + [0.8784313725490196,0.9392156862745098,0.4], + [0.8823529411764706,0.9411764705882353,0.4], + [0.8862745098039215,0.9431372549019608,0.4], + [0.8901960784313725,0.9450980392156862,0.4], + [0.8941176470588235,0.9470588235294117,0.4], + [0.8980392156862745,0.9490196078431372,0.4], + [0.9019607843137255,0.9509803921568627,0.4], + [0.9058823529411765,0.9529411764705882,0.4], + [0.9098039215686274,0.9549019607843137,0.4], + [0.9137254901960784,0.9568627450980391,0.4], + [0.9176470588235294,0.9588235294117646,0.4], + [0.9215686274509803,0.9607843137254901,0.4], + [0.9254901960784314,0.9627450980392157,0.4], + [0.9294117647058824,0.9647058823529412,0.4], + [0.9333333333333333,0.9666666666666667,0.4], + [0.9372549019607843,0.9686274509803922,0.4], + [0.9411764705882353,0.9705882352941176,0.4], + [0.9450980392156862,0.9725490196078431,0.4], + [0.9490196078431372,0.9745098039215686,0.4], + [0.9529411764705882,0.9764705882352941,0.4], + [0.9568627450980391,0.9784313725490196,0.4], + [0.9607843137254902,0.9803921568627452,0.4], + [0.9647058823529412,0.9823529411764707,0.4], + [0.9686274509803922,0.9843137254901961,0.4], + [0.9725490196078431,0.9862745098039216,0.4], + [0.9764705882352941,0.9882352941176471,0.4], + [0.9803921568627451,0.9901960784313726,0.4], + [0.984313725490196,0.9921568627450981,0.4], + [0.9882352941176471,0.9941176470588236,0.4], + [0.9921568627450981,0.996078431372549,0.4], + [0.996078431372549,0.9980392156862745,0.4], + [1.0,1.0,0.4] ], + summer_r: [ + [1.0,1.0,0.4], + [0.996078431372549,0.9980392156862745,0.4], + [0.9921568627450981,0.996078431372549,0.4], + [0.9882352941176471,0.9941176470588236,0.4], + [0.9843137254901961,0.9921568627450981,0.4], + [0.9803921568627451,0.9901960784313726,0.4], + [0.9764705882352941,0.9882352941176471,0.4], + [0.9725490196078431,0.9862745098039216,0.4], + [0.9686274509803922,0.9843137254901961,0.4], + [0.9647058823529412,0.9823529411764705,0.4], + [0.9607843137254902,0.9803921568627451,0.4], + [0.9568627450980393,0.9784313725490196,0.4], + [0.9529411764705882,0.9764705882352941,0.4], + [0.9490196078431372,0.9745098039215686,0.4], + [0.9450980392156862,0.9725490196078431,0.4], + [0.9411764705882353,0.9705882352941176,0.4], + [0.9372549019607843,0.9686274509803922,0.4], + [0.9333333333333333,0.9666666666666667,0.4], + [0.9294117647058824,0.9647058823529412,0.4], + [0.9254901960784314,0.9627450980392157,0.4], + [0.9215686274509804,0.9607843137254902,0.4], + [0.9176470588235294,0.9588235294117647,0.4], + [0.9137254901960784,0.9568627450980393,0.4], + [0.9098039215686274,0.9549019607843138,0.4], + [0.9058823529411765,0.9529411764705882,0.4], + [0.9019607843137255,0.9509803921568627,0.4], + [0.8980392156862745,0.9490196078431372,0.4], + [0.8941176470588236,0.9470588235294117,0.4], + [0.8901960784313725,0.9450980392156862,0.4], + [0.8862745098039215,0.9431372549019608,0.4], + [0.8823529411764706,0.9411764705882353,0.4], + [0.8784313725490196,0.9392156862745098,0.4], + [0.8745098039215686,0.9372549019607843,0.4], + [0.8705882352941177,0.9352941176470588,0.4], + [0.8666666666666667,0.9333333333333333,0.4], + [0.8627450980392157,0.9313725490196079,0.4], + [0.8588235294117648,0.9294117647058824,0.4], + [0.8549019607843138,0.9274509803921569,0.4], + [0.8509803921568627,0.9254901960784314,0.4], + [0.8470588235294118,0.9235294117647059,0.4], + [0.8431372549019608,0.9215686274509804,0.4], + [0.8392156862745098,0.919607843137255,0.4], + [0.8352941176470589,0.9176470588235294,0.4], + [0.8313725490196078,0.9156862745098039,0.4], + [0.8274509803921568,0.9137254901960784,0.4], + [0.8235294117647058,0.9117647058823529,0.4], + [0.8196078431372549,0.9098039215686274,0.4], + [0.8156862745098039,0.907843137254902,0.4], + [0.8117647058823529,0.9058823529411765,0.4], + [0.807843137254902,0.903921568627451,0.4], + [0.803921568627451,0.9019607843137255,0.4], + [0.8,0.9,0.4], + [0.7960784313725491,0.8980392156862745,0.4], + [0.7921568627450981,0.8960784313725491,0.4], + [0.788235294117647,0.8941176470588236,0.4], + [0.7843137254901961,0.892156862745098,0.4], + [0.7803921568627451,0.8901960784313725,0.4], + [0.7764705882352941,0.888235294117647,0.4], + [0.7725490196078432,0.8862745098039215,0.4], + [0.7686274509803921,0.884313725490196,0.4], + [0.7647058823529411,0.8823529411764706,0.4], + [0.7607843137254902,0.8803921568627451,0.4], + [0.7568627450980392,0.8784313725490196,0.4], + [0.7529411764705882,0.8764705882352941,0.4], + [0.7490196078431373,0.8745098039215686,0.4], + [0.7450980392156863,0.8725490196078431,0.4], + [0.7411764705882353,0.8705882352941177,0.4], + [0.7372549019607844,0.8686274509803922,0.4], + [0.7333333333333334,0.8666666666666667,0.4], + [0.7294117647058824,0.8647058823529412,0.4], + [0.7254901960784313,0.8627450980392157,0.4], + [0.7215686274509804,0.8607843137254902,0.4], + [0.7176470588235294,0.8588235294117648,0.4], + [0.7137254901960784,0.8568627450980393,0.4], + [0.7098039215686275,0.8549019607843138,0.4], + [0.7058823529411764,0.8529411764705882,0.4], + [0.7019607843137254,0.8509803921568627,0.4], + [0.6980392156862745,0.8490196078431372,0.4], + [0.6941176470588235,0.8470588235294118,0.4], + [0.6901960784313725,0.8450980392156863,0.4], + [0.6862745098039216,0.8431372549019608,0.4], + [0.6823529411764706,0.8411764705882353,0.4], + [0.6784313725490196,0.8392156862745098,0.4], + [0.6745098039215687,0.8372549019607843,0.4], + [0.6705882352941177,0.8352941176470589,0.4], + [0.6666666666666667,0.8333333333333334,0.4], + [0.6627450980392157,0.8313725490196078,0.4], + [0.6588235294117647,0.8294117647058823,0.4], + [0.6549019607843137,0.8274509803921568,0.4], + [0.6509803921568628,0.8254901960784313,0.4], + [0.6470588235294118,0.8235294117647058,0.4], + [0.6431372549019607,0.8215686274509804,0.4], + [0.6392156862745098,0.8196078431372549,0.4], + [0.6352941176470588,0.8176470588235294,0.4], + [0.6313725490196078,0.8156862745098039,0.4], + [0.6274509803921569,0.8137254901960784,0.4], + [0.6235294117647059,0.8117647058823529,0.4], + [0.6196078431372549,0.8098039215686275,0.4], + [0.615686274509804,0.807843137254902,0.4], + [0.611764705882353,0.8058823529411765,0.4], + [0.607843137254902,0.803921568627451,0.4], + [0.603921568627451,0.8019607843137255,0.4], + [0.6,0.8,0.4], + [0.596078431372549,0.7980392156862746,0.4], + [0.592156862745098,0.7960784313725491,0.4], + [0.5882352941176471,0.7941176470588236,0.4], + [0.5843137254901961,0.7921568627450981,0.4], + [0.580392156862745,0.7901960784313725,0.4], + [0.5764705882352941,0.788235294117647,0.4], + [0.5725490196078431,0.7862745098039216,0.4], + [0.5686274509803921,0.7843137254901961,0.4], + [0.5647058823529412,0.7823529411764706,0.4], + [0.5607843137254902,0.7803921568627451,0.4], + [0.5568627450980392,0.7784313725490196,0.4], + [0.5529411764705883,0.7764705882352941,0.4], + [0.5490196078431373,0.7745098039215687,0.4], + [0.5450980392156863,0.7725490196078432,0.4], + [0.5411764705882354,0.7705882352941177,0.4], + [0.5372549019607843,0.7686274509803921,0.4], + [0.5333333333333333,0.7666666666666666,0.4], + [0.5294117647058824,0.7647058823529411,0.4], + [0.5254901960784314,0.7627450980392156,0.4], + [0.5215686274509804,0.7607843137254902,0.4], + [0.5176470588235293,0.7588235294117647,0.4], + [0.5137254901960784,0.7568627450980392,0.4], + [0.5098039215686274,0.7549019607843137,0.4], + [0.5058823529411764,0.7529411764705882,0.4], + [0.5019607843137255,0.7509803921568627,0.4], + [0.4980392156862745,0.7490196078431373,0.4], + [0.49411764705882355,0.7470588235294118,0.4], + [0.4901960784313726,0.7450980392156863,0.4], + [0.4862745098039216,0.7431372549019608,0.4], + [0.48235294117647065,0.7411764705882353,0.4], + [0.4784313725490196,0.7392156862745098,0.4], + [0.4745098039215686,0.7372549019607844,0.4], + [0.47058823529411764,0.7352941176470589,0.4], + [0.4666666666666667,0.7333333333333334,0.4], + [0.4627450980392157,0.7313725490196079,0.4], + [0.45882352941176474,0.7294117647058824,0.4], + [0.4549019607843138,0.7274509803921569,0.4], + [0.4509803921568627,0.7254901960784313,0.4], + [0.44705882352941173,0.7235294117647059,0.4], + [0.44313725490196076,0.7215686274509804,0.4], + [0.4392156862745098,0.7196078431372549,0.4], + [0.43529411764705883,0.7176470588235294,0.4], + [0.43137254901960786,0.7156862745098039,0.4], + [0.4274509803921569,0.7137254901960784,0.4], + [0.42352941176470593,0.711764705882353,0.4], + [0.41960784313725497,0.7098039215686275,0.4], + [0.4156862745098039,0.7078431372549019,0.4], + [0.4117647058823529,0.7058823529411764,0.4], + [0.40784313725490196,0.7039215686274509,0.4], + [0.403921568627451,0.7019607843137254,0.4], + [0.4,0.7,0.4], + [0.39607843137254906,0.6980392156862745,0.4], + [0.3921568627450981,0.696078431372549,0.4], + [0.388235294117647,0.6941176470588235,0.4], + [0.38431372549019605,0.692156862745098,0.4], + [0.3803921568627451,0.6901960784313725,0.4], + [0.3764705882352941,0.6882352941176471,0.4], + [0.37254901960784315,0.6862745098039216,0.4], + [0.3686274509803922,0.6843137254901961,0.4], + [0.3647058823529412,0.6823529411764706,0.4], + [0.36078431372549025,0.6803921568627451,0.4], + [0.3568627450980393,0.6784313725490196,0.4], + [0.3529411764705882,0.6764705882352942,0.4], + [0.34901960784313724,0.6745098039215687,0.4], + [0.34509803921568627,0.6725490196078432,0.4], + [0.3411764705882353,0.6705882352941177,0.4], + [0.33725490196078434,0.6686274509803922,0.4], + [0.33333333333333337,0.6666666666666667,0.4], + [0.3294117647058824,0.6647058823529413,0.4], + [0.3254901960784313,0.6627450980392157,0.4], + [0.32156862745098036,0.6607843137254902,0.4], + [0.3176470588235294,0.6588235294117647,0.4], + [0.3137254901960784,0.6568627450980392,0.4], + [0.30980392156862746,0.6549019607843137,0.4], + [0.3058823529411765,0.6529411764705882,0.4], + [0.3019607843137255,0.6509803921568628,0.4], + [0.29803921568627456,0.6490196078431373,0.4], + [0.2941176470588236,0.6470588235294118,0.4], + [0.2901960784313725,0.6450980392156862,0.4], + [0.28627450980392155,0.6431372549019607,0.4], + [0.2823529411764706,0.6411764705882352,0.4], + [0.2784313725490196,0.6392156862745098,0.4], + [0.27450980392156865,0.6372549019607843,0.4], + [0.2705882352941177,0.6352941176470588,0.4], + [0.2666666666666667,0.6333333333333333,0.4], + [0.26274509803921564,0.6313725490196078,0.4], + [0.2588235294117647,0.6294117647058823,0.4], + [0.2549019607843137,0.6274509803921569,0.4], + [0.25098039215686274,0.6254901960784314,0.4], + [0.24705882352941178,0.6235294117647059,0.4], + [0.2431372549019608,0.6215686274509804,0.4], + [0.23921568627450984,0.6196078431372549,0.4], + [0.23529411764705888,0.6176470588235294,0.4], + [0.2313725490196079,0.615686274509804,0.4], + [0.22745098039215683,0.6137254901960785,0.4], + [0.22352941176470587,0.611764705882353,0.4], + [0.2196078431372549,0.6098039215686275,0.4], + [0.21568627450980393,0.607843137254902,0.4], + [0.21176470588235297,0.6058823529411765,0.4], + [0.207843137254902,0.603921568627451,0.4], + [0.20392156862745103,0.6019607843137256,0.4], + [0.19999999999999996,0.6,0.4], + [0.196078431372549,0.5980392156862745,0.4], + [0.19215686274509802,0.596078431372549,0.4], + [0.18823529411764706,0.5941176470588235,0.4], + [0.1843137254901961,0.592156862745098,0.4], + [0.18039215686274512,0.5901960784313726,0.4], + [0.17647058823529416,0.5882352941176471,0.4], + [0.1725490196078432,0.5862745098039216,0.4], + [0.16862745098039222,0.5843137254901961,0.4], + [0.16470588235294115,0.5823529411764705,0.4], + [0.16078431372549018,0.580392156862745,0.4], + [0.1568627450980392,0.5784313725490196,0.4], + [0.15294117647058825,0.5764705882352941,0.4], + [0.14901960784313728,0.5745098039215686,0.4], + [0.14509803921568631,0.5725490196078431,0.4], + [0.14117647058823535,0.5705882352941176,0.4], + [0.13725490196078427,0.5686274509803921,0.4], + [0.1333333333333333,0.5666666666666667,0.4], + [0.12941176470588234,0.5647058823529412,0.4], + [0.12549019607843137,0.5627450980392157,0.4], + [0.1215686274509804,0.5607843137254902,0.4], + [0.11764705882352944,0.5588235294117647,0.4], + [0.11372549019607847,0.5568627450980392,0.4], + [0.1098039215686275,0.5549019607843138,0.4], + [0.10588235294117654,0.5529411764705883,0.4], + [0.10196078431372546,0.5509803921568628,0.4], + [0.0980392156862745,0.5490196078431373,0.4], + [0.09411764705882353,0.5470588235294118,0.4], + [0.09019607843137256,0.5450980392156863,0.4], + [0.0862745098039216,0.5431372549019609,0.4], + [0.08235294117647063,0.5411764705882354,0.4], + [0.07843137254901966,0.5392156862745099,0.4], + [0.07450980392156858,0.5372549019607843,0.4], + [0.07058823529411762,0.5352941176470588,0.4], + [0.06666666666666665,0.5333333333333333,0.4], + [0.06274509803921569,0.5313725490196078,0.4], + [0.05882352941176472,0.5294117647058824,0.4], + [0.05490196078431375,0.5274509803921569,0.4], + [0.050980392156862786,0.5254901960784314,0.4], + [0.04705882352941182,0.5235294117647059,0.4], + [0.04313725490196085,0.5215686274509804,0.4], + [0.039215686274509776,0.5196078431372548,0.4], + [0.03529411764705881,0.5176470588235293,0.4], + [0.03137254901960784,0.5156862745098039,0.4], + [0.027450980392156876,0.5137254901960784,0.4], + [0.02352941176470591,0.5117647058823529,0.4], + [0.019607843137254943,0.5098039215686274,0.4], + [0.015686274509803977,0.5078431372549019,0.4], + [0.0117647058823529,0.5058823529411764,0.4], + [0.007843137254901933,0.503921568627451,0.4], + [0.0039215686274509665,0.5019607843137255,0.4], + [0.0,0.5,0.4] ], + tab10: [ + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529] ], + tab10_r: [ + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765] ], + tab20: [ + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.6823529411764706,0.7803921568627451,0.9098039215686274], + [0.6823529411764706,0.7803921568627451,0.9098039215686274], + [0.6823529411764706,0.7803921568627451,0.9098039215686274], + [0.6823529411764706,0.7803921568627451,0.9098039215686274], + [0.6823529411764706,0.7803921568627451,0.9098039215686274], + [0.6823529411764706,0.7803921568627451,0.9098039215686274], + [0.6823529411764706,0.7803921568627451,0.9098039215686274], + [0.6823529411764706,0.7803921568627451,0.9098039215686274], + [0.6823529411764706,0.7803921568627451,0.9098039215686274], + [0.6823529411764706,0.7803921568627451,0.9098039215686274], + [0.6823529411764706,0.7803921568627451,0.9098039215686274], + [0.6823529411764706,0.7803921568627451,0.9098039215686274], + [0.6823529411764706,0.7803921568627451,0.9098039215686274], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.7333333333333333,0.47058823529411764], + [1.0,0.7333333333333333,0.47058823529411764], + [1.0,0.7333333333333333,0.47058823529411764], + [1.0,0.7333333333333333,0.47058823529411764], + [1.0,0.7333333333333333,0.47058823529411764], + [1.0,0.7333333333333333,0.47058823529411764], + [1.0,0.7333333333333333,0.47058823529411764], + [1.0,0.7333333333333333,0.47058823529411764], + [1.0,0.7333333333333333,0.47058823529411764], + [1.0,0.7333333333333333,0.47058823529411764], + [1.0,0.7333333333333333,0.47058823529411764], + [1.0,0.7333333333333333,0.47058823529411764], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.596078431372549,0.8745098039215686,0.5411764705882353], + [0.596078431372549,0.8745098039215686,0.5411764705882353], + [0.596078431372549,0.8745098039215686,0.5411764705882353], + [0.596078431372549,0.8745098039215686,0.5411764705882353], + [0.596078431372549,0.8745098039215686,0.5411764705882353], + [0.596078431372549,0.8745098039215686,0.5411764705882353], + [0.596078431372549,0.8745098039215686,0.5411764705882353], + [0.596078431372549,0.8745098039215686,0.5411764705882353], + [0.596078431372549,0.8745098039215686,0.5411764705882353], + [0.596078431372549,0.8745098039215686,0.5411764705882353], + [0.596078431372549,0.8745098039215686,0.5411764705882353], + [0.596078431372549,0.8745098039215686,0.5411764705882353], + [0.596078431372549,0.8745098039215686,0.5411764705882353], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [1.0,0.596078431372549,0.5882352941176471], + [1.0,0.596078431372549,0.5882352941176471], + [1.0,0.596078431372549,0.5882352941176471], + [1.0,0.596078431372549,0.5882352941176471], + [1.0,0.596078431372549,0.5882352941176471], + [1.0,0.596078431372549,0.5882352941176471], + [1.0,0.596078431372549,0.5882352941176471], + [1.0,0.596078431372549,0.5882352941176471], + [1.0,0.596078431372549,0.5882352941176471], + [1.0,0.596078431372549,0.5882352941176471], + [1.0,0.596078431372549,0.5882352941176471], + [1.0,0.596078431372549,0.5882352941176471], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.7725490196078432,0.6901960784313725,0.8352941176470589], + [0.7725490196078432,0.6901960784313725,0.8352941176470589], + [0.7725490196078432,0.6901960784313725,0.8352941176470589], + [0.7725490196078432,0.6901960784313725,0.8352941176470589], + [0.7725490196078432,0.6901960784313725,0.8352941176470589], + [0.7725490196078432,0.6901960784313725,0.8352941176470589], + [0.7725490196078432,0.6901960784313725,0.8352941176470589], + [0.7725490196078432,0.6901960784313725,0.8352941176470589], + [0.7725490196078432,0.6901960784313725,0.8352941176470589], + [0.7725490196078432,0.6901960784313725,0.8352941176470589], + [0.7725490196078432,0.6901960784313725,0.8352941176470589], + [0.7725490196078432,0.6901960784313725,0.8352941176470589], + [0.7725490196078432,0.6901960784313725,0.8352941176470589], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.7686274509803922,0.611764705882353,0.5803921568627451], + [0.7686274509803922,0.611764705882353,0.5803921568627451], + [0.7686274509803922,0.611764705882353,0.5803921568627451], + [0.7686274509803922,0.611764705882353,0.5803921568627451], + [0.7686274509803922,0.611764705882353,0.5803921568627451], + [0.7686274509803922,0.611764705882353,0.5803921568627451], + [0.7686274509803922,0.611764705882353,0.5803921568627451], + [0.7686274509803922,0.611764705882353,0.5803921568627451], + [0.7686274509803922,0.611764705882353,0.5803921568627451], + [0.7686274509803922,0.611764705882353,0.5803921568627451], + [0.7686274509803922,0.611764705882353,0.5803921568627451], + [0.7686274509803922,0.611764705882353,0.5803921568627451], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.9686274509803922,0.7137254901960784,0.8235294117647058], + [0.9686274509803922,0.7137254901960784,0.8235294117647058], + [0.9686274509803922,0.7137254901960784,0.8235294117647058], + [0.9686274509803922,0.7137254901960784,0.8235294117647058], + [0.9686274509803922,0.7137254901960784,0.8235294117647058], + [0.9686274509803922,0.7137254901960784,0.8235294117647058], + [0.9686274509803922,0.7137254901960784,0.8235294117647058], + [0.9686274509803922,0.7137254901960784,0.8235294117647058], + [0.9686274509803922,0.7137254901960784,0.8235294117647058], + [0.9686274509803922,0.7137254901960784,0.8235294117647058], + [0.9686274509803922,0.7137254901960784,0.8235294117647058], + [0.9686274509803922,0.7137254901960784,0.8235294117647058], + [0.9686274509803922,0.7137254901960784,0.8235294117647058], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.8588235294117647,0.8588235294117647,0.5529411764705883], + [0.8588235294117647,0.8588235294117647,0.5529411764705883], + [0.8588235294117647,0.8588235294117647,0.5529411764705883], + [0.8588235294117647,0.8588235294117647,0.5529411764705883], + [0.8588235294117647,0.8588235294117647,0.5529411764705883], + [0.8588235294117647,0.8588235294117647,0.5529411764705883], + [0.8588235294117647,0.8588235294117647,0.5529411764705883], + [0.8588235294117647,0.8588235294117647,0.5529411764705883], + [0.8588235294117647,0.8588235294117647,0.5529411764705883], + [0.8588235294117647,0.8588235294117647,0.5529411764705883], + [0.8588235294117647,0.8588235294117647,0.5529411764705883], + [0.8588235294117647,0.8588235294117647,0.5529411764705883], + [0.8588235294117647,0.8588235294117647,0.5529411764705883], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.6196078431372549,0.8549019607843137,0.8980392156862745], + [0.6196078431372549,0.8549019607843137,0.8980392156862745], + [0.6196078431372549,0.8549019607843137,0.8980392156862745], + [0.6196078431372549,0.8549019607843137,0.8980392156862745], + [0.6196078431372549,0.8549019607843137,0.8980392156862745], + [0.6196078431372549,0.8549019607843137,0.8980392156862745], + [0.6196078431372549,0.8549019607843137,0.8980392156862745], + [0.6196078431372549,0.8549019607843137,0.8980392156862745], + [0.6196078431372549,0.8549019607843137,0.8980392156862745], + [0.6196078431372549,0.8549019607843137,0.8980392156862745], + [0.6196078431372549,0.8549019607843137,0.8980392156862745], + [0.6196078431372549,0.8549019607843137,0.8980392156862745], + [0.6196078431372549,0.8549019607843137,0.8980392156862745] ], + tab20_r: [ + [0.6196078431372549,0.8549019607843137,0.8980392156862745], + [0.6196078431372549,0.8549019607843137,0.8980392156862745], + [0.6196078431372549,0.8549019607843137,0.8980392156862745], + [0.6196078431372549,0.8549019607843137,0.8980392156862745], + [0.6196078431372549,0.8549019607843137,0.8980392156862745], + [0.6196078431372549,0.8549019607843137,0.8980392156862745], + [0.6196078431372549,0.8549019607843137,0.8980392156862745], + [0.6196078431372549,0.8549019607843137,0.8980392156862745], + [0.6196078431372549,0.8549019607843137,0.8980392156862745], + [0.6196078431372549,0.8549019607843137,0.8980392156862745], + [0.6196078431372549,0.8549019607843137,0.8980392156862745], + [0.6196078431372549,0.8549019607843137,0.8980392156862745], + [0.6196078431372549,0.8549019607843137,0.8980392156862745], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.09019607843137255,0.7450980392156863,0.8117647058823529], + [0.8588235294117647,0.8588235294117647,0.5529411764705883], + [0.8588235294117647,0.8588235294117647,0.5529411764705883], + [0.8588235294117647,0.8588235294117647,0.5529411764705883], + [0.8588235294117647,0.8588235294117647,0.5529411764705883], + [0.8588235294117647,0.8588235294117647,0.5529411764705883], + [0.8588235294117647,0.8588235294117647,0.5529411764705883], + [0.8588235294117647,0.8588235294117647,0.5529411764705883], + [0.8588235294117647,0.8588235294117647,0.5529411764705883], + [0.8588235294117647,0.8588235294117647,0.5529411764705883], + [0.8588235294117647,0.8588235294117647,0.5529411764705883], + [0.8588235294117647,0.8588235294117647,0.5529411764705883], + [0.8588235294117647,0.8588235294117647,0.5529411764705883], + [0.8588235294117647,0.8588235294117647,0.5529411764705883], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7372549019607844,0.7411764705882353,0.13333333333333333], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.7803921568627451,0.7803921568627451,0.7803921568627451], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.4980392156862745,0.4980392156862745,0.4980392156862745], + [0.9686274509803922,0.7137254901960784,0.8235294117647058], + [0.9686274509803922,0.7137254901960784,0.8235294117647058], + [0.9686274509803922,0.7137254901960784,0.8235294117647058], + [0.9686274509803922,0.7137254901960784,0.8235294117647058], + [0.9686274509803922,0.7137254901960784,0.8235294117647058], + [0.9686274509803922,0.7137254901960784,0.8235294117647058], + [0.9686274509803922,0.7137254901960784,0.8235294117647058], + [0.9686274509803922,0.7137254901960784,0.8235294117647058], + [0.9686274509803922,0.7137254901960784,0.8235294117647058], + [0.9686274509803922,0.7137254901960784,0.8235294117647058], + [0.9686274509803922,0.7137254901960784,0.8235294117647058], + [0.9686274509803922,0.7137254901960784,0.8235294117647058], + [0.9686274509803922,0.7137254901960784,0.8235294117647058], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.8901960784313725,0.4666666666666667,0.7607843137254902], + [0.7686274509803922,0.611764705882353,0.5803921568627451], + [0.7686274509803922,0.611764705882353,0.5803921568627451], + [0.7686274509803922,0.611764705882353,0.5803921568627451], + [0.7686274509803922,0.611764705882353,0.5803921568627451], + [0.7686274509803922,0.611764705882353,0.5803921568627451], + [0.7686274509803922,0.611764705882353,0.5803921568627451], + [0.7686274509803922,0.611764705882353,0.5803921568627451], + [0.7686274509803922,0.611764705882353,0.5803921568627451], + [0.7686274509803922,0.611764705882353,0.5803921568627451], + [0.7686274509803922,0.611764705882353,0.5803921568627451], + [0.7686274509803922,0.611764705882353,0.5803921568627451], + [0.7686274509803922,0.611764705882353,0.5803921568627451], + [0.7686274509803922,0.611764705882353,0.5803921568627451], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.5490196078431373,0.33725490196078434,0.29411764705882354], + [0.7725490196078432,0.6901960784313725,0.8352941176470589], + [0.7725490196078432,0.6901960784313725,0.8352941176470589], + [0.7725490196078432,0.6901960784313725,0.8352941176470589], + [0.7725490196078432,0.6901960784313725,0.8352941176470589], + [0.7725490196078432,0.6901960784313725,0.8352941176470589], + [0.7725490196078432,0.6901960784313725,0.8352941176470589], + [0.7725490196078432,0.6901960784313725,0.8352941176470589], + [0.7725490196078432,0.6901960784313725,0.8352941176470589], + [0.7725490196078432,0.6901960784313725,0.8352941176470589], + [0.7725490196078432,0.6901960784313725,0.8352941176470589], + [0.7725490196078432,0.6901960784313725,0.8352941176470589], + [0.7725490196078432,0.6901960784313725,0.8352941176470589], + [0.7725490196078432,0.6901960784313725,0.8352941176470589], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [0.5803921568627451,0.403921568627451,0.7411764705882353], + [1.0,0.596078431372549,0.5882352941176471], + [1.0,0.596078431372549,0.5882352941176471], + [1.0,0.596078431372549,0.5882352941176471], + [1.0,0.596078431372549,0.5882352941176471], + [1.0,0.596078431372549,0.5882352941176471], + [1.0,0.596078431372549,0.5882352941176471], + [1.0,0.596078431372549,0.5882352941176471], + [1.0,0.596078431372549,0.5882352941176471], + [1.0,0.596078431372549,0.5882352941176471], + [1.0,0.596078431372549,0.5882352941176471], + [1.0,0.596078431372549,0.5882352941176471], + [1.0,0.596078431372549,0.5882352941176471], + [1.0,0.596078431372549,0.5882352941176471], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.8392156862745098,0.15294117647058825,0.1568627450980392], + [0.596078431372549,0.8745098039215686,0.5411764705882353], + [0.596078431372549,0.8745098039215686,0.5411764705882353], + [0.596078431372549,0.8745098039215686,0.5411764705882353], + [0.596078431372549,0.8745098039215686,0.5411764705882353], + [0.596078431372549,0.8745098039215686,0.5411764705882353], + [0.596078431372549,0.8745098039215686,0.5411764705882353], + [0.596078431372549,0.8745098039215686,0.5411764705882353], + [0.596078431372549,0.8745098039215686,0.5411764705882353], + [0.596078431372549,0.8745098039215686,0.5411764705882353], + [0.596078431372549,0.8745098039215686,0.5411764705882353], + [0.596078431372549,0.8745098039215686,0.5411764705882353], + [0.596078431372549,0.8745098039215686,0.5411764705882353], + [0.596078431372549,0.8745098039215686,0.5411764705882353], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [0.17254901960784313,0.6274509803921569,0.17254901960784313], + [1.0,0.7333333333333333,0.47058823529411764], + [1.0,0.7333333333333333,0.47058823529411764], + [1.0,0.7333333333333333,0.47058823529411764], + [1.0,0.7333333333333333,0.47058823529411764], + [1.0,0.7333333333333333,0.47058823529411764], + [1.0,0.7333333333333333,0.47058823529411764], + [1.0,0.7333333333333333,0.47058823529411764], + [1.0,0.7333333333333333,0.47058823529411764], + [1.0,0.7333333333333333,0.47058823529411764], + [1.0,0.7333333333333333,0.47058823529411764], + [1.0,0.7333333333333333,0.47058823529411764], + [1.0,0.7333333333333333,0.47058823529411764], + [1.0,0.7333333333333333,0.47058823529411764], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [1.0,0.4980392156862745,0.054901960784313725], + [0.6823529411764706,0.7803921568627451,0.9098039215686274], + [0.6823529411764706,0.7803921568627451,0.9098039215686274], + [0.6823529411764706,0.7803921568627451,0.9098039215686274], + [0.6823529411764706,0.7803921568627451,0.9098039215686274], + [0.6823529411764706,0.7803921568627451,0.9098039215686274], + [0.6823529411764706,0.7803921568627451,0.9098039215686274], + [0.6823529411764706,0.7803921568627451,0.9098039215686274], + [0.6823529411764706,0.7803921568627451,0.9098039215686274], + [0.6823529411764706,0.7803921568627451,0.9098039215686274], + [0.6823529411764706,0.7803921568627451,0.9098039215686274], + [0.6823529411764706,0.7803921568627451,0.9098039215686274], + [0.6823529411764706,0.7803921568627451,0.9098039215686274], + [0.6823529411764706,0.7803921568627451,0.9098039215686274], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765], + [0.12156862745098039,0.4666666666666667,0.7058823529411765] ], + tab20b: [ + [0.2235294117647059,0.23137254901960785,0.4745098039215686], + [0.2235294117647059,0.23137254901960785,0.4745098039215686], + [0.2235294117647059,0.23137254901960785,0.4745098039215686], + [0.2235294117647059,0.23137254901960785,0.4745098039215686], + [0.2235294117647059,0.23137254901960785,0.4745098039215686], + [0.2235294117647059,0.23137254901960785,0.4745098039215686], + [0.2235294117647059,0.23137254901960785,0.4745098039215686], + [0.2235294117647059,0.23137254901960785,0.4745098039215686], + [0.2235294117647059,0.23137254901960785,0.4745098039215686], + [0.2235294117647059,0.23137254901960785,0.4745098039215686], + [0.2235294117647059,0.23137254901960785,0.4745098039215686], + [0.2235294117647059,0.23137254901960785,0.4745098039215686], + [0.2235294117647059,0.23137254901960785,0.4745098039215686], + [0.3215686274509804,0.32941176470588235,0.6392156862745098], + [0.3215686274509804,0.32941176470588235,0.6392156862745098], + [0.3215686274509804,0.32941176470588235,0.6392156862745098], + [0.3215686274509804,0.32941176470588235,0.6392156862745098], + [0.3215686274509804,0.32941176470588235,0.6392156862745098], + [0.3215686274509804,0.32941176470588235,0.6392156862745098], + [0.3215686274509804,0.32941176470588235,0.6392156862745098], + [0.3215686274509804,0.32941176470588235,0.6392156862745098], + [0.3215686274509804,0.32941176470588235,0.6392156862745098], + [0.3215686274509804,0.32941176470588235,0.6392156862745098], + [0.3215686274509804,0.32941176470588235,0.6392156862745098], + [0.3215686274509804,0.32941176470588235,0.6392156862745098], + [0.3215686274509804,0.32941176470588235,0.6392156862745098], + [0.4196078431372549,0.43137254901960786,0.8117647058823529], + [0.4196078431372549,0.43137254901960786,0.8117647058823529], + [0.4196078431372549,0.43137254901960786,0.8117647058823529], + [0.4196078431372549,0.43137254901960786,0.8117647058823529], + [0.4196078431372549,0.43137254901960786,0.8117647058823529], + [0.4196078431372549,0.43137254901960786,0.8117647058823529], + [0.4196078431372549,0.43137254901960786,0.8117647058823529], + [0.4196078431372549,0.43137254901960786,0.8117647058823529], + [0.4196078431372549,0.43137254901960786,0.8117647058823529], + [0.4196078431372549,0.43137254901960786,0.8117647058823529], + [0.4196078431372549,0.43137254901960786,0.8117647058823529], + [0.4196078431372549,0.43137254901960786,0.8117647058823529], + [0.4196078431372549,0.43137254901960786,0.8117647058823529], + [0.611764705882353,0.6196078431372549,0.8705882352941177], + [0.611764705882353,0.6196078431372549,0.8705882352941177], + [0.611764705882353,0.6196078431372549,0.8705882352941177], + [0.611764705882353,0.6196078431372549,0.8705882352941177], + [0.611764705882353,0.6196078431372549,0.8705882352941177], + [0.611764705882353,0.6196078431372549,0.8705882352941177], + [0.611764705882353,0.6196078431372549,0.8705882352941177], + [0.611764705882353,0.6196078431372549,0.8705882352941177], + [0.611764705882353,0.6196078431372549,0.8705882352941177], + [0.611764705882353,0.6196078431372549,0.8705882352941177], + [0.611764705882353,0.6196078431372549,0.8705882352941177], + [0.611764705882353,0.6196078431372549,0.8705882352941177], + [0.38823529411764707,0.4745098039215686,0.2235294117647059], + [0.38823529411764707,0.4745098039215686,0.2235294117647059], + [0.38823529411764707,0.4745098039215686,0.2235294117647059], + [0.38823529411764707,0.4745098039215686,0.2235294117647059], + [0.38823529411764707,0.4745098039215686,0.2235294117647059], + [0.38823529411764707,0.4745098039215686,0.2235294117647059], + [0.38823529411764707,0.4745098039215686,0.2235294117647059], + [0.38823529411764707,0.4745098039215686,0.2235294117647059], + [0.38823529411764707,0.4745098039215686,0.2235294117647059], + [0.38823529411764707,0.4745098039215686,0.2235294117647059], + [0.38823529411764707,0.4745098039215686,0.2235294117647059], + [0.38823529411764707,0.4745098039215686,0.2235294117647059], + [0.38823529411764707,0.4745098039215686,0.2235294117647059], + [0.5490196078431373,0.6352941176470588,0.3215686274509804], + [0.5490196078431373,0.6352941176470588,0.3215686274509804], + [0.5490196078431373,0.6352941176470588,0.3215686274509804], + [0.5490196078431373,0.6352941176470588,0.3215686274509804], + [0.5490196078431373,0.6352941176470588,0.3215686274509804], + [0.5490196078431373,0.6352941176470588,0.3215686274509804], + [0.5490196078431373,0.6352941176470588,0.3215686274509804], + [0.5490196078431373,0.6352941176470588,0.3215686274509804], + [0.5490196078431373,0.6352941176470588,0.3215686274509804], + [0.5490196078431373,0.6352941176470588,0.3215686274509804], + [0.5490196078431373,0.6352941176470588,0.3215686274509804], + [0.5490196078431373,0.6352941176470588,0.3215686274509804], + [0.5490196078431373,0.6352941176470588,0.3215686274509804], + [0.7098039215686275,0.8117647058823529,0.4196078431372549], + [0.7098039215686275,0.8117647058823529,0.4196078431372549], + [0.7098039215686275,0.8117647058823529,0.4196078431372549], + [0.7098039215686275,0.8117647058823529,0.4196078431372549], + [0.7098039215686275,0.8117647058823529,0.4196078431372549], + [0.7098039215686275,0.8117647058823529,0.4196078431372549], + [0.7098039215686275,0.8117647058823529,0.4196078431372549], + [0.7098039215686275,0.8117647058823529,0.4196078431372549], + [0.7098039215686275,0.8117647058823529,0.4196078431372549], + [0.7098039215686275,0.8117647058823529,0.4196078431372549], + [0.7098039215686275,0.8117647058823529,0.4196078431372549], + [0.7098039215686275,0.8117647058823529,0.4196078431372549], + [0.7098039215686275,0.8117647058823529,0.4196078431372549], + [0.807843137254902,0.8588235294117647,0.611764705882353], + [0.807843137254902,0.8588235294117647,0.611764705882353], + [0.807843137254902,0.8588235294117647,0.611764705882353], + [0.807843137254902,0.8588235294117647,0.611764705882353], + [0.807843137254902,0.8588235294117647,0.611764705882353], + [0.807843137254902,0.8588235294117647,0.611764705882353], + [0.807843137254902,0.8588235294117647,0.611764705882353], + [0.807843137254902,0.8588235294117647,0.611764705882353], + [0.807843137254902,0.8588235294117647,0.611764705882353], + [0.807843137254902,0.8588235294117647,0.611764705882353], + [0.807843137254902,0.8588235294117647,0.611764705882353], + [0.807843137254902,0.8588235294117647,0.611764705882353], + [0.5490196078431373,0.42745098039215684,0.19215686274509805], + [0.5490196078431373,0.42745098039215684,0.19215686274509805], + [0.5490196078431373,0.42745098039215684,0.19215686274509805], + [0.5490196078431373,0.42745098039215684,0.19215686274509805], + [0.5490196078431373,0.42745098039215684,0.19215686274509805], + [0.5490196078431373,0.42745098039215684,0.19215686274509805], + [0.5490196078431373,0.42745098039215684,0.19215686274509805], + [0.5490196078431373,0.42745098039215684,0.19215686274509805], + [0.5490196078431373,0.42745098039215684,0.19215686274509805], + [0.5490196078431373,0.42745098039215684,0.19215686274509805], + [0.5490196078431373,0.42745098039215684,0.19215686274509805], + [0.5490196078431373,0.42745098039215684,0.19215686274509805], + [0.5490196078431373,0.42745098039215684,0.19215686274509805], + [0.7411764705882353,0.6196078431372549,0.2235294117647059], + [0.7411764705882353,0.6196078431372549,0.2235294117647059], + [0.7411764705882353,0.6196078431372549,0.2235294117647059], + [0.7411764705882353,0.6196078431372549,0.2235294117647059], + [0.7411764705882353,0.6196078431372549,0.2235294117647059], + [0.7411764705882353,0.6196078431372549,0.2235294117647059], + [0.7411764705882353,0.6196078431372549,0.2235294117647059], + [0.7411764705882353,0.6196078431372549,0.2235294117647059], + [0.7411764705882353,0.6196078431372549,0.2235294117647059], + [0.7411764705882353,0.6196078431372549,0.2235294117647059], + [0.7411764705882353,0.6196078431372549,0.2235294117647059], + [0.7411764705882353,0.6196078431372549,0.2235294117647059], + [0.7411764705882353,0.6196078431372549,0.2235294117647059], + [0.9058823529411765,0.7294117647058823,0.3215686274509804], + [0.9058823529411765,0.7294117647058823,0.3215686274509804], + [0.9058823529411765,0.7294117647058823,0.3215686274509804], + [0.9058823529411765,0.7294117647058823,0.3215686274509804], + [0.9058823529411765,0.7294117647058823,0.3215686274509804], + [0.9058823529411765,0.7294117647058823,0.3215686274509804], + [0.9058823529411765,0.7294117647058823,0.3215686274509804], + [0.9058823529411765,0.7294117647058823,0.3215686274509804], + [0.9058823529411765,0.7294117647058823,0.3215686274509804], + [0.9058823529411765,0.7294117647058823,0.3215686274509804], + [0.9058823529411765,0.7294117647058823,0.3215686274509804], + [0.9058823529411765,0.7294117647058823,0.3215686274509804], + [0.9058823529411765,0.7294117647058823,0.3215686274509804], + [0.9058823529411765,0.796078431372549,0.5803921568627451], + [0.9058823529411765,0.796078431372549,0.5803921568627451], + [0.9058823529411765,0.796078431372549,0.5803921568627451], + [0.9058823529411765,0.796078431372549,0.5803921568627451], + [0.9058823529411765,0.796078431372549,0.5803921568627451], + [0.9058823529411765,0.796078431372549,0.5803921568627451], + [0.9058823529411765,0.796078431372549,0.5803921568627451], + [0.9058823529411765,0.796078431372549,0.5803921568627451], + [0.9058823529411765,0.796078431372549,0.5803921568627451], + [0.9058823529411765,0.796078431372549,0.5803921568627451], + [0.9058823529411765,0.796078431372549,0.5803921568627451], + [0.9058823529411765,0.796078431372549,0.5803921568627451], + [0.5176470588235295,0.23529411764705882,0.2235294117647059], + [0.5176470588235295,0.23529411764705882,0.2235294117647059], + [0.5176470588235295,0.23529411764705882,0.2235294117647059], + [0.5176470588235295,0.23529411764705882,0.2235294117647059], + [0.5176470588235295,0.23529411764705882,0.2235294117647059], + [0.5176470588235295,0.23529411764705882,0.2235294117647059], + [0.5176470588235295,0.23529411764705882,0.2235294117647059], + [0.5176470588235295,0.23529411764705882,0.2235294117647059], + [0.5176470588235295,0.23529411764705882,0.2235294117647059], + [0.5176470588235295,0.23529411764705882,0.2235294117647059], + [0.5176470588235295,0.23529411764705882,0.2235294117647059], + [0.5176470588235295,0.23529411764705882,0.2235294117647059], + [0.5176470588235295,0.23529411764705882,0.2235294117647059], + [0.6784313725490196,0.28627450980392155,0.2901960784313726], + [0.6784313725490196,0.28627450980392155,0.2901960784313726], + [0.6784313725490196,0.28627450980392155,0.2901960784313726], + [0.6784313725490196,0.28627450980392155,0.2901960784313726], + [0.6784313725490196,0.28627450980392155,0.2901960784313726], + [0.6784313725490196,0.28627450980392155,0.2901960784313726], + [0.6784313725490196,0.28627450980392155,0.2901960784313726], + [0.6784313725490196,0.28627450980392155,0.2901960784313726], + [0.6784313725490196,0.28627450980392155,0.2901960784313726], + [0.6784313725490196,0.28627450980392155,0.2901960784313726], + [0.6784313725490196,0.28627450980392155,0.2901960784313726], + [0.6784313725490196,0.28627450980392155,0.2901960784313726], + [0.6784313725490196,0.28627450980392155,0.2901960784313726], + [0.8392156862745098,0.3803921568627451,0.4196078431372549], + [0.8392156862745098,0.3803921568627451,0.4196078431372549], + [0.8392156862745098,0.3803921568627451,0.4196078431372549], + [0.8392156862745098,0.3803921568627451,0.4196078431372549], + [0.8392156862745098,0.3803921568627451,0.4196078431372549], + [0.8392156862745098,0.3803921568627451,0.4196078431372549], + [0.8392156862745098,0.3803921568627451,0.4196078431372549], + [0.8392156862745098,0.3803921568627451,0.4196078431372549], + [0.8392156862745098,0.3803921568627451,0.4196078431372549], + [0.8392156862745098,0.3803921568627451,0.4196078431372549], + [0.8392156862745098,0.3803921568627451,0.4196078431372549], + [0.8392156862745098,0.3803921568627451,0.4196078431372549], + [0.8392156862745098,0.3803921568627451,0.4196078431372549], + [0.9058823529411765,0.5882352941176471,0.611764705882353], + [0.9058823529411765,0.5882352941176471,0.611764705882353], + [0.9058823529411765,0.5882352941176471,0.611764705882353], + [0.9058823529411765,0.5882352941176471,0.611764705882353], + [0.9058823529411765,0.5882352941176471,0.611764705882353], + [0.9058823529411765,0.5882352941176471,0.611764705882353], + [0.9058823529411765,0.5882352941176471,0.611764705882353], + [0.9058823529411765,0.5882352941176471,0.611764705882353], + [0.9058823529411765,0.5882352941176471,0.611764705882353], + [0.9058823529411765,0.5882352941176471,0.611764705882353], + [0.9058823529411765,0.5882352941176471,0.611764705882353], + [0.9058823529411765,0.5882352941176471,0.611764705882353], + [0.4823529411764706,0.2549019607843137,0.45098039215686275], + [0.4823529411764706,0.2549019607843137,0.45098039215686275], + [0.4823529411764706,0.2549019607843137,0.45098039215686275], + [0.4823529411764706,0.2549019607843137,0.45098039215686275], + [0.4823529411764706,0.2549019607843137,0.45098039215686275], + [0.4823529411764706,0.2549019607843137,0.45098039215686275], + [0.4823529411764706,0.2549019607843137,0.45098039215686275], + [0.4823529411764706,0.2549019607843137,0.45098039215686275], + [0.4823529411764706,0.2549019607843137,0.45098039215686275], + [0.4823529411764706,0.2549019607843137,0.45098039215686275], + [0.4823529411764706,0.2549019607843137,0.45098039215686275], + [0.4823529411764706,0.2549019607843137,0.45098039215686275], + [0.4823529411764706,0.2549019607843137,0.45098039215686275], + [0.6470588235294118,0.3176470588235294,0.5803921568627451], + [0.6470588235294118,0.3176470588235294,0.5803921568627451], + [0.6470588235294118,0.3176470588235294,0.5803921568627451], + [0.6470588235294118,0.3176470588235294,0.5803921568627451], + [0.6470588235294118,0.3176470588235294,0.5803921568627451], + [0.6470588235294118,0.3176470588235294,0.5803921568627451], + [0.6470588235294118,0.3176470588235294,0.5803921568627451], + [0.6470588235294118,0.3176470588235294,0.5803921568627451], + [0.6470588235294118,0.3176470588235294,0.5803921568627451], + [0.6470588235294118,0.3176470588235294,0.5803921568627451], + [0.6470588235294118,0.3176470588235294,0.5803921568627451], + [0.6470588235294118,0.3176470588235294,0.5803921568627451], + [0.6470588235294118,0.3176470588235294,0.5803921568627451], + [0.807843137254902,0.42745098039215684,0.7411764705882353], + [0.807843137254902,0.42745098039215684,0.7411764705882353], + [0.807843137254902,0.42745098039215684,0.7411764705882353], + [0.807843137254902,0.42745098039215684,0.7411764705882353], + [0.807843137254902,0.42745098039215684,0.7411764705882353], + [0.807843137254902,0.42745098039215684,0.7411764705882353], + [0.807843137254902,0.42745098039215684,0.7411764705882353], + [0.807843137254902,0.42745098039215684,0.7411764705882353], + [0.807843137254902,0.42745098039215684,0.7411764705882353], + [0.807843137254902,0.42745098039215684,0.7411764705882353], + [0.807843137254902,0.42745098039215684,0.7411764705882353], + [0.807843137254902,0.42745098039215684,0.7411764705882353], + [0.807843137254902,0.42745098039215684,0.7411764705882353], + [0.8705882352941177,0.6196078431372549,0.8392156862745098], + [0.8705882352941177,0.6196078431372549,0.8392156862745098], + [0.8705882352941177,0.6196078431372549,0.8392156862745098], + [0.8705882352941177,0.6196078431372549,0.8392156862745098], + [0.8705882352941177,0.6196078431372549,0.8392156862745098], + [0.8705882352941177,0.6196078431372549,0.8392156862745098], + [0.8705882352941177,0.6196078431372549,0.8392156862745098], + [0.8705882352941177,0.6196078431372549,0.8392156862745098], + [0.8705882352941177,0.6196078431372549,0.8392156862745098], + [0.8705882352941177,0.6196078431372549,0.8392156862745098], + [0.8705882352941177,0.6196078431372549,0.8392156862745098], + [0.8705882352941177,0.6196078431372549,0.8392156862745098], + [0.8705882352941177,0.6196078431372549,0.8392156862745098] ], + tab20b_r: [ + [0.8705882352941177,0.6196078431372549,0.8392156862745098], + [0.8705882352941177,0.6196078431372549,0.8392156862745098], + [0.8705882352941177,0.6196078431372549,0.8392156862745098], + [0.8705882352941177,0.6196078431372549,0.8392156862745098], + [0.8705882352941177,0.6196078431372549,0.8392156862745098], + [0.8705882352941177,0.6196078431372549,0.8392156862745098], + [0.8705882352941177,0.6196078431372549,0.8392156862745098], + [0.8705882352941177,0.6196078431372549,0.8392156862745098], + [0.8705882352941177,0.6196078431372549,0.8392156862745098], + [0.8705882352941177,0.6196078431372549,0.8392156862745098], + [0.8705882352941177,0.6196078431372549,0.8392156862745098], + [0.8705882352941177,0.6196078431372549,0.8392156862745098], + [0.8705882352941177,0.6196078431372549,0.8392156862745098], + [0.807843137254902,0.42745098039215684,0.7411764705882353], + [0.807843137254902,0.42745098039215684,0.7411764705882353], + [0.807843137254902,0.42745098039215684,0.7411764705882353], + [0.807843137254902,0.42745098039215684,0.7411764705882353], + [0.807843137254902,0.42745098039215684,0.7411764705882353], + [0.807843137254902,0.42745098039215684,0.7411764705882353], + [0.807843137254902,0.42745098039215684,0.7411764705882353], + [0.807843137254902,0.42745098039215684,0.7411764705882353], + [0.807843137254902,0.42745098039215684,0.7411764705882353], + [0.807843137254902,0.42745098039215684,0.7411764705882353], + [0.807843137254902,0.42745098039215684,0.7411764705882353], + [0.807843137254902,0.42745098039215684,0.7411764705882353], + [0.807843137254902,0.42745098039215684,0.7411764705882353], + [0.6470588235294118,0.3176470588235294,0.5803921568627451], + [0.6470588235294118,0.3176470588235294,0.5803921568627451], + [0.6470588235294118,0.3176470588235294,0.5803921568627451], + [0.6470588235294118,0.3176470588235294,0.5803921568627451], + [0.6470588235294118,0.3176470588235294,0.5803921568627451], + [0.6470588235294118,0.3176470588235294,0.5803921568627451], + [0.6470588235294118,0.3176470588235294,0.5803921568627451], + [0.6470588235294118,0.3176470588235294,0.5803921568627451], + [0.6470588235294118,0.3176470588235294,0.5803921568627451], + [0.6470588235294118,0.3176470588235294,0.5803921568627451], + [0.6470588235294118,0.3176470588235294,0.5803921568627451], + [0.6470588235294118,0.3176470588235294,0.5803921568627451], + [0.6470588235294118,0.3176470588235294,0.5803921568627451], + [0.4823529411764706,0.2549019607843137,0.45098039215686275], + [0.4823529411764706,0.2549019607843137,0.45098039215686275], + [0.4823529411764706,0.2549019607843137,0.45098039215686275], + [0.4823529411764706,0.2549019607843137,0.45098039215686275], + [0.4823529411764706,0.2549019607843137,0.45098039215686275], + [0.4823529411764706,0.2549019607843137,0.45098039215686275], + [0.4823529411764706,0.2549019607843137,0.45098039215686275], + [0.4823529411764706,0.2549019607843137,0.45098039215686275], + [0.4823529411764706,0.2549019607843137,0.45098039215686275], + [0.4823529411764706,0.2549019607843137,0.45098039215686275], + [0.4823529411764706,0.2549019607843137,0.45098039215686275], + [0.4823529411764706,0.2549019607843137,0.45098039215686275], + [0.9058823529411765,0.5882352941176471,0.611764705882353], + [0.9058823529411765,0.5882352941176471,0.611764705882353], + [0.9058823529411765,0.5882352941176471,0.611764705882353], + [0.9058823529411765,0.5882352941176471,0.611764705882353], + [0.9058823529411765,0.5882352941176471,0.611764705882353], + [0.9058823529411765,0.5882352941176471,0.611764705882353], + [0.9058823529411765,0.5882352941176471,0.611764705882353], + [0.9058823529411765,0.5882352941176471,0.611764705882353], + [0.9058823529411765,0.5882352941176471,0.611764705882353], + [0.9058823529411765,0.5882352941176471,0.611764705882353], + [0.9058823529411765,0.5882352941176471,0.611764705882353], + [0.9058823529411765,0.5882352941176471,0.611764705882353], + [0.9058823529411765,0.5882352941176471,0.611764705882353], + [0.8392156862745098,0.3803921568627451,0.4196078431372549], + [0.8392156862745098,0.3803921568627451,0.4196078431372549], + [0.8392156862745098,0.3803921568627451,0.4196078431372549], + [0.8392156862745098,0.3803921568627451,0.4196078431372549], + [0.8392156862745098,0.3803921568627451,0.4196078431372549], + [0.8392156862745098,0.3803921568627451,0.4196078431372549], + [0.8392156862745098,0.3803921568627451,0.4196078431372549], + [0.8392156862745098,0.3803921568627451,0.4196078431372549], + [0.8392156862745098,0.3803921568627451,0.4196078431372549], + [0.8392156862745098,0.3803921568627451,0.4196078431372549], + [0.8392156862745098,0.3803921568627451,0.4196078431372549], + [0.8392156862745098,0.3803921568627451,0.4196078431372549], + [0.8392156862745098,0.3803921568627451,0.4196078431372549], + [0.6784313725490196,0.28627450980392155,0.2901960784313726], + [0.6784313725490196,0.28627450980392155,0.2901960784313726], + [0.6784313725490196,0.28627450980392155,0.2901960784313726], + [0.6784313725490196,0.28627450980392155,0.2901960784313726], + [0.6784313725490196,0.28627450980392155,0.2901960784313726], + [0.6784313725490196,0.28627450980392155,0.2901960784313726], + [0.6784313725490196,0.28627450980392155,0.2901960784313726], + [0.6784313725490196,0.28627450980392155,0.2901960784313726], + [0.6784313725490196,0.28627450980392155,0.2901960784313726], + [0.6784313725490196,0.28627450980392155,0.2901960784313726], + [0.6784313725490196,0.28627450980392155,0.2901960784313726], + [0.6784313725490196,0.28627450980392155,0.2901960784313726], + [0.6784313725490196,0.28627450980392155,0.2901960784313726], + [0.5176470588235295,0.23529411764705882,0.2235294117647059], + [0.5176470588235295,0.23529411764705882,0.2235294117647059], + [0.5176470588235295,0.23529411764705882,0.2235294117647059], + [0.5176470588235295,0.23529411764705882,0.2235294117647059], + [0.5176470588235295,0.23529411764705882,0.2235294117647059], + [0.5176470588235295,0.23529411764705882,0.2235294117647059], + [0.5176470588235295,0.23529411764705882,0.2235294117647059], + [0.5176470588235295,0.23529411764705882,0.2235294117647059], + [0.5176470588235295,0.23529411764705882,0.2235294117647059], + [0.5176470588235295,0.23529411764705882,0.2235294117647059], + [0.5176470588235295,0.23529411764705882,0.2235294117647059], + [0.5176470588235295,0.23529411764705882,0.2235294117647059], + [0.9058823529411765,0.796078431372549,0.5803921568627451], + [0.9058823529411765,0.796078431372549,0.5803921568627451], + [0.9058823529411765,0.796078431372549,0.5803921568627451], + [0.9058823529411765,0.796078431372549,0.5803921568627451], + [0.9058823529411765,0.796078431372549,0.5803921568627451], + [0.9058823529411765,0.796078431372549,0.5803921568627451], + [0.9058823529411765,0.796078431372549,0.5803921568627451], + [0.9058823529411765,0.796078431372549,0.5803921568627451], + [0.9058823529411765,0.796078431372549,0.5803921568627451], + [0.9058823529411765,0.796078431372549,0.5803921568627451], + [0.9058823529411765,0.796078431372549,0.5803921568627451], + [0.9058823529411765,0.796078431372549,0.5803921568627451], + [0.9058823529411765,0.796078431372549,0.5803921568627451], + [0.9058823529411765,0.7294117647058823,0.3215686274509804], + [0.9058823529411765,0.7294117647058823,0.3215686274509804], + [0.9058823529411765,0.7294117647058823,0.3215686274509804], + [0.9058823529411765,0.7294117647058823,0.3215686274509804], + [0.9058823529411765,0.7294117647058823,0.3215686274509804], + [0.9058823529411765,0.7294117647058823,0.3215686274509804], + [0.9058823529411765,0.7294117647058823,0.3215686274509804], + [0.9058823529411765,0.7294117647058823,0.3215686274509804], + [0.9058823529411765,0.7294117647058823,0.3215686274509804], + [0.9058823529411765,0.7294117647058823,0.3215686274509804], + [0.9058823529411765,0.7294117647058823,0.3215686274509804], + [0.9058823529411765,0.7294117647058823,0.3215686274509804], + [0.9058823529411765,0.7294117647058823,0.3215686274509804], + [0.7411764705882353,0.6196078431372549,0.2235294117647059], + [0.7411764705882353,0.6196078431372549,0.2235294117647059], + [0.7411764705882353,0.6196078431372549,0.2235294117647059], + [0.7411764705882353,0.6196078431372549,0.2235294117647059], + [0.7411764705882353,0.6196078431372549,0.2235294117647059], + [0.7411764705882353,0.6196078431372549,0.2235294117647059], + [0.7411764705882353,0.6196078431372549,0.2235294117647059], + [0.7411764705882353,0.6196078431372549,0.2235294117647059], + [0.7411764705882353,0.6196078431372549,0.2235294117647059], + [0.7411764705882353,0.6196078431372549,0.2235294117647059], + [0.7411764705882353,0.6196078431372549,0.2235294117647059], + [0.7411764705882353,0.6196078431372549,0.2235294117647059], + [0.7411764705882353,0.6196078431372549,0.2235294117647059], + [0.5490196078431373,0.42745098039215684,0.19215686274509805], + [0.5490196078431373,0.42745098039215684,0.19215686274509805], + [0.5490196078431373,0.42745098039215684,0.19215686274509805], + [0.5490196078431373,0.42745098039215684,0.19215686274509805], + [0.5490196078431373,0.42745098039215684,0.19215686274509805], + [0.5490196078431373,0.42745098039215684,0.19215686274509805], + [0.5490196078431373,0.42745098039215684,0.19215686274509805], + [0.5490196078431373,0.42745098039215684,0.19215686274509805], + [0.5490196078431373,0.42745098039215684,0.19215686274509805], + [0.5490196078431373,0.42745098039215684,0.19215686274509805], + [0.5490196078431373,0.42745098039215684,0.19215686274509805], + [0.5490196078431373,0.42745098039215684,0.19215686274509805], + [0.807843137254902,0.8588235294117647,0.611764705882353], + [0.807843137254902,0.8588235294117647,0.611764705882353], + [0.807843137254902,0.8588235294117647,0.611764705882353], + [0.807843137254902,0.8588235294117647,0.611764705882353], + [0.807843137254902,0.8588235294117647,0.611764705882353], + [0.807843137254902,0.8588235294117647,0.611764705882353], + [0.807843137254902,0.8588235294117647,0.611764705882353], + [0.807843137254902,0.8588235294117647,0.611764705882353], + [0.807843137254902,0.8588235294117647,0.611764705882353], + [0.807843137254902,0.8588235294117647,0.611764705882353], + [0.807843137254902,0.8588235294117647,0.611764705882353], + [0.807843137254902,0.8588235294117647,0.611764705882353], + [0.807843137254902,0.8588235294117647,0.611764705882353], + [0.7098039215686275,0.8117647058823529,0.4196078431372549], + [0.7098039215686275,0.8117647058823529,0.4196078431372549], + [0.7098039215686275,0.8117647058823529,0.4196078431372549], + [0.7098039215686275,0.8117647058823529,0.4196078431372549], + [0.7098039215686275,0.8117647058823529,0.4196078431372549], + [0.7098039215686275,0.8117647058823529,0.4196078431372549], + [0.7098039215686275,0.8117647058823529,0.4196078431372549], + [0.7098039215686275,0.8117647058823529,0.4196078431372549], + [0.7098039215686275,0.8117647058823529,0.4196078431372549], + [0.7098039215686275,0.8117647058823529,0.4196078431372549], + [0.7098039215686275,0.8117647058823529,0.4196078431372549], + [0.7098039215686275,0.8117647058823529,0.4196078431372549], + [0.7098039215686275,0.8117647058823529,0.4196078431372549], + [0.5490196078431373,0.6352941176470588,0.3215686274509804], + [0.5490196078431373,0.6352941176470588,0.3215686274509804], + [0.5490196078431373,0.6352941176470588,0.3215686274509804], + [0.5490196078431373,0.6352941176470588,0.3215686274509804], + [0.5490196078431373,0.6352941176470588,0.3215686274509804], + [0.5490196078431373,0.6352941176470588,0.3215686274509804], + [0.5490196078431373,0.6352941176470588,0.3215686274509804], + [0.5490196078431373,0.6352941176470588,0.3215686274509804], + [0.5490196078431373,0.6352941176470588,0.3215686274509804], + [0.5490196078431373,0.6352941176470588,0.3215686274509804], + [0.5490196078431373,0.6352941176470588,0.3215686274509804], + [0.5490196078431373,0.6352941176470588,0.3215686274509804], + [0.5490196078431373,0.6352941176470588,0.3215686274509804], + [0.38823529411764707,0.4745098039215686,0.2235294117647059], + [0.38823529411764707,0.4745098039215686,0.2235294117647059], + [0.38823529411764707,0.4745098039215686,0.2235294117647059], + [0.38823529411764707,0.4745098039215686,0.2235294117647059], + [0.38823529411764707,0.4745098039215686,0.2235294117647059], + [0.38823529411764707,0.4745098039215686,0.2235294117647059], + [0.38823529411764707,0.4745098039215686,0.2235294117647059], + [0.38823529411764707,0.4745098039215686,0.2235294117647059], + [0.38823529411764707,0.4745098039215686,0.2235294117647059], + [0.38823529411764707,0.4745098039215686,0.2235294117647059], + [0.38823529411764707,0.4745098039215686,0.2235294117647059], + [0.38823529411764707,0.4745098039215686,0.2235294117647059], + [0.611764705882353,0.6196078431372549,0.8705882352941177], + [0.611764705882353,0.6196078431372549,0.8705882352941177], + [0.611764705882353,0.6196078431372549,0.8705882352941177], + [0.611764705882353,0.6196078431372549,0.8705882352941177], + [0.611764705882353,0.6196078431372549,0.8705882352941177], + [0.611764705882353,0.6196078431372549,0.8705882352941177], + [0.611764705882353,0.6196078431372549,0.8705882352941177], + [0.611764705882353,0.6196078431372549,0.8705882352941177], + [0.611764705882353,0.6196078431372549,0.8705882352941177], + [0.611764705882353,0.6196078431372549,0.8705882352941177], + [0.611764705882353,0.6196078431372549,0.8705882352941177], + [0.611764705882353,0.6196078431372549,0.8705882352941177], + [0.611764705882353,0.6196078431372549,0.8705882352941177], + [0.4196078431372549,0.43137254901960786,0.8117647058823529], + [0.4196078431372549,0.43137254901960786,0.8117647058823529], + [0.4196078431372549,0.43137254901960786,0.8117647058823529], + [0.4196078431372549,0.43137254901960786,0.8117647058823529], + [0.4196078431372549,0.43137254901960786,0.8117647058823529], + [0.4196078431372549,0.43137254901960786,0.8117647058823529], + [0.4196078431372549,0.43137254901960786,0.8117647058823529], + [0.4196078431372549,0.43137254901960786,0.8117647058823529], + [0.4196078431372549,0.43137254901960786,0.8117647058823529], + [0.4196078431372549,0.43137254901960786,0.8117647058823529], + [0.4196078431372549,0.43137254901960786,0.8117647058823529], + [0.4196078431372549,0.43137254901960786,0.8117647058823529], + [0.4196078431372549,0.43137254901960786,0.8117647058823529], + [0.3215686274509804,0.32941176470588235,0.6392156862745098], + [0.3215686274509804,0.32941176470588235,0.6392156862745098], + [0.3215686274509804,0.32941176470588235,0.6392156862745098], + [0.3215686274509804,0.32941176470588235,0.6392156862745098], + [0.3215686274509804,0.32941176470588235,0.6392156862745098], + [0.3215686274509804,0.32941176470588235,0.6392156862745098], + [0.3215686274509804,0.32941176470588235,0.6392156862745098], + [0.3215686274509804,0.32941176470588235,0.6392156862745098], + [0.3215686274509804,0.32941176470588235,0.6392156862745098], + [0.3215686274509804,0.32941176470588235,0.6392156862745098], + [0.3215686274509804,0.32941176470588235,0.6392156862745098], + [0.3215686274509804,0.32941176470588235,0.6392156862745098], + [0.3215686274509804,0.32941176470588235,0.6392156862745098], + [0.2235294117647059,0.23137254901960785,0.4745098039215686], + [0.2235294117647059,0.23137254901960785,0.4745098039215686], + [0.2235294117647059,0.23137254901960785,0.4745098039215686], + [0.2235294117647059,0.23137254901960785,0.4745098039215686], + [0.2235294117647059,0.23137254901960785,0.4745098039215686], + [0.2235294117647059,0.23137254901960785,0.4745098039215686], + [0.2235294117647059,0.23137254901960785,0.4745098039215686], + [0.2235294117647059,0.23137254901960785,0.4745098039215686], + [0.2235294117647059,0.23137254901960785,0.4745098039215686], + [0.2235294117647059,0.23137254901960785,0.4745098039215686], + [0.2235294117647059,0.23137254901960785,0.4745098039215686], + [0.2235294117647059,0.23137254901960785,0.4745098039215686], + [0.2235294117647059,0.23137254901960785,0.4745098039215686] ], + tab20c: [ + [0.19215686274509805,0.5098039215686274,0.7411764705882353], + [0.19215686274509805,0.5098039215686274,0.7411764705882353], + [0.19215686274509805,0.5098039215686274,0.7411764705882353], + [0.19215686274509805,0.5098039215686274,0.7411764705882353], + [0.19215686274509805,0.5098039215686274,0.7411764705882353], + [0.19215686274509805,0.5098039215686274,0.7411764705882353], + [0.19215686274509805,0.5098039215686274,0.7411764705882353], + [0.19215686274509805,0.5098039215686274,0.7411764705882353], + [0.19215686274509805,0.5098039215686274,0.7411764705882353], + [0.19215686274509805,0.5098039215686274,0.7411764705882353], + [0.19215686274509805,0.5098039215686274,0.7411764705882353], + [0.19215686274509805,0.5098039215686274,0.7411764705882353], + [0.19215686274509805,0.5098039215686274,0.7411764705882353], + [0.4196078431372549,0.6823529411764706,0.8392156862745098], + [0.4196078431372549,0.6823529411764706,0.8392156862745098], + [0.4196078431372549,0.6823529411764706,0.8392156862745098], + [0.4196078431372549,0.6823529411764706,0.8392156862745098], + [0.4196078431372549,0.6823529411764706,0.8392156862745098], + [0.4196078431372549,0.6823529411764706,0.8392156862745098], + [0.4196078431372549,0.6823529411764706,0.8392156862745098], + [0.4196078431372549,0.6823529411764706,0.8392156862745098], + [0.4196078431372549,0.6823529411764706,0.8392156862745098], + [0.4196078431372549,0.6823529411764706,0.8392156862745098], + [0.4196078431372549,0.6823529411764706,0.8392156862745098], + [0.4196078431372549,0.6823529411764706,0.8392156862745098], + [0.4196078431372549,0.6823529411764706,0.8392156862745098], + [0.6196078431372549,0.792156862745098,0.8823529411764706], + [0.6196078431372549,0.792156862745098,0.8823529411764706], + [0.6196078431372549,0.792156862745098,0.8823529411764706], + [0.6196078431372549,0.792156862745098,0.8823529411764706], + [0.6196078431372549,0.792156862745098,0.8823529411764706], + [0.6196078431372549,0.792156862745098,0.8823529411764706], + [0.6196078431372549,0.792156862745098,0.8823529411764706], + [0.6196078431372549,0.792156862745098,0.8823529411764706], + [0.6196078431372549,0.792156862745098,0.8823529411764706], + [0.6196078431372549,0.792156862745098,0.8823529411764706], + [0.6196078431372549,0.792156862745098,0.8823529411764706], + [0.6196078431372549,0.792156862745098,0.8823529411764706], + [0.6196078431372549,0.792156862745098,0.8823529411764706], + [0.7764705882352941,0.8588235294117647,0.9372549019607843], + [0.7764705882352941,0.8588235294117647,0.9372549019607843], + [0.7764705882352941,0.8588235294117647,0.9372549019607843], + [0.7764705882352941,0.8588235294117647,0.9372549019607843], + [0.7764705882352941,0.8588235294117647,0.9372549019607843], + [0.7764705882352941,0.8588235294117647,0.9372549019607843], + [0.7764705882352941,0.8588235294117647,0.9372549019607843], + [0.7764705882352941,0.8588235294117647,0.9372549019607843], + [0.7764705882352941,0.8588235294117647,0.9372549019607843], + [0.7764705882352941,0.8588235294117647,0.9372549019607843], + [0.7764705882352941,0.8588235294117647,0.9372549019607843], + [0.7764705882352941,0.8588235294117647,0.9372549019607843], + [0.9019607843137255,0.3333333333333333,0.050980392156862744], + [0.9019607843137255,0.3333333333333333,0.050980392156862744], + [0.9019607843137255,0.3333333333333333,0.050980392156862744], + [0.9019607843137255,0.3333333333333333,0.050980392156862744], + [0.9019607843137255,0.3333333333333333,0.050980392156862744], + [0.9019607843137255,0.3333333333333333,0.050980392156862744], + [0.9019607843137255,0.3333333333333333,0.050980392156862744], + [0.9019607843137255,0.3333333333333333,0.050980392156862744], + [0.9019607843137255,0.3333333333333333,0.050980392156862744], + [0.9019607843137255,0.3333333333333333,0.050980392156862744], + [0.9019607843137255,0.3333333333333333,0.050980392156862744], + [0.9019607843137255,0.3333333333333333,0.050980392156862744], + [0.9019607843137255,0.3333333333333333,0.050980392156862744], + [0.9921568627450981,0.5529411764705883,0.23529411764705882], + [0.9921568627450981,0.5529411764705883,0.23529411764705882], + [0.9921568627450981,0.5529411764705883,0.23529411764705882], + [0.9921568627450981,0.5529411764705883,0.23529411764705882], + [0.9921568627450981,0.5529411764705883,0.23529411764705882], + [0.9921568627450981,0.5529411764705883,0.23529411764705882], + [0.9921568627450981,0.5529411764705883,0.23529411764705882], + [0.9921568627450981,0.5529411764705883,0.23529411764705882], + [0.9921568627450981,0.5529411764705883,0.23529411764705882], + [0.9921568627450981,0.5529411764705883,0.23529411764705882], + [0.9921568627450981,0.5529411764705883,0.23529411764705882], + [0.9921568627450981,0.5529411764705883,0.23529411764705882], + [0.9921568627450981,0.5529411764705883,0.23529411764705882], + [0.9921568627450981,0.6823529411764706,0.4196078431372549], + [0.9921568627450981,0.6823529411764706,0.4196078431372549], + [0.9921568627450981,0.6823529411764706,0.4196078431372549], + [0.9921568627450981,0.6823529411764706,0.4196078431372549], + [0.9921568627450981,0.6823529411764706,0.4196078431372549], + [0.9921568627450981,0.6823529411764706,0.4196078431372549], + [0.9921568627450981,0.6823529411764706,0.4196078431372549], + [0.9921568627450981,0.6823529411764706,0.4196078431372549], + [0.9921568627450981,0.6823529411764706,0.4196078431372549], + [0.9921568627450981,0.6823529411764706,0.4196078431372549], + [0.9921568627450981,0.6823529411764706,0.4196078431372549], + [0.9921568627450981,0.6823529411764706,0.4196078431372549], + [0.9921568627450981,0.6823529411764706,0.4196078431372549], + [0.9921568627450981,0.8156862745098039,0.6352941176470588], + [0.9921568627450981,0.8156862745098039,0.6352941176470588], + [0.9921568627450981,0.8156862745098039,0.6352941176470588], + [0.9921568627450981,0.8156862745098039,0.6352941176470588], + [0.9921568627450981,0.8156862745098039,0.6352941176470588], + [0.9921568627450981,0.8156862745098039,0.6352941176470588], + [0.9921568627450981,0.8156862745098039,0.6352941176470588], + [0.9921568627450981,0.8156862745098039,0.6352941176470588], + [0.9921568627450981,0.8156862745098039,0.6352941176470588], + [0.9921568627450981,0.8156862745098039,0.6352941176470588], + [0.9921568627450981,0.8156862745098039,0.6352941176470588], + [0.9921568627450981,0.8156862745098039,0.6352941176470588], + [0.19215686274509805,0.6392156862745098,0.32941176470588235], + [0.19215686274509805,0.6392156862745098,0.32941176470588235], + [0.19215686274509805,0.6392156862745098,0.32941176470588235], + [0.19215686274509805,0.6392156862745098,0.32941176470588235], + [0.19215686274509805,0.6392156862745098,0.32941176470588235], + [0.19215686274509805,0.6392156862745098,0.32941176470588235], + [0.19215686274509805,0.6392156862745098,0.32941176470588235], + [0.19215686274509805,0.6392156862745098,0.32941176470588235], + [0.19215686274509805,0.6392156862745098,0.32941176470588235], + [0.19215686274509805,0.6392156862745098,0.32941176470588235], + [0.19215686274509805,0.6392156862745098,0.32941176470588235], + [0.19215686274509805,0.6392156862745098,0.32941176470588235], + [0.19215686274509805,0.6392156862745098,0.32941176470588235], + [0.4549019607843137,0.7686274509803922,0.4627450980392157], + [0.4549019607843137,0.7686274509803922,0.4627450980392157], + [0.4549019607843137,0.7686274509803922,0.4627450980392157], + [0.4549019607843137,0.7686274509803922,0.4627450980392157], + [0.4549019607843137,0.7686274509803922,0.4627450980392157], + [0.4549019607843137,0.7686274509803922,0.4627450980392157], + [0.4549019607843137,0.7686274509803922,0.4627450980392157], + [0.4549019607843137,0.7686274509803922,0.4627450980392157], + [0.4549019607843137,0.7686274509803922,0.4627450980392157], + [0.4549019607843137,0.7686274509803922,0.4627450980392157], + [0.4549019607843137,0.7686274509803922,0.4627450980392157], + [0.4549019607843137,0.7686274509803922,0.4627450980392157], + [0.4549019607843137,0.7686274509803922,0.4627450980392157], + [0.6313725490196078,0.8509803921568627,0.6078431372549019], + [0.6313725490196078,0.8509803921568627,0.6078431372549019], + [0.6313725490196078,0.8509803921568627,0.6078431372549019], + [0.6313725490196078,0.8509803921568627,0.6078431372549019], + [0.6313725490196078,0.8509803921568627,0.6078431372549019], + [0.6313725490196078,0.8509803921568627,0.6078431372549019], + [0.6313725490196078,0.8509803921568627,0.6078431372549019], + [0.6313725490196078,0.8509803921568627,0.6078431372549019], + [0.6313725490196078,0.8509803921568627,0.6078431372549019], + [0.6313725490196078,0.8509803921568627,0.6078431372549019], + [0.6313725490196078,0.8509803921568627,0.6078431372549019], + [0.6313725490196078,0.8509803921568627,0.6078431372549019], + [0.6313725490196078,0.8509803921568627,0.6078431372549019], + [0.7803921568627451,0.9137254901960784,0.7529411764705882], + [0.7803921568627451,0.9137254901960784,0.7529411764705882], + [0.7803921568627451,0.9137254901960784,0.7529411764705882], + [0.7803921568627451,0.9137254901960784,0.7529411764705882], + [0.7803921568627451,0.9137254901960784,0.7529411764705882], + [0.7803921568627451,0.9137254901960784,0.7529411764705882], + [0.7803921568627451,0.9137254901960784,0.7529411764705882], + [0.7803921568627451,0.9137254901960784,0.7529411764705882], + [0.7803921568627451,0.9137254901960784,0.7529411764705882], + [0.7803921568627451,0.9137254901960784,0.7529411764705882], + [0.7803921568627451,0.9137254901960784,0.7529411764705882], + [0.7803921568627451,0.9137254901960784,0.7529411764705882], + [0.4588235294117647,0.4196078431372549,0.6941176470588235], + [0.4588235294117647,0.4196078431372549,0.6941176470588235], + [0.4588235294117647,0.4196078431372549,0.6941176470588235], + [0.4588235294117647,0.4196078431372549,0.6941176470588235], + [0.4588235294117647,0.4196078431372549,0.6941176470588235], + [0.4588235294117647,0.4196078431372549,0.6941176470588235], + [0.4588235294117647,0.4196078431372549,0.6941176470588235], + [0.4588235294117647,0.4196078431372549,0.6941176470588235], + [0.4588235294117647,0.4196078431372549,0.6941176470588235], + [0.4588235294117647,0.4196078431372549,0.6941176470588235], + [0.4588235294117647,0.4196078431372549,0.6941176470588235], + [0.4588235294117647,0.4196078431372549,0.6941176470588235], + [0.4588235294117647,0.4196078431372549,0.6941176470588235], + [0.6196078431372549,0.6039215686274509,0.7843137254901961], + [0.6196078431372549,0.6039215686274509,0.7843137254901961], + [0.6196078431372549,0.6039215686274509,0.7843137254901961], + [0.6196078431372549,0.6039215686274509,0.7843137254901961], + [0.6196078431372549,0.6039215686274509,0.7843137254901961], + [0.6196078431372549,0.6039215686274509,0.7843137254901961], + [0.6196078431372549,0.6039215686274509,0.7843137254901961], + [0.6196078431372549,0.6039215686274509,0.7843137254901961], + [0.6196078431372549,0.6039215686274509,0.7843137254901961], + [0.6196078431372549,0.6039215686274509,0.7843137254901961], + [0.6196078431372549,0.6039215686274509,0.7843137254901961], + [0.6196078431372549,0.6039215686274509,0.7843137254901961], + [0.6196078431372549,0.6039215686274509,0.7843137254901961], + [0.7372549019607844,0.7411764705882353,0.8627450980392157], + [0.7372549019607844,0.7411764705882353,0.8627450980392157], + [0.7372549019607844,0.7411764705882353,0.8627450980392157], + [0.7372549019607844,0.7411764705882353,0.8627450980392157], + [0.7372549019607844,0.7411764705882353,0.8627450980392157], + [0.7372549019607844,0.7411764705882353,0.8627450980392157], + [0.7372549019607844,0.7411764705882353,0.8627450980392157], + [0.7372549019607844,0.7411764705882353,0.8627450980392157], + [0.7372549019607844,0.7411764705882353,0.8627450980392157], + [0.7372549019607844,0.7411764705882353,0.8627450980392157], + [0.7372549019607844,0.7411764705882353,0.8627450980392157], + [0.7372549019607844,0.7411764705882353,0.8627450980392157], + [0.7372549019607844,0.7411764705882353,0.8627450980392157], + [0.8549019607843137,0.8549019607843137,0.9215686274509803], + [0.8549019607843137,0.8549019607843137,0.9215686274509803], + [0.8549019607843137,0.8549019607843137,0.9215686274509803], + [0.8549019607843137,0.8549019607843137,0.9215686274509803], + [0.8549019607843137,0.8549019607843137,0.9215686274509803], + [0.8549019607843137,0.8549019607843137,0.9215686274509803], + [0.8549019607843137,0.8549019607843137,0.9215686274509803], + [0.8549019607843137,0.8549019607843137,0.9215686274509803], + [0.8549019607843137,0.8549019607843137,0.9215686274509803], + [0.8549019607843137,0.8549019607843137,0.9215686274509803], + [0.8549019607843137,0.8549019607843137,0.9215686274509803], + [0.8549019607843137,0.8549019607843137,0.9215686274509803], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627] ], + tab20c_r: [ + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.8509803921568627,0.8509803921568627,0.8509803921568627], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.7411764705882353,0.7411764705882353,0.7411764705882353], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.5882352941176471,0.5882352941176471,0.5882352941176471], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.38823529411764707,0.38823529411764707,0.38823529411764707], + [0.8549019607843137,0.8549019607843137,0.9215686274509803], + [0.8549019607843137,0.8549019607843137,0.9215686274509803], + [0.8549019607843137,0.8549019607843137,0.9215686274509803], + [0.8549019607843137,0.8549019607843137,0.9215686274509803], + [0.8549019607843137,0.8549019607843137,0.9215686274509803], + [0.8549019607843137,0.8549019607843137,0.9215686274509803], + [0.8549019607843137,0.8549019607843137,0.9215686274509803], + [0.8549019607843137,0.8549019607843137,0.9215686274509803], + [0.8549019607843137,0.8549019607843137,0.9215686274509803], + [0.8549019607843137,0.8549019607843137,0.9215686274509803], + [0.8549019607843137,0.8549019607843137,0.9215686274509803], + [0.8549019607843137,0.8549019607843137,0.9215686274509803], + [0.8549019607843137,0.8549019607843137,0.9215686274509803], + [0.7372549019607844,0.7411764705882353,0.8627450980392157], + [0.7372549019607844,0.7411764705882353,0.8627450980392157], + [0.7372549019607844,0.7411764705882353,0.8627450980392157], + [0.7372549019607844,0.7411764705882353,0.8627450980392157], + [0.7372549019607844,0.7411764705882353,0.8627450980392157], + [0.7372549019607844,0.7411764705882353,0.8627450980392157], + [0.7372549019607844,0.7411764705882353,0.8627450980392157], + [0.7372549019607844,0.7411764705882353,0.8627450980392157], + [0.7372549019607844,0.7411764705882353,0.8627450980392157], + [0.7372549019607844,0.7411764705882353,0.8627450980392157], + [0.7372549019607844,0.7411764705882353,0.8627450980392157], + [0.7372549019607844,0.7411764705882353,0.8627450980392157], + [0.7372549019607844,0.7411764705882353,0.8627450980392157], + [0.6196078431372549,0.6039215686274509,0.7843137254901961], + [0.6196078431372549,0.6039215686274509,0.7843137254901961], + [0.6196078431372549,0.6039215686274509,0.7843137254901961], + [0.6196078431372549,0.6039215686274509,0.7843137254901961], + [0.6196078431372549,0.6039215686274509,0.7843137254901961], + [0.6196078431372549,0.6039215686274509,0.7843137254901961], + [0.6196078431372549,0.6039215686274509,0.7843137254901961], + [0.6196078431372549,0.6039215686274509,0.7843137254901961], + [0.6196078431372549,0.6039215686274509,0.7843137254901961], + [0.6196078431372549,0.6039215686274509,0.7843137254901961], + [0.6196078431372549,0.6039215686274509,0.7843137254901961], + [0.6196078431372549,0.6039215686274509,0.7843137254901961], + [0.6196078431372549,0.6039215686274509,0.7843137254901961], + [0.4588235294117647,0.4196078431372549,0.6941176470588235], + [0.4588235294117647,0.4196078431372549,0.6941176470588235], + [0.4588235294117647,0.4196078431372549,0.6941176470588235], + [0.4588235294117647,0.4196078431372549,0.6941176470588235], + [0.4588235294117647,0.4196078431372549,0.6941176470588235], + [0.4588235294117647,0.4196078431372549,0.6941176470588235], + [0.4588235294117647,0.4196078431372549,0.6941176470588235], + [0.4588235294117647,0.4196078431372549,0.6941176470588235], + [0.4588235294117647,0.4196078431372549,0.6941176470588235], + [0.4588235294117647,0.4196078431372549,0.6941176470588235], + [0.4588235294117647,0.4196078431372549,0.6941176470588235], + [0.4588235294117647,0.4196078431372549,0.6941176470588235], + [0.7803921568627451,0.9137254901960784,0.7529411764705882], + [0.7803921568627451,0.9137254901960784,0.7529411764705882], + [0.7803921568627451,0.9137254901960784,0.7529411764705882], + [0.7803921568627451,0.9137254901960784,0.7529411764705882], + [0.7803921568627451,0.9137254901960784,0.7529411764705882], + [0.7803921568627451,0.9137254901960784,0.7529411764705882], + [0.7803921568627451,0.9137254901960784,0.7529411764705882], + [0.7803921568627451,0.9137254901960784,0.7529411764705882], + [0.7803921568627451,0.9137254901960784,0.7529411764705882], + [0.7803921568627451,0.9137254901960784,0.7529411764705882], + [0.7803921568627451,0.9137254901960784,0.7529411764705882], + [0.7803921568627451,0.9137254901960784,0.7529411764705882], + [0.7803921568627451,0.9137254901960784,0.7529411764705882], + [0.6313725490196078,0.8509803921568627,0.6078431372549019], + [0.6313725490196078,0.8509803921568627,0.6078431372549019], + [0.6313725490196078,0.8509803921568627,0.6078431372549019], + [0.6313725490196078,0.8509803921568627,0.6078431372549019], + [0.6313725490196078,0.8509803921568627,0.6078431372549019], + [0.6313725490196078,0.8509803921568627,0.6078431372549019], + [0.6313725490196078,0.8509803921568627,0.6078431372549019], + [0.6313725490196078,0.8509803921568627,0.6078431372549019], + [0.6313725490196078,0.8509803921568627,0.6078431372549019], + [0.6313725490196078,0.8509803921568627,0.6078431372549019], + [0.6313725490196078,0.8509803921568627,0.6078431372549019], + [0.6313725490196078,0.8509803921568627,0.6078431372549019], + [0.6313725490196078,0.8509803921568627,0.6078431372549019], + [0.4549019607843137,0.7686274509803922,0.4627450980392157], + [0.4549019607843137,0.7686274509803922,0.4627450980392157], + [0.4549019607843137,0.7686274509803922,0.4627450980392157], + [0.4549019607843137,0.7686274509803922,0.4627450980392157], + [0.4549019607843137,0.7686274509803922,0.4627450980392157], + [0.4549019607843137,0.7686274509803922,0.4627450980392157], + [0.4549019607843137,0.7686274509803922,0.4627450980392157], + [0.4549019607843137,0.7686274509803922,0.4627450980392157], + [0.4549019607843137,0.7686274509803922,0.4627450980392157], + [0.4549019607843137,0.7686274509803922,0.4627450980392157], + [0.4549019607843137,0.7686274509803922,0.4627450980392157], + [0.4549019607843137,0.7686274509803922,0.4627450980392157], + [0.4549019607843137,0.7686274509803922,0.4627450980392157], + [0.19215686274509805,0.6392156862745098,0.32941176470588235], + [0.19215686274509805,0.6392156862745098,0.32941176470588235], + [0.19215686274509805,0.6392156862745098,0.32941176470588235], + [0.19215686274509805,0.6392156862745098,0.32941176470588235], + [0.19215686274509805,0.6392156862745098,0.32941176470588235], + [0.19215686274509805,0.6392156862745098,0.32941176470588235], + [0.19215686274509805,0.6392156862745098,0.32941176470588235], + [0.19215686274509805,0.6392156862745098,0.32941176470588235], + [0.19215686274509805,0.6392156862745098,0.32941176470588235], + [0.19215686274509805,0.6392156862745098,0.32941176470588235], + [0.19215686274509805,0.6392156862745098,0.32941176470588235], + [0.19215686274509805,0.6392156862745098,0.32941176470588235], + [0.9921568627450981,0.8156862745098039,0.6352941176470588], + [0.9921568627450981,0.8156862745098039,0.6352941176470588], + [0.9921568627450981,0.8156862745098039,0.6352941176470588], + [0.9921568627450981,0.8156862745098039,0.6352941176470588], + [0.9921568627450981,0.8156862745098039,0.6352941176470588], + [0.9921568627450981,0.8156862745098039,0.6352941176470588], + [0.9921568627450981,0.8156862745098039,0.6352941176470588], + [0.9921568627450981,0.8156862745098039,0.6352941176470588], + [0.9921568627450981,0.8156862745098039,0.6352941176470588], + [0.9921568627450981,0.8156862745098039,0.6352941176470588], + [0.9921568627450981,0.8156862745098039,0.6352941176470588], + [0.9921568627450981,0.8156862745098039,0.6352941176470588], + [0.9921568627450981,0.8156862745098039,0.6352941176470588], + [0.9921568627450981,0.6823529411764706,0.4196078431372549], + [0.9921568627450981,0.6823529411764706,0.4196078431372549], + [0.9921568627450981,0.6823529411764706,0.4196078431372549], + [0.9921568627450981,0.6823529411764706,0.4196078431372549], + [0.9921568627450981,0.6823529411764706,0.4196078431372549], + [0.9921568627450981,0.6823529411764706,0.4196078431372549], + [0.9921568627450981,0.6823529411764706,0.4196078431372549], + [0.9921568627450981,0.6823529411764706,0.4196078431372549], + [0.9921568627450981,0.6823529411764706,0.4196078431372549], + [0.9921568627450981,0.6823529411764706,0.4196078431372549], + [0.9921568627450981,0.6823529411764706,0.4196078431372549], + [0.9921568627450981,0.6823529411764706,0.4196078431372549], + [0.9921568627450981,0.6823529411764706,0.4196078431372549], + [0.9921568627450981,0.5529411764705883,0.23529411764705882], + [0.9921568627450981,0.5529411764705883,0.23529411764705882], + [0.9921568627450981,0.5529411764705883,0.23529411764705882], + [0.9921568627450981,0.5529411764705883,0.23529411764705882], + [0.9921568627450981,0.5529411764705883,0.23529411764705882], + [0.9921568627450981,0.5529411764705883,0.23529411764705882], + [0.9921568627450981,0.5529411764705883,0.23529411764705882], + [0.9921568627450981,0.5529411764705883,0.23529411764705882], + [0.9921568627450981,0.5529411764705883,0.23529411764705882], + [0.9921568627450981,0.5529411764705883,0.23529411764705882], + [0.9921568627450981,0.5529411764705883,0.23529411764705882], + [0.9921568627450981,0.5529411764705883,0.23529411764705882], + [0.9921568627450981,0.5529411764705883,0.23529411764705882], + [0.9019607843137255,0.3333333333333333,0.050980392156862744], + [0.9019607843137255,0.3333333333333333,0.050980392156862744], + [0.9019607843137255,0.3333333333333333,0.050980392156862744], + [0.9019607843137255,0.3333333333333333,0.050980392156862744], + [0.9019607843137255,0.3333333333333333,0.050980392156862744], + [0.9019607843137255,0.3333333333333333,0.050980392156862744], + [0.9019607843137255,0.3333333333333333,0.050980392156862744], + [0.9019607843137255,0.3333333333333333,0.050980392156862744], + [0.9019607843137255,0.3333333333333333,0.050980392156862744], + [0.9019607843137255,0.3333333333333333,0.050980392156862744], + [0.9019607843137255,0.3333333333333333,0.050980392156862744], + [0.9019607843137255,0.3333333333333333,0.050980392156862744], + [0.7764705882352941,0.8588235294117647,0.9372549019607843], + [0.7764705882352941,0.8588235294117647,0.9372549019607843], + [0.7764705882352941,0.8588235294117647,0.9372549019607843], + [0.7764705882352941,0.8588235294117647,0.9372549019607843], + [0.7764705882352941,0.8588235294117647,0.9372549019607843], + [0.7764705882352941,0.8588235294117647,0.9372549019607843], + [0.7764705882352941,0.8588235294117647,0.9372549019607843], + [0.7764705882352941,0.8588235294117647,0.9372549019607843], + [0.7764705882352941,0.8588235294117647,0.9372549019607843], + [0.7764705882352941,0.8588235294117647,0.9372549019607843], + [0.7764705882352941,0.8588235294117647,0.9372549019607843], + [0.7764705882352941,0.8588235294117647,0.9372549019607843], + [0.7764705882352941,0.8588235294117647,0.9372549019607843], + [0.6196078431372549,0.792156862745098,0.8823529411764706], + [0.6196078431372549,0.792156862745098,0.8823529411764706], + [0.6196078431372549,0.792156862745098,0.8823529411764706], + [0.6196078431372549,0.792156862745098,0.8823529411764706], + [0.6196078431372549,0.792156862745098,0.8823529411764706], + [0.6196078431372549,0.792156862745098,0.8823529411764706], + [0.6196078431372549,0.792156862745098,0.8823529411764706], + [0.6196078431372549,0.792156862745098,0.8823529411764706], + [0.6196078431372549,0.792156862745098,0.8823529411764706], + [0.6196078431372549,0.792156862745098,0.8823529411764706], + [0.6196078431372549,0.792156862745098,0.8823529411764706], + [0.6196078431372549,0.792156862745098,0.8823529411764706], + [0.6196078431372549,0.792156862745098,0.8823529411764706], + [0.4196078431372549,0.6823529411764706,0.8392156862745098], + [0.4196078431372549,0.6823529411764706,0.8392156862745098], + [0.4196078431372549,0.6823529411764706,0.8392156862745098], + [0.4196078431372549,0.6823529411764706,0.8392156862745098], + [0.4196078431372549,0.6823529411764706,0.8392156862745098], + [0.4196078431372549,0.6823529411764706,0.8392156862745098], + [0.4196078431372549,0.6823529411764706,0.8392156862745098], + [0.4196078431372549,0.6823529411764706,0.8392156862745098], + [0.4196078431372549,0.6823529411764706,0.8392156862745098], + [0.4196078431372549,0.6823529411764706,0.8392156862745098], + [0.4196078431372549,0.6823529411764706,0.8392156862745098], + [0.4196078431372549,0.6823529411764706,0.8392156862745098], + [0.4196078431372549,0.6823529411764706,0.8392156862745098], + [0.19215686274509805,0.5098039215686274,0.7411764705882353], + [0.19215686274509805,0.5098039215686274,0.7411764705882353], + [0.19215686274509805,0.5098039215686274,0.7411764705882353], + [0.19215686274509805,0.5098039215686274,0.7411764705882353], + [0.19215686274509805,0.5098039215686274,0.7411764705882353], + [0.19215686274509805,0.5098039215686274,0.7411764705882353], + [0.19215686274509805,0.5098039215686274,0.7411764705882353], + [0.19215686274509805,0.5098039215686274,0.7411764705882353], + [0.19215686274509805,0.5098039215686274,0.7411764705882353], + [0.19215686274509805,0.5098039215686274,0.7411764705882353], + [0.19215686274509805,0.5098039215686274,0.7411764705882353], + [0.19215686274509805,0.5098039215686274,0.7411764705882353], + [0.19215686274509805,0.5098039215686274,0.7411764705882353] ], + terrain: [ + [0.2,0.2,0.6], + [0.19477124183006536,0.21045751633986928,0.6104575163398692], + [0.18954248366013074,0.22091503267973858,0.6209150326797386], + [0.1843137254901961,0.23137254901960785,0.6313725490196078], + [0.17908496732026144,0.24183006535947713,0.6418300653594771], + [0.1738562091503268,0.2522875816993464,0.6522875816993464], + [0.16862745098039217,0.2627450980392157,0.6627450980392157], + [0.16339869281045752,0.273202614379085,0.6732026143790849], + [0.15816993464052287,0.28366013071895424,0.6836601307189543], + [0.15294117647058825,0.29411764705882354,0.6941176470588235], + [0.1477124183006536,0.30457516339869284,0.7045751633986927], + [0.14248366013071898,0.3150326797385621,0.7150326797385621], + [0.13725490196078433,0.3254901960784314,0.7254901960784313], + [0.13202614379084968,0.3359477124183007,0.7359477124183007], + [0.12679738562091503,0.3464052287581699,0.74640522875817], + [0.1215686274509804,0.3568627450980392,0.7568627450980392], + [0.11633986928104575,0.3673202614379085,0.7673202614379084], + [0.11111111111111112,0.37777777777777777,0.7777777777777778], + [0.10588235294117648,0.388235294117647,0.788235294117647], + [0.10065359477124183,0.39869281045751637,0.7986928104575164], + [0.09542483660130718,0.4091503267973856,0.8091503267973856], + [0.09019607843137255,0.4196078431372549,0.8196078431372549], + [0.08496732026143793,0.43006535947712415,0.8300653594771241], + [0.07973856209150328,0.44052287581699345,0.8405228758169935], + [0.07450980392156864,0.45098039215686275,0.8509803921568627], + [0.06928104575163399,0.461437908496732,0.8614379084967321], + [0.06405228758169934,0.4718954248366013,0.8718954248366013], + [0.05882352941176469,0.4823529411764706,0.8823529411764706], + [0.05359477124183007,0.49281045751633984,0.8928104575163398], + [0.04836601307189542,0.5032679738562091,0.9032679738562092], + [0.0431372549019608,0.5137254901960784,0.9137254901960784], + [0.03790849673202615,0.5241830065359476,0.9241830065359478], + [0.0326797385620915,0.534640522875817,0.934640522875817], + [0.027450980392156904,0.5450980392156861,0.9450980392156862], + [0.022222222222222227,0.5555555555555556,0.9555555555555555], + [0.016993464052287577,0.5660130718954248,0.9660130718954248], + [0.011764705882352955,0.5764705882352941,0.9764705882352941], + [0.006535947712418333,0.5869281045751633,0.9869281045751633], + [0.0013071895424836555,0.5973856209150327,0.9973856209150327], + [0.0,0.6058823529411764,0.9823529411764705], + [0.0,0.6137254901960784,0.9588235294117647], + [0.0,0.6215686274509803,0.9352941176470589], + [0.0,0.6294117647058823,0.9117647058823529], + [0.0,0.6372549019607843,0.888235294117647], + [0.0,0.6450980392156863,0.8647058823529412], + [0.0,0.6529411764705881,0.8411764705882354], + [0.0,0.6607843137254902,0.8176470588235294], + [0.0,0.6686274509803921,0.7941176470588236], + [0.0,0.6764705882352942,0.7705882352941177], + [0.0,0.6843137254901961,0.747058823529412], + [0.0,0.692156862745098,0.723529411764706], + [0.0,0.7,0.7], + [0.0,0.707843137254902,0.6764705882352942], + [0.0,0.7156862745098038,0.6529411764705884], + [0.0,0.7235294117647059,0.6294117647058823], + [0.0,0.7313725490196079,0.6058823529411765], + [0.0,0.7392156862745098,0.5823529411764706], + [0.0,0.7470588235294118,0.5588235294117649], + [0.0,0.7549019607843137,0.5352941176470588], + [0.0,0.7627450980392158,0.5117647058823529], + [0.0,0.7705882352941177,0.4882352941176471], + [0.0,0.7784313725490196,0.4647058823529414], + [0.0,0.7862745098039217,0.4411764705882353], + [0.0,0.7941176470588236,0.4176470588235295], + [0.00392156862745098,0.8007843137254902,0.4007843137254902], + [0.0196078431372549,0.803921568627451,0.403921568627451], + [0.0352941176470586,0.8070588235294117,0.40705882352941175], + [0.050980392156862744,0.8101960784313726,0.41019607843137257], + [0.06666666666666667,0.8133333333333334,0.41333333333333333], + [0.08235294117647059,0.8164705882352942,0.41647058823529415], + [0.09803921568627451,0.819607843137255,0.4196078431372549], + [0.11372549019607843,0.8227450980392157,0.4227450980392157], + [0.12941176470588237,0.8258823529411765,0.4258823529411765], + [0.1450980392156863,0.8290196078431373,0.42901960784313725], + [0.16078431372548999,0.832156862745098,0.432156862745098], + [0.17647058823529413,0.8352941176470589,0.43529411764705883], + [0.19215686274509805,0.8384313725490197,0.43843137254901965], + [0.20784313725490197,0.8415686274509804,0.4415686274509804], + [0.2235294117647059,0.8447058823529412,0.4447058823529412], + [0.23921568627450981,0.847843137254902,0.447843137254902], + [0.2549019607843137,0.8509803921568628,0.45098039215686275], + [0.27058823529411763,0.8541176470588235,0.4541176470588235], + [0.28627450980392133,0.8572549019607842,0.4572549019607843], + [0.30196078431372547,0.8603921568627452,0.4603921568627451], + [0.3176470588235294,0.8635294117647059,0.46352941176470586], + [0.3333333333333333,0.8666666666666667,0.4666666666666667], + [0.34901960784313724,0.8698039215686275,0.46980392156862744], + [0.36470588235294116,0.8729411764705882,0.47294117647058825], + [0.3803921568627451,0.876078431372549,0.476078431372549], + [0.396078431372549,0.8792156862745099,0.47921568627450983], + [0.4117647058823527,0.8823529411764706,0.48235294117647054], + [0.42745098039215684,0.8854901960784314,0.48549019607843136], + [0.44313725490196076,0.8886274509803922,0.4886274509803922], + [0.4588235294117647,0.891764705882353,0.49176470588235294], + [0.4745098039215686,0.8949019607843137,0.4949019607843137], + [0.49019607843137253,0.8980392156862745,0.4980392156862745], + [0.5058823529411764,0.9011764705882354,0.5011764705882353], + [0.5215686274509804,0.9043137254901961,0.504313725490196], + [0.5372549019607841,0.9074509803921569,0.5074509803921569], + [0.5529411764705883,0.9105882352941177,0.5105882352941177], + [0.5686274509803921,0.9137254901960784,0.5137254901960784], + [0.5843137254901961,0.9168627450980392,0.5168627450980392], + [0.6,0.92,0.52], + [0.615686274509804,0.9231372549019607,0.5231372549019608], + [0.6313725490196078,0.9262745098039216,0.5262745098039215], + [0.6470588235294118,0.9294117647058824,0.5294117647058824], + [0.6627450980392154,0.9325490196078431,0.5325490196078431], + [0.6784313725490196,0.9356862745098039,0.5356862745098039], + [0.6941176470588235,0.9388235294117647,0.5388235294117647], + [0.7098039215686275,0.9419607843137255,0.5419607843137255], + [0.7254901960784313,0.9450980392156862,0.5450980392156862], + [0.7411764705882353,0.9482352941176471,0.548235294117647], + [0.7568627450980392,0.9513725490196079,0.5513725490196079], + [0.7725490196078432,0.9545098039215687,0.5545098039215686], + [0.7882352941176468,0.9576470588235294,0.5576470588235294], + [0.803921568627451,0.9607843137254902,0.5607843137254902], + [0.8196078431372549,0.9639215686274509,0.563921568627451], + [0.8352941176470589,0.9670588235294117,0.5670588235294117], + [0.8509803921568627,0.9701960784313726,0.5701960784313725], + [0.8666666666666667,0.9733333333333334,0.5733333333333334], + [0.8823529411764706,0.9764705882352941,0.5764705882352941], + [0.8980392156862745,0.9796078431372549,0.5796078431372549], + [0.9137254901960782,0.9827450980392156,0.5827450980392156], + [0.9294117647058824,0.9858823529411764,0.5858823529411765], + [0.9450980392156862,0.9890196078431372,0.5890196078431372], + [0.9607843137254902,0.9921568627450981,0.592156862745098], + [0.9764705882352941,0.9952941176470589,0.5952941176470588], + [0.9921568627450981,0.9984313725490196,0.5984313725490196], + [0.996078431372549,0.9949803921568627,0.5978823529411764], + [0.9882352941176471,0.9849411764705882,0.5936470588235294], + [0.9803921568627451,0.9749019607843137,0.5894117647058823], + [0.9725490196078431,0.9648627450980393,0.5851764705882353], + [0.9647058823529414,0.954823529411765,0.5809411764705883], + [0.9568627450980393,0.9447843137254902,0.5767058823529412], + [0.9490196078431372,0.9347450980392157,0.5724705882352941], + [0.9411764705882353,0.9247058823529412,0.5682352941176471], + [0.9333333333333333,0.9146666666666666,0.564], + [0.9254901960784314,0.9046274509803922,0.5597647058823529], + [0.9176470588235294,0.8945882352941177,0.5555294117647058], + [0.9098039215686274,0.8845490196078432,0.5512941176470588], + [0.9019607843137255,0.8745098039215686,0.5470588235294117], + [0.8941176470588236,0.8644705882352941,0.5428235294117647], + [0.8862745098039215,0.8544313725490196,0.5385882352941176], + [0.8784313725490196,0.844392156862745,0.5343529411764706], + [0.8705882352941177,0.8343529411764705,0.5301176470588235], + [0.8627450980392157,0.824313725490196,0.5258823529411765], + [0.8549019607843137,0.8142745098039216,0.5216470588235294], + [0.8470588235294118,0.804235294117647,0.5174117647058823], + [0.83921568627451,0.7941960784313729,0.5131764705882353], + [0.8313725490196078,0.784156862745098,0.5089411764705882], + [0.8235294117647058,0.7741176470588236,0.5047058823529411], + [0.8156862745098039,0.764078431372549,0.5004705882352941], + [0.807843137254902,0.7540392156862745,0.49623529411764705], + [0.8,0.744,0.492], + [0.792156862745098,0.7339607843137255,0.48776470588235293], + [0.7843137254901961,0.7239215686274509,0.4835294117647059], + [0.7764705882352941,0.7138823529411764,0.4792941176470588], + [0.7686274509803921,0.7038431372549019,0.47505882352941176], + [0.7607843137254902,0.6938039215686274,0.4708235294117647], + [0.7529411764705882,0.6837647058823529,0.46658823529411764], + [0.7450980392156863,0.6737254901960785,0.46235294117647063], + [0.7372549019607844,0.6636862745098039,0.4581176470588235], + [0.7294117647058824,0.6536470588235295,0.4538823529411765], + [0.7215686274509804,0.6436078431372549,0.4496470588235294], + [0.7137254901960787,0.6335686274509806,0.4454117647058825], + [0.7058823529411764,0.6235294117647059,0.4411764705882353], + [0.6980392156862745,0.6134901960784314,0.4369411764705883], + [0.6901960784313725,0.6034509803921568,0.43270588235294116], + [0.6823529411764706,0.5934117647058823,0.42847058823529416], + [0.6745098039215687,0.5833725490196078,0.42423529411764704], + [0.6666666666666667,0.5733333333333334,0.42000000000000004], + [0.6588235294117647,0.5632941176470587,0.4157647058823529], + [0.6509803921568628,0.5532549019607843,0.4115294117647059], + [0.6431372549019607,0.5432156862745098,0.4072941176470588], + [0.6352941176470588,0.5331764705882354,0.4030588235294118], + [0.6274509803921569,0.5231372549019608,0.3988235294117647], + [0.6196078431372549,0.5130980392156863,0.3945882352941177], + [0.611764705882353,0.5030588235294118,0.39035294117647057], + [0.603921568627451,0.49301960784313725,0.38611764705882357], + [0.596078431372549,0.4829803921568627,0.38188235294117645], + [0.5882352941176473,0.47294117647058853,0.37764705882352956], + [0.580392156862745,0.46290196078431367,0.37341176470588233], + [0.5725490196078431,0.45286274509803925,0.36917647058823533], + [0.5647058823529412,0.4428235294117647,0.3649411764705882], + [0.5568627450980392,0.4327843137254902,0.3607058823529412], + [0.5490196078431373,0.42274509803921567,0.3564705882352941], + [0.5411764705882354,0.41270588235294114,0.3522352941176471], + [0.5333333333333333,0.4026666666666666,0.34800000000000003], + [0.5254901960784314,0.3926274509803922,0.34376470588235297], + [0.5176470588235293,0.3825882352941177,0.3395294117647059], + [0.5098039215686274,0.37254901960784315,0.33529411764705885], + [0.5019607843137255,0.3625098039215686,0.3310588235294118], + [0.5058823529411764,0.3675294117647059,0.33788235294117647], + [0.5137254901960784,0.37756862745098035,0.3483921568627451], + [0.5215686274509804,0.3876078431372549,0.35890196078431374], + [0.5294117647058824,0.3976470588235294,0.3694117647058824], + [0.5372549019607841,0.4076862745098036,0.3799215686274507], + [0.5450980392156862,0.4177254901960784,0.3904313725490196], + [0.5529411764705883,0.42776470588235294,0.40094117647058825], + [0.5607843137254902,0.43780392156862746,0.4114509803921569], + [0.5686274509803921,0.447843137254902,0.4219607843137255], + [0.5764705882352941,0.45788235294117646,0.43247058823529416], + [0.5843137254901961,0.467921568627451,0.44298039215686275], + [0.592156862745098,0.47796078431372546,0.4534901960784314], + [0.6,0.488,0.46399999999999997], + [0.607843137254902,0.4980392156862745,0.4745098039215686], + [0.615686274509804,0.508078431372549,0.48501960784313725], + [0.6235294117647059,0.5181176470588236,0.4955294117647059], + [0.6313725490196078,0.5281568627450981,0.5060392156862745], + [0.6392156862745098,0.5381960784313725,0.5165490196078432], + [0.6470588235294118,0.548235294117647,0.5270588235294118], + [0.6549019607843137,0.5582745098039216,0.5375686274509803], + [0.6627450980392154,0.5683137254901958,0.5480784313725487], + [0.6705882352941177,0.5783529411764706,0.5585882352941176], + [0.6784313725490196,0.588392156862745,0.5690980392156862], + [0.6862745098039216,0.5984313725490196,0.5796078431372549], + [0.6941176470588235,0.6084705882352941,0.5901176470588235], + [0.7019607843137254,0.6185098039215686,0.6006274509803922], + [0.7098039215686275,0.6285490196078432,0.6111372549019608], + [0.7176470588235294,0.6385882352941177,0.6216470588235294], + [0.7254901960784313,0.6486274509803922,0.632156862745098], + [0.7333333333333334,0.6586666666666667,0.6426666666666667], + [0.7411764705882353,0.6687058823529411,0.6531764705882352], + [0.7490196078431373,0.6787450980392157,0.6636862745098039], + [0.7568627450980392,0.6887843137254901,0.6741960784313725], + [0.7647058823529411,0.6988235294117646,0.6847058823529412], + [0.7725490196078431,0.7088627450980391,0.6952156862745098], + [0.7803921568627451,0.7189019607843137,0.7057254901960783], + [0.7882352941176468,0.728941176470588,0.7162352941176466], + [0.7960784313725491,0.7389803921568627,0.7267450980392156], + [0.803921568627451,0.7490196078431373,0.7372549019607842], + [0.8117647058823529,0.7590588235294118,0.7477647058823529], + [0.8196078431372549,0.7690980392156863,0.7582745098039215], + [0.8274509803921568,0.7791372549019608,0.7687843137254902], + [0.8352941176470587,0.7891764705882353,0.7792941176470587], + [0.8431372549019608,0.7992156862745098,0.7898039215686274], + [0.8509803921568627,0.8092549019607842,0.800313725490196], + [0.8588235294117648,0.8192941176470588,0.8108235294117647], + [0.8666666666666667,0.8293333333333333,0.8213333333333332], + [0.8745098039215686,0.8393725490196078,0.831843137254902], + [0.8823529411764706,0.8494117647058823,0.8423529411764705], + [0.8901960784313725,0.8594509803921568,0.8528627450980393], + [0.8980392156862744,0.8694901960784314,0.8633725490196078], + [0.9058823529411765,0.8795294117647059,0.8738823529411763], + [0.9137254901960782,0.8895686274509801,0.8843921568627446], + [0.9215686274509804,0.899607843137255,0.8949019607843136], + [0.9294117647058824,0.9096470588235294,0.9054117647058824], + [0.9372549019607843,0.9196862745098039,0.9159215686274509], + [0.9450980392156862,0.9297254901960784,0.9264313725490194], + [0.9529411764705882,0.939764705882353,0.9369411764705882], + [0.9607843137254901,0.9498039215686274,0.9474509803921567], + [0.9686274509803922,0.959843137254902,0.9579607843137254], + [0.9764705882352941,0.9698823529411764,0.968470588235294], + [0.9843137254901961,0.979921568627451,0.9789803921568627], + [0.9921568627450981,0.9899607843137255,0.9894901960784313], + [1.0,1.0,1.0] ], + terrain_r: [ + [1.0,1.0,1.0], + [0.9921568627450981,0.9899607843137255,0.9894901960784314], + [0.9843137254901961,0.979921568627451,0.9789803921568627], + [0.9764705882352941,0.9698823529411764,0.9684705882352941], + [0.9686274509803922,0.959843137254902,0.9579607843137254], + [0.9607843137254902,0.9498039215686275,0.9474509803921569], + [0.9529411764705882,0.939764705882353,0.9369411764705883], + [0.9450980392156862,0.9297254901960784,0.9264313725490196], + [0.9372549019607843,0.9196862745098039,0.915921568627451], + [0.9294117647058824,0.9096470588235294,0.9054117647058824], + [0.9215686274509804,0.899607843137255,0.8949019607843137], + [0.9137254901960784,0.8895686274509804,0.8843921568627451], + [0.9058823529411765,0.8795294117647059,0.8738823529411766], + [0.8980392156862745,0.8694901960784314,0.8633725490196078], + [0.8901960784313725,0.8594509803921568,0.8528627450980393], + [0.8823529411764706,0.8494117647058823,0.8423529411764706], + [0.8745098039215686,0.8393725490196078,0.831843137254902], + [0.8666666666666667,0.8293333333333334,0.8213333333333334], + [0.8588235294117648,0.8192941176470588,0.8108235294117647], + [0.8509803921568627,0.8092549019607843,0.8003137254901961], + [0.8431372549019608,0.7992156862745098,0.7898039215686274], + [0.8352941176470589,0.7891764705882353,0.7792941176470589], + [0.8274509803921568,0.7791372549019608,0.7687843137254902], + [0.8196078431372549,0.7690980392156863,0.7582745098039216], + [0.8117647058823529,0.7590588235294118,0.747764705882353], + [0.803921568627451,0.7490196078431373,0.7372549019607844], + [0.7960784313725491,0.7389803921568627,0.7267450980392157], + [0.788235294117647,0.7289411764705882,0.7162352941176471], + [0.7803921568627451,0.7189019607843137,0.7057254901960784], + [0.7725490196078432,0.7088627450980391,0.6952156862745098], + [0.7647058823529411,0.6988235294117646,0.6847058823529413], + [0.7568627450980392,0.6887843137254902,0.6741960784313725], + [0.7490196078431373,0.6787450980392157,0.663686274509804], + [0.7411764705882353,0.6687058823529413,0.6531764705882354], + [0.7333333333333334,0.6586666666666667,0.6426666666666667], + [0.7254901960784313,0.6486274509803921,0.632156862745098], + [0.7176470588235294,0.6385882352941177,0.6216470588235294], + [0.7098039215686275,0.6285490196078432,0.6111372549019609], + [0.7019607843137254,0.6185098039215686,0.6006274509803922], + [0.6941176470588235,0.6084705882352941,0.5901176470588235], + [0.6862745098039216,0.5984313725490196,0.5796078431372549], + [0.6784313725490196,0.5883921568627452,0.5690980392156864], + [0.6705882352941177,0.5783529411764705,0.5585882352941177], + [0.6627450980392157,0.568313725490196,0.5480784313725491], + [0.6549019607843137,0.5582745098039216,0.5375686274509804], + [0.6470588235294118,0.5482352941176472,0.5270588235294118], + [0.6392156862745098,0.5381960784313726,0.5165490196078433], + [0.6313725490196078,0.528156862745098,0.5060392156862745], + [0.6235294117647059,0.5181176470588236,0.495529411764706], + [0.615686274509804,0.508078431372549,0.48501960784313736], + [0.607843137254902,0.4980392156862745,0.4745098039215687], + [0.6,0.488,0.4640000000000001], + [0.592156862745098,0.47796078431372546,0.45349019607843144], + [0.5843137254901961,0.46792156862745105,0.4429803921568628], + [0.5764705882352941,0.4578823529411765,0.43247058823529416], + [0.5686274509803921,0.4478431372549019,0.4219607843137255], + [0.5607843137254902,0.43780392156862746,0.4114509803921569], + [0.5529411764705883,0.42776470588235294,0.40094117647058836], + [0.5450980392156863,0.4177254901960784,0.3904313725490197], + [0.5372549019607843,0.4076862745098039,0.37992156862745097], + [0.5294117647058824,0.39764705882352935,0.36941176470588244], + [0.5215686274509804,0.38760784313725494,0.3589019607843138], + [0.5137254901960784,0.3775686274509804,0.34839215686274516], + [0.5058823529411764,0.3675294117647059,0.3378823529411765], + [0.5019607843137255,0.3625098039215686,0.3310588235294118], + [0.5098039215686274,0.37254901960784315,0.33529411764705885], + [0.5176470588235293,0.3825882352941175,0.33952941176470586], + [0.5254901960784314,0.39262745098039215,0.34376470588235297], + [0.5333333333333333,0.4026666666666667,0.34800000000000003], + [0.5411764705882353,0.41270588235294114,0.3522352941176471], + [0.5490196078431373,0.42274509803921567,0.35647058823529415], + [0.5568627450980392,0.4327843137254902,0.3607058823529412], + [0.5647058823529412,0.4428235294117647,0.36494117647058827], + [0.5725490196078431,0.4528627450980392,0.36917647058823533], + [0.580392156862745,0.46290196078431356,0.37341176470588233], + [0.5882352941176471,0.4729411764705882,0.37764705882352945], + [0.596078431372549,0.4829803921568627,0.3818823529411765], + [0.6039215686274509,0.49301960784313725,0.38611764705882357], + [0.611764705882353,0.5030588235294118,0.39035294117647057], + [0.6196078431372549,0.5130980392156863,0.3945882352941177], + [0.6274509803921569,0.5231372549019607,0.3988235294117647], + [0.6352941176470588,0.5331764705882353,0.40305882352941175], + [0.6431372549019607,0.5432156862745097,0.40729411764705875], + [0.6509803921568628,0.5532549019607843,0.41152941176470587], + [0.6588235294117647,0.5632941176470588,0.4157647058823529], + [0.6666666666666666,0.5733333333333333,0.42], + [0.6745098039215687,0.5833725490196078,0.42423529411764704], + [0.6823529411764706,0.5934117647058823,0.4284705882352941], + [0.6901960784313725,0.6034509803921568,0.43270588235294116], + [0.6980392156862745,0.6134901960784314,0.4369411764705882], + [0.7058823529411764,0.6235294117647057,0.4411764705882352], + [0.7137254901960784,0.6335686274509804,0.44541176470588234], + [0.7215686274509804,0.6436078431372549,0.4496470588235294], + [0.7294117647058823,0.6536470588235295,0.45388235294117646], + [0.7372549019607844,0.6636862745098039,0.4581176470588235], + [0.7450980392156863,0.6737254901960784,0.4623529411764706], + [0.7529411764705882,0.6837647058823529,0.46658823529411764], + [0.7607843137254902,0.6938039215686275,0.47082352941176475], + [0.7686274509803921,0.7038431372549018,0.4750588235294117], + [0.7764705882352941,0.7138823529411764,0.4792941176470588], + [0.7843137254901961,0.7239215686274509,0.4835294117647059], + [0.7921568627450981,0.7339607843137255,0.48776470588235293], + [0.8,0.744,0.492], + [0.807843137254902,0.7540392156862745,0.49623529411764705], + [0.8156862745098039,0.764078431372549,0.5004705882352941], + [0.8235294117647058,0.7741176470588236,0.5047058823529411], + [0.8313725490196078,0.7841568627450979,0.5089411764705881], + [0.8392156862745098,0.7941960784313726,0.5131764705882353], + [0.8470588235294118,0.804235294117647,0.5174117647058823], + [0.8549019607843138,0.8142745098039216,0.5216470588235294], + [0.8627450980392157,0.824313725490196,0.5258823529411765], + [0.8705882352941177,0.8343529411764706,0.5301176470588236], + [0.8784313725490196,0.844392156862745,0.5343529411764706], + [0.8862745098039215,0.8544313725490196,0.5385882352941176], + [0.8941176470588235,0.864470588235294,0.5428235294117646], + [0.9019607843137255,0.8745098039215686,0.5470588235294118], + [0.9098039215686274,0.8845490196078432,0.5512941176470588], + [0.9176470588235295,0.8945882352941177,0.5555294117647058], + [0.9254901960784314,0.9046274509803921,0.5597647058823529], + [0.9333333333333333,0.9146666666666667,0.5640000000000001], + [0.9411764705882353,0.9247058823529412,0.5682352941176471], + [0.9490196078431372,0.9347450980392157,0.5724705882352941], + [0.9568627450980391,0.94478431372549,0.5767058823529411], + [0.9647058823529412,0.9548235294117647,0.5809411764705883], + [0.9725490196078431,0.9648627450980392,0.5851764705882352], + [0.9803921568627452,0.9749019607843138,0.5894117647058823], + [0.9882352941176471,0.9849411764705882,0.5936470588235294], + [0.996078431372549,0.9949803921568627,0.5978823529411765], + [0.9921568627450981,0.9984313725490196,0.5984313725490196], + [0.9764705882352941,0.9952941176470588,0.5952941176470588], + [0.9607843137254902,0.9921568627450981,0.592156862745098], + [0.9450980392156862,0.9890196078431372,0.5890196078431372], + [0.9294117647058828,0.9858823529411765,0.5858823529411765], + [0.9137254901960784,0.9827450980392157,0.5827450980392157], + [0.8980392156862745,0.9796078431372549,0.5796078431372549], + [0.8823529411764706,0.9764705882352941,0.5764705882352941], + [0.8666666666666667,0.9733333333333334,0.5733333333333334], + [0.8509803921568627,0.9701960784313726,0.5701960784313725], + [0.8352941176470589,0.9670588235294117,0.5670588235294117], + [0.8196078431372549,0.9639215686274509,0.563921568627451], + [0.803921568627451,0.9607843137254902,0.5607843137254902], + [0.788235294117647,0.9576470588235294,0.5576470588235294], + [0.7725490196078432,0.9545098039215686,0.5545098039215686], + [0.7568627450980392,0.9513725490196079,0.5513725490196079], + [0.7411764705882353,0.9482352941176471,0.548235294117647], + [0.7254901960784313,0.9450980392156862,0.5450980392156862], + [0.7098039215686274,0.9419607843137255,0.5419607843137255], + [0.6941176470588235,0.9388235294117647,0.5388235294117647], + [0.6784313725490201,0.935686274509804,0.535686274509804], + [0.6627450980392157,0.9325490196078432,0.5325490196078431], + [0.6470588235294117,0.9294117647058824,0.5294117647058824], + [0.6313725490196078,0.9262745098039216,0.5262745098039215], + [0.615686274509804,0.9231372549019607,0.5231372549019608], + [0.6,0.92,0.52], + [0.584313725490196,0.9168627450980392,0.5168627450980392], + [0.5686274509803921,0.9137254901960784,0.5137254901960784], + [0.5529411764705883,0.9105882352941177,0.5105882352941177], + [0.5372549019607843,0.9074509803921569,0.5074509803921569], + [0.5215686274509803,0.9043137254901961,0.504313725490196], + [0.5058823529411764,0.9011764705882354,0.5011764705882353], + [0.4901960784313726,0.8980392156862745,0.4980392156862745], + [0.4745098039215686,0.8949019607843137,0.4949019607843137], + [0.45882352941176474,0.891764705882353,0.49176470588235294], + [0.44313725490196076,0.8886274509803922,0.4886274509803922], + [0.42745098039215734,0.8854901960784315,0.48549019607843147], + [0.4117647058823529,0.8823529411764706,0.4823529411764706], + [0.39607843137254906,0.8792156862745099,0.47921568627450983], + [0.3803921568627451,0.876078431372549,0.476078431372549], + [0.3647058823529412,0.8729411764705883,0.47294117647058825], + [0.34901960784313724,0.8698039215686275,0.4698039215686275], + [0.33333333333333337,0.8666666666666667,0.4666666666666667], + [0.3176470588235294,0.8635294117647059,0.46352941176470586], + [0.3019607843137255,0.8603921568627452,0.46039215686274515], + [0.28627450980392155,0.8572549019607844,0.45725490196078433], + [0.2705882352941177,0.8541176470588235,0.4541176470588235], + [0.2549019607843137,0.8509803921568628,0.45098039215686275], + [0.23921568627450984,0.847843137254902,0.447843137254902], + [0.22352941176470587,0.8447058823529412,0.4447058823529412], + [0.207843137254902,0.8415686274509804,0.4415686274509804], + [0.19215686274509802,0.8384313725490197,0.43843137254901965], + [0.1764705882352946,0.835294117647059,0.43529411764705894], + [0.16078431372549018,0.832156862745098,0.432156862745098], + [0.14509803921568631,0.8290196078431373,0.4290196078431373], + [0.12941176470588234,0.8258823529411765,0.4258823529411765], + [0.11372549019607847,0.8227450980392157,0.42274509803921567], + [0.0980392156862745,0.8196078431372549,0.4196078431372549], + [0.08235294117647063,0.8164705882352942,0.41647058823529415], + [0.06666666666666665,0.8133333333333334,0.41333333333333333], + [0.050980392156862786,0.8101960784313726,0.41019607843137257], + [0.03529411764705881,0.8070588235294118,0.4070588235294118], + [0.019607843137254943,0.803921568627451,0.403921568627451], + [0.0039215686274509665,0.8007843137254902,0.4007843137254902], + [0.0,0.7941176470588236,0.4176470588235294], + [0.0,0.7862745098039217,0.44117647058823534], + [0.0,0.7784313725490196,0.4647058823529412], + [0.0,0.7705882352941177,0.4882352941176471], + [0.0,0.762745098039216,0.5117647058823523], + [0.0,0.7549019607843137,0.5352941176470588], + [0.0,0.7470588235294118,0.5588235294117647], + [0.0,0.7392156862745098,0.5823529411764706], + [0.0,0.7313725490196079,0.6058823529411765], + [0.0,0.7235294117647059,0.6294117647058823], + [0.0,0.7156862745098039,0.6529411764705882], + [0.0,0.707843137254902,0.6764705882352942], + [0.0,0.7,0.7], + [0.0,0.692156862745098,0.7235294117647059], + [0.0,0.6843137254901961,0.7470588235294118], + [0.0,0.6764705882352942,0.7705882352941177], + [0.0,0.6686274509803922,0.7941176470588236], + [0.0,0.6607843137254902,0.8176470588235294], + [0.0,0.6529411764705882,0.8411764705882354], + [0.0,0.6450980392156862,0.8647058823529412], + [0.0,0.6372549019607845,0.8882352941176463], + [0.0,0.6294117647058823,0.9117647058823529], + [0.0,0.6215686274509804,0.9352941176470588], + [0.0,0.6137254901960785,0.9588235294117647], + [0.0,0.6058823529411764,0.9823529411764705], + [0.0013071895424836603,0.5973856209150327,0.9973856209150327], + [0.006535947712418302,0.5869281045751634,0.9869281045751634], + [0.011764705882352941,0.5764705882352941,0.9764705882352941], + [0.016993464052287584,0.5660130718954248,0.9660130718954248], + [0.022222222222222223,0.5555555555555556,0.9555555555555556], + [0.027450980392156866,0.5450980392156862,0.9450980392156862], + [0.032679738562091505,0.534640522875817,0.934640522875817], + [0.03790849673202615,0.5241830065359477,0.9241830065359478], + [0.04313725490196079,0.5137254901960784,0.9137254901960784], + [0.048366013071895426,0.5032679738562091,0.9032679738562092], + [0.05359477124183007,0.49281045751633984,0.8928104575163398], + [0.05882352941176455,0.4823529411764709,0.8823529411764709], + [0.06405228758169934,0.4718954248366013,0.8718954248366013], + [0.06928104575163399,0.46143790849673205,0.8614379084967321], + [0.07450980392156863,0.4509803921568627,0.8509803921568627], + [0.07973856209150328,0.44052287581699345,0.8405228758169935], + [0.08496732026143791,0.4300653594771242,0.8300653594771241], + [0.09019607843137256,0.41960784313725485,0.8196078431372549], + [0.0954248366013072,0.4091503267973856,0.8091503267973856], + [0.10065359477124183,0.39869281045751637,0.7986928104575164], + [0.10588235294117648,0.388235294117647,0.788235294117647], + [0.11111111111111112,0.37777777777777777,0.7777777777777778], + [0.11633986928104577,0.36732026143790847,0.7673202614379084], + [0.12156862745098039,0.3568627450980392,0.7568627450980392], + [0.12679738562091503,0.3464052287581699,0.74640522875817], + [0.13202614379084968,0.3359477124183007,0.7359477124183007], + [0.13725490196078433,0.3254901960784314,0.7254901960784313], + [0.1424836601307188,0.3150326797385624,0.7150326797385624], + [0.1477124183006536,0.3045751633986928,0.7045751633986927], + [0.15294117647058825,0.29411764705882354,0.6941176470588235], + [0.15816993464052287,0.28366013071895424,0.6836601307189543], + [0.16339869281045752,0.273202614379085,0.673202614379085], + [0.16862745098039217,0.2627450980392157,0.6627450980392157], + [0.17385620915032682,0.2522875816993464,0.6522875816993463], + [0.17908496732026147,0.2418300653594771,0.6418300653594771], + [0.1843137254901961,0.23137254901960785,0.6313725490196078], + [0.1895424836601307,0.2209150326797386,0.6209150326797386], + [0.19477124183006536,0.2104575163398693,0.6104575163398693], + [0.2,0.2,0.6] ], + twilight: [ + [0.8857501584075443,0.8500092494306783,0.8879736506427196], + [0.8817223105928579,0.8512759407765347,0.8863805692551482], + [0.8772488085896548,0.8518702833887027,0.8843412038131143], + [0.8723313408512408,0.8518016547808089,0.8818970435500162], + [0.8669601550533358,0.8510896085314068,0.8790976697717334], + [0.8611024543689985,0.8497675485700126,0.8759924292343957], + [0.8547259318925698,0.8478748812467282,0.8726282980930582], + [0.8478071070257792,0.8454546229209523,0.8690403678369444], + [0.8403042080595778,0.8425605950855084,0.865250882410458], + [0.8322270571293441,0.8392349062775448,0.8612756350042788], + [0.8235742968025285,0.8355248776479544,0.8571319132851495], + [0.8143898212114309,0.8314655869419785,0.8528375906214702], + [0.8046916442981458,0.8270983878056066,0.8484244929697402], + [0.7945430508923111,0.8224511622630462,0.8439218478682798], + [0.7839910104276492,0.8175542640053343,0.8393674746403673], + [0.7730841659017094,0.8124352473546601,0.8348017295057968], + [0.7618690793798029,0.8071194938764749,0.830266486168872], + [0.750403467654067,0.8016269900896532,0.8257973785108242], + [0.7387377170049494,0.7959766573503101,0.8214292278043301], + [0.726921775128297,0.7901846863592763,0.8171921746672638], + [0.7150040307625213,0.7842648709158119,0.8131111655994991], + [0.7030297722540817,0.7782290497335813,0.8092061884805697], + [0.691046410093091,0.7720862946067809,0.8054884169067907], + [0.6790955449988215,0.765844721313959,0.8019646617300199], + [0.6672147980375281,0.7595112803730375,0.7986367465453776], + [0.6554369232645472,0.7530920875676843,0.7955027112903105], + [0.6437910831099849,0.7465923800833657,0.7925565320130605], + [0.6323027138710603,0.740016721601314,0.7897889276264043], + [0.6209919306481755,0.733369347989232,0.7871899462469658], + [0.6098754317609306,0.7266539875975829,0.7847483573269471], + [0.5989665814482068,0.7198739489224673,0.7824525989934664], + [0.588275797805555,0.7130321464645814,0.7802914140563652], + [0.5778116438998202,0.7061310615715398,0.7782534512102552], + [0.5726668948158774,0.7026589535425779,0.7772770268091199], + [0.5575894041960517,0.6921591145825405,0.7745041337932782], + [0.5478409815301863,0.6850914221850988,0.7727738647344087], + [0.5383401557517628,0.677970811290954,0.7711273443905772], + [0.533683891477284,0.6743909370521273,0.7703325054879735], + [0.5200962739223556,0.6635739143403039,0.768051194033441], + [0.5113599254160193,0.6562985398183186,0.7666066378064533], + [0.5028853540415561,0.6489721673409526,0.7652144671817491], + [0.4987473366135607,0.6452898684900934,0.7645357873418008], + [0.4867359599430568,0.6341664625110051,0.7625578008592404], + [0.47906816236197386,0.6266867625186013,0.7612800037566242], + [0.4716762951887709,0.6191554324288464,0.7600270922788305], + [0.46808490970531597,0.6153702869579029,0.7594078989109274], + [0.45773377230160567,0.6039363004658646,0.7575693690185916], + [0.45118918687617743,0.5962476205135354,0.7563512064324664], + [0.4449324685421538,0.5885055998308617,0.7551311041857901], + [0.441912717666964,0.5846144110017557,0.7545183888441067], + [0.43329008867358393,0.5728594162560667,0.7526594653256667], + [0.42790652284925834,0.5649543060909209,0.7513944352191484], + [0.4228148567577266,0.5569939212699658,0.7501008698822764], + [0.42037822361396326,0.5529928715810817,0.7494412559451894], + [0.4135024574331473,0.5409057477109848,0.7474007329754309], + [0.4092768899914751,0.5327773017713032,0.7459803063570782], + [0.4053334378930318,0.5245922817498312,0.7445036583670813], + [0.40346600333905397,0.5204784765384003,0.7437421522356709], + [0.3982719152586337,0.5080516653927614,0.7413545091809972], + [0.3951405880820763,0.4996958532637776,0.7396682021171571], + [0.39226494876209317,0.4912830033289926,0.7378982478447508], + [0.390920175719949,0.4870552025122304,0.7369797713388125], + [0.3872430145933025,0.4742864593363539,0.7340801678785439], + [0.3850755679365139,0.46570306719930193,0.732018540336905], + [0.3831216808440275,0.457063235814072,0.7298462679135326], + [0.3813688793045416,0.4483672766927786,0.7275567131714135], + [0.3805638069656562,0.4439983720863372,0.7263658704513531], + [0.378413635091359,0.43080859411413064,0.7225993199306104], + [0.3771837184425123,0.4219468022345483,0.7199184152447577], + [0.37610001286385814,0.4130307995247706,0.7170939691992023], + [0.37514802505380473,0.4040612609993941,0.7141193695725726], + [0.3743131319931234,0.3950389482828331,0.7109879652237746], + [0.3735806215098284,0.3859647438605754,0.7076929760731058], + [0.3729357864666503,0.3768396383521984,0.7042275578058994], + [0.37264166757849604,0.3722583500483685,0.7024287314570723], + [0.3718506155898596,0.3584414828587522,0.6967569581025654], + [0.37138124223736607,0.34917126878479027,0.6927370347192883], + [0.3709415155133733,0.33985591488818123,0.6885170337950512], + [0.37051738634484427,0.3304974124430785,0.6840888878885721], + [0.37009487130772695,0.3210981375964933,0.6794440539905685], + [0.36965987626565955,0.3116609876295197,0.6745734474341955], + [0.36919847837592484,0.3021893217650707,0.6694675433161452], + [0.3689535530659678,0.29744175492366276,0.6668232208982426], + [0.3681410147989972,0.2831590122118299,0.6585088880697231], + [0.36751707094367697,0.2736106331709098,0.6526341171161864], + [0.3668108554010799,0.26404857724525643,0.6464799165290824], + [0.36600853966739794,0.25448043878086224,0.6400336180336859], + [0.3650957984588681,0.24491536803550484,0.6332817352005559], + [0.3640569302208851,0.23536470386204195,0.6262101345195302], + [0.3628764356004103,0.2258414929328703,0.6188041741082302], + [0.36222809558295926,0.22109488427338303,0.6149711234609613], + [0.36002681809096376,0.20694122817889948,0.6029284543191687], + [0.3583248996661781,0.197602942459778,0.5944276851750107], + [0.35641381143126327,0.18837119869242164,0.5855320765920552], + [0.3542753496066376,0.17927413271618647,0.5762280966066872], + [0.3518924860887379,0.17034320478524959,0.5665028491121665], + [0.34924513554955644,0.16161477763045118,0.5563483747416378], + [0.3463150717579309,0.15312802296627787,0.5457599924248665], + [0.34473901574536375,0.1489882058982641,0.5403024592040654], + [0.33954168752669694,0.1370480189671817,0.5232879753508524], + [0.33566978565015315,0.12954074251271822,0.5114280721516895], + [0.33146154891145124,0.12244245263391232,0.4991827458843107], + [0.3269137124539796,0.1157873496841953,0.4865864649569746], + [0.3220288227606932,0.10960114111258401,0.4736849472572688], + [0.316816480890235,0.10389861387653518,0.46053414662739794], + [0.31129434479712365,0.0986847719340522,0.4471931371516162], + [0.30842444457210105,0.09625938534057774,0.44047194882050544], + [0.2994248396021477,0.08968225371675004,0.42021619665853854], + [0.2931459309698525,0.08585065688962071,0.40672178082365834], + [0.28669151388283165,0.08242987384848069,0.39331182532243375], + [0.2801063857697547,0.07938999480226153,0.38005028528138707], + [0.2734373934245081,0.07670280023749607,0.36699616136347685], + [0.26673233211995284,0.0743440180285462,0.3542027606624096], + [0.26003895187439957,0.0722947810433622,0.3417175669546984], + [0.256711916510839,0.07138010624208224,0.3356064898460009], + [0.24688226237959,0.06905363944920445,0.31786993834254956], + [0.2405081333229594,0.0678571038148556,0.3065705449367832], + [0.23433055727563878,0.0669355996616394,0.295740099298676], + [0.2283917709422868,0.06628997924139618,0.28541074411068496], + [0.22272706739121817,0.06593379067565194,0.275597146520537], + [0.21737845072382705,0.06585966123356204,0.2663420934966951], + [0.21237411048541005,0.06608502466175845,0.2576516509356954], + [0.21001214221188125,0.06630857391894718,0.2535289048041211], + [0.20352007949514977,0.06744417961242422,0.24205576625191821], + [0.19971571438603364,0.06859271055370472,0.23517094067076993], + [0.1960826032659409,0.07032122724242362,0.22874673279569585], + [0.19199449184606268,0.0731828306492733,0.22243385243433622], + [0.18739228342697645,0.07710209689958833,0.21618875376309582], + [0.18774482037046955,0.07725158846803931,0.21387448578597812], + [0.1931548636579131,0.07360681904011795,0.21542362939081539], + [0.19819343656336558,0.07097462525273879,0.21690975060032436], + [0.20290365333558247,0.06943524858045896,0.21833167885096033], + [0.20531725273301316,0.06891959226639757,0.21911516689288835], + [0.2133313859647627,0.06783014842602667,0.2220704321302429], + [0.21930503925136402,0.06746578636294004,0.22451023616807558], + [0.2257539681670791,0.06738213230014747,0.22728984778098055], + [0.23266299920501882,0.06755710438847978,0.23037617493752832], + [0.23999586188690308,0.06798502996477995,0.23373434258507808], + [0.247720929905011,0.06865333790948652,0.2373288009471749], + [0.2558213554748177,0.06953231029187984,0.24112190491594204], + [0.2642551220706094,0.07061659562299544,0.24507758869355967], + [0.272997015188973,0.07188355544616351,0.2491584709323293], + [0.2820174629736694,0.07331569321404097,0.25332800295084507], + [0.29128515387578635,0.0748990498474667,0.25755101595750435], + [0.3007727681291869,0.07661782433616476,0.2617929409781967], + [0.31045520848595526,0.07845687167618218,0.2660200572779356], + [0.3202998655799406,0.08041299473755484,0.2702032289303951], + [0.3302917447118144,0.08246763389003825,0.27430929404579435], + [0.3353335322445545,0.08353243411900396,0.2763253435679004], + [0.3506067824603248,0.08687555176033529,0.28218770540182386], + [0.36088752387578377,0.0892271943627452,0.28591050458531014], + [0.3712250843130934,0.09167999748026273,0.2894586539763317], + [0.38160247377467543,0.09423873126371218,0.2928110750626949], + [0.39199887556812907,0.09691583650296684,0.2959521200550908], + [0.40239692379737496,0.09972293031495055,0.2988667436973397], + [0.41277985630360303,0.1026734006932461,0.3015422643746897], + [0.42313214269556043,0.10578120994917611,0.3039675809469457], + [0.4334355841041439,0.1090642347484701,0.3061376792828915], + [0.44367358645071275,0.11253912421257944,0.3080497309546545], + [0.4538300508699989,0.11622183788331528,0.3097044124984492], + [0.46389102840284874,0.12012561256850712,0.31110343446582983], + [0.473841437035254,0.12426354237989065,0.31225470169927194], + [0.48366628618847957,0.1286467902201389,0.31317188565991266], + [0.49335504375145617,0.13328091630401023,0.31386561956734976], + [0.4981443546207415,0.13569380302451714,0.314135190862664], + [0.5122783510532176,0.14331656120063752,0.3146630922831542], + [0.5214965286322996,0.14871544765633712,0.3148076795453443], + [0.5305442048985645,0.15436183633886777,0.3148129978918713], + [0.5394173664919906,0.16024769309971934,0.31470295028655965], + [0.5481137003346762,0.1663630904279047,0.3145010299091471], + [0.5566322903496934,0.17269677158182117,0.31423043195101424], + [0.564973435290177,0.17923664950367169,0.3139136046337036], + [0.5731384575410787,0.18597036007065024,0.3135712686852], + [0.5811293276158656,0.19288548904692518,0.3132239939418394], + [0.5889486193554471,0.19997020971775276,0.31288922211590126], + [0.5965991810912237,0.207212956082026,0.3125852303112123], + [0.6040840169673274,0.21460331490206347,0.31232652641170694], + [0.6114062072731884,0.22213124697023234,0.3121288139643524], + [0.6185686525887719,0.2297879924917992,0.3120046383872893], + [0.6255741650043496,0.23756535071152696,0.3119669831491227], + [0.6290189201698587,0.24149689191922535,0.3119844719564572], + [0.6391243387840212,0.2534536546198314,0.3121968961206398], + [0.6456734938264543,0.2615520316161528,0.31248673753935263], + [0.652074172902773,0.269746505252367,0.3129056060581917], + [0.6583280801134499,0.2780321095766563,0.3134643447952643], + [0.6644363246987884,0.2864048361425618,0.31417223403606975], + [0.670399595476762,0.29486126309253047,0.3150381395687221], + [0.6762189792440975,0.30339762792450425,0.3160724937230589], + [0.6818945715094452,0.31201133280550686,0.3172838048924495], + [0.6874265643516962,0.32069970535138104,0.3186813762227769], + [0.6928154484676493,0.32945984647042675,0.3202754315314667], + [0.6980608153581771,0.3382897632604862,0.3220747885521809], + [0.7031624945881415,0.34718723719598,0.32408913679491225], + [0.7081205956842048,0.356149855233803,0.32632861885644465], + [0.7129346683977347,0.36517570519856757,0.3288027427038317], + [0.7176044490813385,0.3742627271068619,0.3315213862095893], + [0.7198852149054985,0.37882848839337313,0.332975552002454], + [0.7265112290022755,0.3926113126792577,0.3377325942005665], + [0.7307482075484517,0.401868526884681,0.3412449533046818], + [0.7348413359856494,0.4111778700451951,0.3450416947080907], + [0.7387914002459927,0.4205367299231533,0.34913260148542435], + [0.7425992159973317,0.42994254036133867,0.3535270924537459], + [0.7462661578916344,0.439392450449735,0.3582343914230064], + [0.7497942054717047,0.4488833348154881,0.3632633755836028], + [0.7531856636904657,0.45841199172949604,0.3686223664223477], + [0.7564434157714071,0.4679750143794846,0.37431909037543515], + [0.7595711110534006,0.4775687122205708,0.380360657784311], + [0.7625733355405261,0.48718906673415824,0.38675335037837993], + [0.7654549259333051,0.4968321290972723,0.3935025400011538], + [0.768221765997353,0.5064936237128791,0.40061257089416885], + [0.7708809196230247,0.516168926434691,0.40808667584648967], + [0.7734402182988989,0.5258533209345156,0.41592679539764366], + [0.774684947460632,0.5306974938477673,0.4199844035696376], + [0.7782934580763312,0.545230594884266,0.432706647838971], + [0.7806077474948377,0.5549133574489061,0.4416433242636464], + [0.7828622526444091,0.5645853311116688,0.45093985823706345], + [0.7850684501960684,0.5742417003617839,0.46059116206904965], + [0.7872390410818835,0.5838774374455721,0.47059039582133383], + [0.7893873776625194,0.5934875421745599,0.48092913815357724], + [0.7915283284347561,0.603066705931472,0.49159667021646397], + [0.7936755969866496,0.6126102933407219,0.5025816129126943], + [0.7958429237958377,0.6221137880845115,0.5138712409190979], + [0.7980444781513664,0.6315725822508955,0.5254510814483478], + [0.8002941538975398,0.6409821330674986,0.5373053518514104], + [0.8026053114611295,0.6503379374810385,0.5494169158460365], + [0.804990547908103,0.6596354502756416,0.5617674511054698], + [0.8074614045096935,0.6688700095398864,0.5743374637345958], + [0.8100280946652069,0.6780367267397182,0.5871062690808275], + [0.8113501401176333,0.6825930154624339,0.5935584890905076], + [0.8154814662727948,0.6961450550830809,0.6131522120932265], + [0.8183793116449822,0.705074381896351,0.626382454789333], + [0.8213947205565636,0.7139109141951604,0.6397176669767276], + [0.8245268129450285,0.7226461431208888,0.653131379154226], + [0.8277716072353446,0.7312702332407809,0.6665957020468297], + [0.8311216352909631,0.7397718464763862,0.6800812520363146], + [0.8345656905566583,0.7481379479992134,0.6935569764986385], + [0.8380912347613196,0.7563531486080863,0.7069856139021298], + [0.8416775076684515,0.7644010120098295,0.7203329938728462], + [0.8452981073195511,0.7722633860104472,0.7335636824054149], + [0.8489224556311764,0.7799202140765015,0.7466371929366437], + [0.8525190720770844,0.7873493613354844,0.7594994148789691], + [0.856040223147254,0.7945296360155061,0.7721061003767414], + [0.8594346370300241,0.8014392309950078,0.7843978875138392], + [0.8626560105112757,0.8080552380426153,0.796282666437655], + [0.8641834372394103,0.8112464422465354,0.8020461269686395], + [0.8683995469581863,0.8203087551218152,0.8184163896312899], + [0.8709384671729751,0.8258685788943851,0.8283849726114961], + [0.8733517136091627,0.8309671525127262,0.8374885100119709], + [0.875714587099614,0.8355302318472394,0.8457553751902708], + [0.8780229843664901,0.8395016561854007,0.8533064535245892], + [0.8801929331569581,0.8428522482477862,0.8602739992715663], + [0.8821154248940161,0.8455700725455935,0.8667376504623333], + [0.8836912714589804,0.8476489176151927,0.8727414710144156], + [0.8848513815990857,0.849084264228938,0.8782823528537247], + [0.8855471481195238,0.8498717428363158,0.8833620612117095], + [0.8857115512284565,0.8500218611585632,0.8857253899008712] ], + twilight_r: [ + [0.8857115512284565,0.8500218611585632,0.8857253899008712], + [0.8852589797263047,0.8495589281098921,0.8808841479402484], + [0.8843271305411354,0.8484474157205542,0.8755678522824297], + [0.8829516859544853,0.8466897027569927,0.8697961704819097], + [0.8811916987134195,0.8442906671771735,0.8635659516866988], + [0.8791324424079277,0.8412555488447591,0.8568557229103964], + [0.8768784845161469,0.8375923807118654,0.8496137354915025], + [0.8745379332026019,0.8333197294864546,0.8417192535806901], + [0.8721533197845432,0.8284805282370967,0.8330486712880828], + [0.8696913150261381,0.8231415885956916,0.8235047668317317], + [0.867053149070485,0.8173780404191124,0.813134196269114], + [0.8641834372394103,0.8112464422465354,0.8020461269686395], + [0.8610711702756552,0.8047851790981223,0.7903952966373629], + [0.857756629435049,0.7980196314271393,0.778295716672475], + [0.8542921961147046,0.7909719677709199,0.765838014779141], + [0.8507269702317879,0.7836645734238389,0.7530974636118285], + [0.847111955079651,0.7761188023604716,0.7401227576280706], + [0.843485292229337,0.7683566039987018,0.7269653699897204], + [0.8398783988412087,0.7603990719977968,0.7136714781112923], + [0.8363189884473793,0.7522654895287526,0.7002799902886496], + [0.8328327718577798,0.7439727181745988,0.6868223587464855], + [0.8294340781648147,0.7355371221572935,0.6733377200930191], + [0.8261354971058026,0.7269727551823826,0.659859001562165], + [0.8229463511042843,0.7182917733129006,0.6464164243818421], + [0.8198723065045529,0.7095047497878748,0.6330385704006711], + [0.8169157577505589,0.7006208301478398,0.6197526063725792], + [0.8140761104699334,0.6916479479148213,0.6065843782630862], + [0.8113501401176333,0.6825930154624339,0.5935584890905076], + [0.8087321917008969,0.6734621670219452,0.5806983480557674], + [0.8062146052692706,0.6642608958528229,0.5680262917864979], + [0.8037879253107763,0.6549942654947263,0.5555635086708381], + [0.8014412429256005,0.6456670345921877,0.5433300863249918], + [0.7991624518501963,0.6362837937202919,0.5313449594256143], + [0.7980444781513664,0.6315725822508955,0.5254510814483478], + [0.7947558597265404,0.617367344002207,0.5081892121310299], + [0.7926003430423745,0.6078432208703702,0.4970502062153201], + [0.7904577684772788,0.5982813427706246,0.48622257801969754], + [0.7893873776625194,0.5934875421745599,0.48092913815357724], + [0.7861573713233296,0.5790624629815756,0.465547782819184], + [0.7839706083641448,0.5694157832671042,0.4557215474289206], + [0.7817418047898184,0.5597509805259486,0.44624687186865436], + [0.7806077474948377,0.5549133574489061,0.4416433242636464], + [0.7771103295521099,0.5403867491056124,0.4283745037125848], + [0.774684947460632,0.5306974938477673,0.4199844035696376], + [0.7721725722960555,0.5210102658711383,0.4119608998712287], + [0.7708809196230247,0.516168926434691,0.40808667584648967], + [0.7668522895064389,0.5016608471009063,0.39701221751773474], + [0.7640288560928866,0.49200802533379656,0.39008308392311997], + [0.7610876378057071,0.48237579130289127,0.3835127572385229], + [0.7595711110534006,0.4775687122205708,0.380360657784311], + [0.7548310506695954,0.46318942799460555,0.3714280448394211], + [0.7515068504589166,0.45364314496866825,0.36590112443835765], + [0.7480473927555956,0.44413297780351974,0.36070813602540136], + [0.7462661578916344,0.439392450449735,0.3582343914230064], + [0.7407130161950609,0.4252339389526239,0.35129130890802607], + [0.7368342217358587,0.4158512585029011,0.347049785207584], + [0.7328127050626875,0.4065168468778026,0.3431071517341082], + [0.7307482075484517,0.401868526884681,0.3412449533046818], + [0.7243386564778159,0.38800301593162145,0.3360799596569183], + [0.7198852149054985,0.37882848839337313,0.332975552002454], + [0.7152876061484729,0.3697117022522345,0.3301308728723546], + [0.7129346683977347,0.36517570519856757,0.3288027427038317], + [0.7056595112261009,0.3516605297812094,0.32518014084085567], + [0.700629624772421,0.34273019305341756,0.32305449047765694], + [0.6954560834689112,0.33386622163232865,0.3211488430698579], + [0.6901389321505248,0.32507091815606004,0.319453323328983], + [0.6874265643516962,0.32069970535138104,0.3186813762227769], + [0.6790747402815734,0.30769497879760166,0.31665545668946665], + [0.6733272556481733,0.29911962764489264,0.3155337232398221], + [0.6674360376636913,0.29062280081258873,0.31458483752056837], + [0.6614003753260178,0.28220778870555907,0.3137991292649849], + [0.6552193260932713,0.2738782665241015,0.3131666792687211], + [0.6488923016945825,0.2656375533620908,0.3126794181957019], + [0.642417577481186,0.257490519876798,0.31232631707560987], + [0.6391243387840212,0.2534536546198314,0.3121968961206398], + [0.6290189201698587,0.24149689191922535,0.3119844719564572], + [0.6220907982108261,0.2336621873300741,0.3119738327362739], + [0.6150072323639137,0.22594402043981826,0.3120568068576574], + [0.6077652399481865,0.21835070166659282,0.312219032918702], + [0.6003621301041158,0.21089030138947745,0.3124493441041469], + [0.5927948053652026,0.20357251410079796,0.3127323483930494], + [0.5850602439646688,0.19640737049066315,0.3130540116373273], + [0.5811293276158656,0.19288548904692518,0.3132239939418394], + [0.5690778478401143,0.18258004462335425,0.3137444095679653], + [0.5608249903911717,0.17594170887918095,0.31407639883970623], + [0.5523952157271191,0.16950338809328983,0.3143729155461537], + [0.5437877131360856,0.16327738551419116,0.31461204226295625], + [0.5350027976174474,0.15727540775107324,0.3147708520739653], + [0.5260418962547748,0.15150818660835483,0.31482653406646727], + [0.5169084880054446,0.14598463068714407,0.3147540759228004], + [0.5122783510532176,0.14331656120063752,0.3146630922831542], + [0.4981443546207415,0.13569380302451714,0.314135190862664], + [0.48852847371852987,0.13093210934893723,0.31354553695453014], + [0.47877034239726296,0.12642401401409453,0.3127417273582196], + [0.46888111384598413,0.12216445576414045,0.31170911458932665], + [0.45887288947308297,0.11814571137706886,0.3104363697903881], + [0.4487629917317482,0.1143535557462255,0.30890905921943196], + [0.4385637818793154,0.11077667828375456,0.30712600062348083], + [0.4334355841041439,0.1090642347484701,0.3061376792828915], + [0.41796105205173684,0.10420644885760968,0.3027865203963184], + [0.4075912039268871,0.10117945586419633,0.300235195077286], + [0.39719876876325577,0.09830232096827862,0.2974385647628578], + [0.3867993907954417,0.09556181960083443,0.29440901248173756], + [0.3764103053221462,0.09294519809377791,0.2911602415731392], + [0.36605031412464006,0.0904406854276979,0.2877077458811747], + [0.35573889947341125,0.08803897435024335,0.2840695897279818], + [0.3506067824603248,0.08687555176033529,0.28218770540182386], + [0.3353335322445545,0.08353243411900396,0.2763253435679004], + [0.3252788886040126,0.08142839007654609,0.27226772884656186], + [0.3153587000920581,0.07942099731524319,0.2681190407694196], + [0.30559226007249934,0.07752196310753731,0.2639100669211966], + [0.2960004726065818,0.07574533600095842,0.25967245030364566], + [0.28662309235899847,0.07408846082680887,0.2554347867371703], + [0.277471508091428,0.07258296989925478,0.2512349399594277], + [0.272997015188973,0.07188355544616351,0.2491584709323293], + [0.25999463887892144,0.07005385560386188,0.24308218808684579], + [0.25172899728289466,0.0690646308260355,0.23920260612763083], + [0.2438114972024792,0.06828985152901187,0.23550427698321885], + [0.23627495835774248,0.06774359820987802,0.23202360805926608], + [0.2291562027859284,0.06743473087115257,0.22879681433956656], + [0.22247308588973624,0.06738821405309284,0.22585960379408354], + [0.21625279838647882,0.06761633027051639,0.22324568672294431], + [0.2133313859647627,0.06783014842602667,0.2220704321302429], + [0.20531725273301316,0.06891959226639757,0.21911516689288835], + [0.20058760685133747,0.07006457614998421,0.21762721310371608], + [0.19571853588267552,0.07215778103960274,0.21617499187076789], + [0.19049578401722037,0.07531127841678764,0.2146562337112265], + [0.18488035509396164,0.07942573027972388,0.21307651648984993], + [0.18975853639094634,0.07501986186214377,0.2193005075652994], + [0.19410351363791453,0.07160830485689157,0.22558727307410353], + [0.19794834061899208,0.06931406607166066,0.23194647381302336], + [0.2015613376412984,0.06798327102620025,0.23852974228695395], + [0.20352007949514977,0.06744417961242422,0.24205576625191821], + [0.21001214221188125,0.06630857391894718,0.2535289048041211], + [0.21482843531473683,0.06594038561377849,0.26191675992376573], + [0.22001251100779617,0.0658579189189076,0.2709027999432586], + [0.22552164337737857,0.0660781731193956,0.28043398847505197], + [0.23132955273021344,0.06657618693909059,0.29051361067988485], + [0.23739062429054825,0.06736588805055552,0.3010892218406587], + [0.24367372557466271,0.06841985515092269,0.3121652405088837], + [0.2501284530619938,0.06975820642910699,0.32368100685760637], + [0.256711916510839,0.07138010624208224,0.3356064898460009], + [0.26338121807151404,0.07328165793989708,0.34791888996380105], + [0.2700863774911405,0.07548367558427554,0.36056376228111864], + [0.2767793961581559,0.07800394103378822,0.37349382846504675], + [0.28341239797185225,0.08086415336549937,0.38665868550105914], + [0.2899379244517661,0.08409078829085731,0.40000214725256295], + [0.2963100038890529,0.08771325096046395,0.41346259134143476], + [0.2994248396021477,0.08968225371675004,0.42021619665853854], + [0.30842444457210105,0.09625938534057774,0.44047194882050544], + [0.3140927841475553,0.10123077676403242,0.45388335612058467], + [0.31946262395497965,0.1066887988239266,0.46713728801395243], + [0.32451307931207785,0.11263459791730848,0.48017007211645196], + [0.3292300520323141,0.11905764321981127,0.49292595612342666], + [0.33360804901486,0.1259381830100592,0.505351647966549], + [0.3376473209067111,0.13324562282438077,0.5174080757397947], + [0.34135411074506483,0.1409427920655632,0.5290650094033675], + [0.34473901574536375,0.1489882058982641,0.5403024592040654], + [0.3478165323877778,0.1573386351115298,0.5511085345270326], + [0.3506030444193101,0.1659512998472086,0.5614796470399323], + [0.35311574421123737,0.17478570377561287,0.5714187152355529], + [0.3553741530690672,0.18380392577704466,0.580931914318328], + [0.35739663292915563,0.1929720819784246,0.5900301125106313], + [0.35920088560930186,0.20226037920758122,0.5987265295935138], + [0.36002681809096376,0.20694122817889948,0.6029284543191687], + [0.36222809558295926,0.22109488427338303,0.6149711234609613], + [0.36348537610385145,0.2305987621839642,0.6225498862239288], + [0.3645930889012501,0.24013747024823828,0.629786801550261], + [0.3655669837353898,0.24969683475296395,0.6366967518748858], + [0.3664224325155063,0.25926481158628106,0.6432940914076554], + [0.36717513650699446,0.26883085667326956,0.6495927229789225], + [0.3678384369653108,0.2783869718129776,0.655605668384537], + [0.36842655638020444,0.2879259643777846,0.661345269109446], + [0.3689535530659678,0.29744175492366276,0.6668232208982426], + [0.3694333459127623,0.3069292355186234,0.6720505284912062], + [0.3698798032902536,0.31638410101153364,0.6770375543809057], + [0.37030682071842685,0.32580269697872455,0.6817941168448668], + [0.3707283327942267,0.33518193808489577,0.6863294816960677], + [0.37115856636209105,0.3445191141023017,0.6906525358646499], + [0.3716113323440048,0.3538121372967869,0.6947714991938089], + [0.3718506155898596,0.3584414828587522,0.6967569581025654], + [0.37264166757849604,0.3722583500483685,0.7024287314570723], + [0.37324816143326384,0.38140848555753937,0.7059820097480604], + [0.3739349933047578,0.3905082752937583,0.7093613429347845], + [0.3747168601930223,0.3995566498711684,0.7125736851650046], + [0.375608469194424,0.40855267638072096,0.7156258509158755], + [0.37662448930806297,0.41749553747893614,0.7185245473617611], + [0.3777794975351373,0.4263845142616835,0.7212763999353023], + [0.3790878928311076,0.43521897612544935,0.7238879869132313], + [0.3805638069656562,0.4439983720863372,0.7263658704513531], + [0.38222094988570376,0.45272225034283325,0.7287165614400378], + [0.38407269378943537,0.46139018782416635,0.7309466543290268], + [0.386131841788921,0.4700018340988123,0.7330627749243106], + [0.3884105330084243,0.47855691131792805,0.7350715764115726], + [0.390920175719949,0.4870552025122304,0.7369797713388125], + [0.39367135736822567,0.4954965577745118,0.738794102296364], + [0.3951405880820763,0.4996958532637776,0.7396682021171571], + [0.39993606933454834,0.5122081814321852,0.7421684457131799], + [0.40346600333905397,0.5204784765384003,0.7437421522356709], + [0.4072701869421907,0.5286918801105741,0.7452494263758127], + [0.4113541469730457,0.5368485776500593,0.7466971285506578], + [0.4157223260454232,0.544948827153504,0.7480920445900052], + [0.42037822361396326,0.5529928715810817,0.7494412559451894], + [0.42532423665011354,0.560981049599503,0.7507516498900512], + [0.4305617907305757,0.5689137457245718,0.752030080993127], + [0.4360913895835637,0.5767913799818608,0.7532834105961016], + [0.441912717666964,0.5846144110017557,0.7545183888441067], + [0.4480247093358917,0.5923833145214658,0.7557417647410792], + [0.45442563977552913,0.6000985950385866,0.7569601366060649], + [0.4611132664702388,0.607760777169989,0.7581798643680714], + [0.46808490970531597,0.6153702869579029,0.7594078989109274], + [0.47533752394906287,0.6229275728383581,0.7606508557181775], + [0.47906816236197386,0.6266867625186013,0.7612800037566242], + [0.4906722493856122,0.6378870485884708,0.7632081276316384], + [0.4987473366135607,0.6452898684900934,0.7645357873418008], + [0.5070896957645166,0.6526417240314645,0.7659044566083585], + [0.5156955988596057,0.65994260812898,0.7673219148959617], + [0.5245615147059358,0.6671924299614223,0.7687954171423095], + [0.533683891477284,0.6743909370521273,0.7703325054879735], + [0.5430593242401823,0.6815376725306588,0.7719407969783508], + [0.5526845058934713,0.6886319451516638,0.7736279426902245], + [0.5625551535721934,0.6956727838162965,0.7754035914230984], + [0.5726668948158774,0.7026589535425779,0.7772770268091199], + [0.5830148703693241,0.7095888767699747,0.7792578182047659], + [0.5935933569683722,0.7164606049658685,0.781355882376401], + [0.6043943420027486,0.7232718614323369,0.7835829559353559], + [0.6154084641177048,0.7300199523273969,0.7859502270675048], + [0.6266240202260459,0.7367017540369944,0.7884690131633456], + [0.6323027138710603,0.740016721601314,0.7897889276264043], + [0.6495957300425348,0.7498520122194177,0.7940067402149911], + [0.6613112930078745,0.7563120270871903,0.7970456043491897], + [0.6731442255942621,0.7626890873389048,0.8002762854580953], + [0.6850644615439593,0.7689774029354699,0.8037020626717691], + [0.6970365443886174,0.7751705000806606,0.8073233538006345], + [0.709020781345393,0.7812608871607091,0.8111359185511793], + [0.7209728066553678,0.7872399592345264,0.8151307392087926], + [0.7328454364552346,0.7930974646884407,0.8192926338423038], + [0.7445924777189017,0.7988204771958325,0.8235986758615652], + [0.7561644358438198,0.8043940873347794,0.8280213899472], + [0.7675110850441786,0.8098007598713145,0.8325281663805967], + [0.7785789200822759,0.8150208937874255,0.8370834463093898], + [0.7893144556460892,0.8200321318870201,0.8416486380471222], + [0.79967075421268,0.8248078181208093,0.8461821002957853], + [0.8095999819094809,0.8293189667350546,0.8506444160105037], + [0.8143898212114309,0.8314655869419785,0.8528375906214702], + [0.8279689431601354,0.837426007513952,0.8592239945130679], + [0.8363403180919118,0.8409479651895194,0.8632852800107016], + [0.8441261828674842,0.8440648271103739,0.8671697332269007], + [0.8513371457085719,0.8467273579611647,0.8708608165735044], + [0.8579825924567037,0.8488893481028184,0.8743403855344628], + [0.86408985081464,0.8505039116750779,0.8775792578489263], + [0.8697047485350982,0.8515240300479789,0.8805388339000336], + [0.8748534750857597,0.8519152612302319,0.8831692696761383], + [0.8795410528270573,0.8516567540749572,0.8854143767924102], + [0.8837852019553906,0.8507294054031063,0.8872322209694989], + [0.8857501584075443,0.8500092494306783,0.8879736506427196] ], + twilight_shifted: [ + [0.18739228342697645,0.07710209689958833,0.21618875376309582], + [0.19199449184606268,0.0731828306492733,0.22243385243433622], + [0.1960826032659409,0.07032122724242362,0.22874673279569585], + [0.19971571438603364,0.06859271055370472,0.23517094067076993], + [0.20352007949514977,0.06744417961242422,0.24205576625191821], + [0.2077442377448806,0.06661453200418091,0.24954644291943817], + [0.21237411048541005,0.06608502466175845,0.2576516509356954], + [0.21737845072382705,0.06585966123356204,0.2663420934966951], + [0.22272706739121817,0.06593379067565194,0.275597146520537], + [0.2283917709422868,0.06628997924139618,0.28541074411068496], + [0.23433055727563878,0.0669355996616394,0.295740099298676], + [0.2405081333229594,0.0678571038148556,0.3065705449367832], + [0.24688226237959,0.06905363944920445,0.31786993834254956], + [0.25340685873736807,0.07053358292685183,0.3295945757321303], + [0.26003895187439957,0.0722947810433622,0.3417175669546984], + [0.26673233211995284,0.0743440180285462,0.3542027606624096], + [0.2734373934245081,0.07670280023749607,0.36699616136347685], + [0.2801063857697547,0.07938999480226153,0.38005028528138707], + [0.28669151388283165,0.08242987384848069,0.39331182532243375], + [0.2931459309698525,0.08585065688962071,0.40672178082365834], + [0.2994248396021477,0.08968225371675004,0.42021619665853854], + [0.30548675819945936,0.09395276484082374,0.4337284999936111], + [0.31129434479712365,0.0986847719340522,0.4471931371516162], + [0.316816480890235,0.10389861387653518,0.46053414662739794], + [0.3220288227606932,0.10960114111258401,0.4736849472572688], + [0.3269137124539796,0.1157873496841953,0.4865864649569746], + [0.33146154891145124,0.12244245263391232,0.4991827458843107], + [0.33566978565015315,0.12954074251271822,0.5114280721516895], + [0.33954168752669694,0.1370480189671817,0.5232879753508524], + [0.34308600291572294,0.14492465359918028,0.534737042820671], + [0.3463150717579309,0.15312802296627787,0.5457599924248665], + [0.34924513554955644,0.16161477763045118,0.5563483747416378], + [0.3518924860887379,0.17034320478524959,0.5665028491121665], + [0.35311574421123737,0.17478570377561287,0.5714187152355529], + [0.35641381143126327,0.18837119869242164,0.5855320765920552], + [0.3583248996661781,0.197602942459778,0.5944276851750107], + [0.36002681809096376,0.20694122817889948,0.6029284543191687], + [0.36080493826624654,0.21164251793458128,0.6070353217206471], + [0.3628764356004103,0.2258414929328703,0.6188041741082302], + [0.3640569302208851,0.23536470386204195,0.6262101345195302], + [0.3650957984588681,0.24491536803550484,0.6332817352005559], + [0.3655669837353898,0.24969683475296395,0.6366967518748858], + [0.3668108554010799,0.26404857724525643,0.6464799165290824], + [0.36751707094367697,0.2736106331709098,0.6526341171161864], + [0.3681410147989972,0.2831590122118299,0.6585088880697231], + [0.36842655638020444,0.2879259643777846,0.661345269109446], + [0.36919847837592484,0.3021893217650707,0.6694675433161452], + [0.36965987626565955,0.3116609876295197,0.6745734474341955], + [0.37009487130772695,0.3210981375964933,0.6794440539905685], + [0.37030682071842685,0.32580269697872455,0.6817941168448668], + [0.3709415155133733,0.33985591488818123,0.6885170337950512], + [0.37138124223736607,0.34917126878479027,0.6927370347192883], + [0.3718506155898596,0.3584414828587522,0.6967569581025654], + [0.3721008970244382,0.3630590973698238,0.6986943461507372], + [0.3729357864666503,0.3768396383521984,0.7042275578058994], + [0.3735806215098284,0.3859647438605754,0.7076929760731058], + [0.3743131319931234,0.3950389482828331,0.7109879652237746], + [0.3747168601930223,0.3995566498711684,0.7125736851650046], + [0.37610001286385814,0.4130307995247706,0.7170939691992023], + [0.3771837184425123,0.4219468022345483,0.7199184152447577], + [0.378413635091359,0.43080859411413064,0.7225993199306104], + [0.3790878928311076,0.43521897612544935,0.7238879869132313], + [0.3813688793045416,0.4483672766927786,0.7275567131714135], + [0.3831216808440275,0.457063235814072,0.7298462679135326], + [0.3850755679365139,0.46570306719930193,0.732018540336905], + [0.3872430145933025,0.4742864593363539,0.7340801678785439], + [0.3884105330084243,0.47855691131792805,0.7350715764115726], + [0.39226494876209317,0.4912830033289926,0.7378982478447508], + [0.3951405880820763,0.4996958532637776,0.7396682021171571], + [0.3982719152586337,0.5080516653927614,0.7413545091809972], + [0.40166714010896104,0.5163504496968876,0.7429640345324835], + [0.4053334378930318,0.5245922817498312,0.7445036583670813], + [0.4092768899914751,0.5327773017713032,0.7459803063570782], + [0.4135024574331473,0.5409057477109848,0.7474007329754309], + [0.4157223260454232,0.544948827153504,0.7480920445900052], + [0.4228148567577266,0.5569939212699658,0.7501008698822764], + [0.42790652284925834,0.5649543060909209,0.7513944352191484], + [0.43329008867358393,0.5728594162560667,0.7526594653256667], + [0.43896563958048396,0.5807096924109849,0.7539027620828594], + [0.4449324685421538,0.5885055998308617,0.7551311041857901], + [0.45118918687617743,0.5962476205135354,0.7563512064324664], + [0.45773377230160567,0.6039363004658646,0.7575693690185916], + [0.4611132664702388,0.607760777169989,0.7581798643680714], + [0.4716762951887709,0.6191554324288464,0.7600270922788305], + [0.47906816236197386,0.6266867625186013,0.7612800037566242], + [0.4867359599430568,0.6341664625110051,0.7625578008592404], + [0.4946761847863938,0.6415948411950443,0.7638671900213091], + [0.5028853540415561,0.6489721673409526,0.7652144671817491], + [0.5113599254160193,0.6562985398183186,0.7666066378064533], + [0.5200962739223556,0.6635739143403039,0.768051194033441], + [0.5245615147059358,0.6671924299614223,0.7687954171423095], + [0.5383401557517628,0.677970811290954,0.7711273443905772], + [0.5478409815301863,0.6850914221850988,0.7727738647344087], + [0.5575894041960517,0.6921591145825405,0.7745041337932782], + [0.5675811785386197,0.6991727930264627,0.776327485342753], + [0.5778116438998202,0.7061310615715398,0.7782534512102552], + [0.588275797805555,0.7130321464645814,0.7802914140563652], + [0.5989665814482068,0.7198739489224673,0.7824525989934664], + [0.6043943420027486,0.7232718614323369,0.7835829559353559], + [0.6209919306481755,0.733369347989232,0.7871899462469658], + [0.6323027138710603,0.740016721601314,0.7897889276264043], + [0.6437910831099849,0.7465923800833657,0.7925565320130605], + [0.6554369232645472,0.7530920875676843,0.7955027112903105], + [0.6672147980375281,0.7595112803730375,0.7986367465453776], + [0.6790955449988215,0.765844721313959,0.8019646617300199], + [0.691046410093091,0.7720862946067809,0.8054884169067907], + [0.6970365443886174,0.7751705000806606,0.8073233538006345], + [0.7150040307625213,0.7842648709158119,0.8131111655994991], + [0.726921775128297,0.7901846863592763,0.8171921746672638], + [0.7387377170049494,0.7959766573503101,0.8214292278043301], + [0.750403467654067,0.8016269900896532,0.8257973785108242], + [0.7618690793798029,0.8071194938764749,0.830266486168872], + [0.7730841659017094,0.8124352473546601,0.8348017295057968], + [0.7839910104276492,0.8175542640053343,0.8393674746403673], + [0.7893144556460892,0.8200321318870201,0.8416486380471222], + [0.8046916442981458,0.8270983878056066,0.8484244929697402], + [0.8143898212114309,0.8314655869419785,0.8528375906214702], + [0.8235742968025285,0.8355248776479544,0.8571319132851495], + [0.8322270571293441,0.8392349062775448,0.8612756350042788], + [0.8403042080595778,0.8425605950855084,0.865250882410458], + [0.8478071070257792,0.8454546229209523,0.8690403678369444], + [0.8547259318925698,0.8478748812467282,0.8726282980930582], + [0.8579825924567037,0.8488893481028184,0.8743403855344628], + [0.8669601550533358,0.8510896085314068,0.8790976697717334], + [0.8723313408512408,0.8518016547808089,0.8818970435500162], + [0.8772488085896548,0.8518702833887027,0.8843412038131143], + [0.8817223105928579,0.8512759407765347,0.8863805692551482], + [0.8857501584075443,0.8500092494306783,0.8879736506427196], + [0.8855471481195238,0.8498717428363158,0.8833620612117095], + [0.8848513815990857,0.849084264228938,0.8782823528537247], + [0.8836912714589804,0.8476489176151927,0.8727414710144156], + [0.8821154248940161,0.8455700725455935,0.8667376504623333], + [0.8811916987134195,0.8442906671771735,0.8635659516866988], + [0.8780229843664901,0.8395016561854007,0.8533064535245892], + [0.875714587099614,0.8355302318472394,0.8457553751902708], + [0.8733517136091627,0.8309671525127262,0.8374885100119709], + [0.8709384671729751,0.8258685788943851,0.8283849726114961], + [0.8683995469581863,0.8203087551218152,0.8184163896312899], + [0.8656493432560532,0.8143554406751491,0.8076697232416455], + [0.8626560105112757,0.8080552380426153,0.796282666437655], + [0.8594346370300241,0.8014392309950078,0.7843978875138392], + [0.856040223147254,0.7945296360155061,0.7721061003767414], + [0.8525190720770844,0.7873493613354844,0.7594994148789691], + [0.8489224556311764,0.7799202140765015,0.7466371929366437], + [0.8452981073195511,0.7722633860104472,0.7335636824054149], + [0.8416775076684515,0.7644010120098295,0.7203329938728462], + [0.8380912347613196,0.7563531486080863,0.7069856139021298], + [0.8345656905566583,0.7481379479992134,0.6935569764986385], + [0.8328327718577798,0.7439727181745988,0.6868223587464855], + [0.8277716072353446,0.7312702332407809,0.6665957020468297], + [0.8245268129450285,0.7226461431208888,0.653131379154226], + [0.8213947205565636,0.7139109141951604,0.6397176669767276], + [0.8183793116449822,0.705074381896351,0.626382454789333], + [0.8154814662727948,0.6961450550830809,0.6131522120932265], + [0.8126992203988149,0.6871303371461888,0.600052148204351], + [0.8100280946652069,0.6780367267397182,0.5871062690808275], + [0.8074614045096935,0.6688700095398864,0.5743374637345958], + [0.804990547908103,0.6596354502756416,0.5617674511054698], + [0.8026053114611295,0.6503379374810385,0.5494169158460365], + [0.8002941538975398,0.6409821330674986,0.5373053518514104], + [0.7980444781513664,0.6315725822508955,0.5254510814483478], + [0.7958429237958377,0.6221137880845115,0.5138712409190979], + [0.7936755969866496,0.6126102933407219,0.5025816129126943], + [0.7915283284347561,0.603066705931472,0.49159667021646397], + [0.7904577684772788,0.5982813427706246,0.48622257801969754], + [0.7872390410818835,0.5838774374455721,0.47059039582133383], + [0.7850684501960684,0.5742417003617839,0.46059116206904965], + [0.7828622526444091,0.5645853311116688,0.45093985823706345], + [0.7806077474948377,0.5549133574489061,0.4416433242636464], + [0.7782934580763312,0.545230594884266,0.432706647838971], + [0.775907907306857,0.5355421788246119,0.42413367909988375], + [0.7734402182988989,0.5258533209345156,0.41592679539764366], + [0.7708809196230247,0.516168926434691,0.40808667584648967], + [0.768221765997353,0.5064936237128791,0.40061257089416885], + [0.7654549259333051,0.4968321290972723,0.3935025400011538], + [0.7625733355405261,0.48718906673415824,0.38675335037837993], + [0.7595711110534006,0.4775687122205708,0.380360657784311], + [0.7564434157714071,0.4679750143794846,0.37431909037543515], + [0.7531856636904657,0.45841199172949604,0.3686223664223477], + [0.7497942054717047,0.4488833348154881,0.3632633755836028], + [0.7480473927555956,0.44413297780351974,0.36070813602540136], + [0.7425992159973317,0.42994254036133867,0.3535270924537459], + [0.7387914002459927,0.4205367299231533,0.34913260148542435], + [0.7348413359856494,0.4111778700451951,0.3450416947080907], + [0.7307482075484517,0.401868526884681,0.3412449533046818], + [0.7265112290022755,0.3926113126792577,0.3377325942005665], + [0.7221299918421461,0.3834086450896306,0.33449469983585844], + [0.7176044490813385,0.3742627271068619,0.3315213862095893], + [0.7129346683977347,0.36517570519856757,0.3288027427038317], + [0.7081205956842048,0.356149855233803,0.32632861885644465], + [0.7031624945881415,0.34718723719598,0.32408913679491225], + [0.6980608153581771,0.3382897632604862,0.3220747885521809], + [0.6928154484676493,0.32945984647042675,0.3202754315314667], + [0.6874265643516962,0.32069970535138104,0.3186813762227769], + [0.6818945715094452,0.31201133280550686,0.3172838048924495], + [0.6762189792440975,0.30339762792450425,0.3160724937230589], + [0.6733272556481733,0.29911962764489264,0.3155337232398221], + [0.6644363246987884,0.2864048361425618,0.31417223403606975], + [0.6583280801134499,0.2780321095766563,0.3134643447952643], + [0.652074172902773,0.269746505252367,0.3129056060581917], + [0.6456734938264543,0.2615520316161528,0.31248673753935263], + [0.6391243387840212,0.2534536546198314,0.3121968961206398], + [0.6324253485421027,0.24545598775548677,0.3120276597462445], + [0.6255741650043496,0.23756535071152696,0.3119669831491227], + [0.6185686525887719,0.2297879924917992,0.3120046383872893], + [0.6114062072731884,0.22213124697023234,0.3121288139643524], + [0.6040840169673274,0.21460331490206347,0.31232652641170694], + [0.5965991810912237,0.207212956082026,0.3125852303112123], + [0.5889486193554471,0.19997020971775276,0.31288922211590126], + [0.5811293276158656,0.19288548904692518,0.3132239939418394], + [0.5731384575410787,0.18597036007065024,0.3135712686852], + [0.564973435290177,0.17923664950367169,0.3139136046337036], + [0.5608249903911717,0.17594170887918095,0.31407639883970623], + [0.5481137003346762,0.1663630904279047,0.3145010299091471], + [0.5394173664919906,0.16024769309971934,0.31470295028655965], + [0.5305442048985645,0.15436183633886777,0.3148129978918713], + [0.5214965286322996,0.14871544765633712,0.3148076795453443], + [0.5122783510532176,0.14331656120063752,0.3146630922831542], + [0.5028952497497061,0.13817086581280427,0.3143566215383367], + [0.49335504375145617,0.13328091630401023,0.31386561956734976], + [0.48366628618847957,0.1286467902201389,0.31317188565991266], + [0.473841437035254,0.12426354237989065,0.31225470169927194], + [0.46389102840284874,0.12012561256850712,0.31110343446582983], + [0.4538300508699989,0.11622183788331528,0.3097044124984492], + [0.44367358645071275,0.11253912421257944,0.3080497309546545], + [0.4334355841041439,0.1090642347484701,0.3061376792828915], + [0.42313214269556043,0.10578120994917611,0.3039675809469457], + [0.41277985630360303,0.1026734006932461,0.3015422643746897], + [0.4075912039268871,0.10117945586419633,0.300235195077286], + [0.39199887556812907,0.09691583650296684,0.2959521200550908], + [0.38160247377467543,0.09423873126371218,0.2928110750626949], + [0.3712250843130934,0.09167999748026273,0.2894586539763317], + [0.36088752387578377,0.0892271943627452,0.28591050458531014], + [0.3506067824603248,0.08687555176033529,0.28218770540182386], + [0.34040164359597463,0.08462223619170267,0.27831254595259397], + [0.3302917447118144,0.08246763389003825,0.27430929404579435], + [0.3202998655799406,0.08041299473755484,0.2702032289303951], + [0.31045520848595526,0.07845687167618218,0.2660200572779356], + [0.3007727681291869,0.07661782433616476,0.2617929409781967], + [0.29128515387578635,0.0748990498474667,0.25755101595750435], + [0.2820174629736694,0.07331569321404097,0.25332800295084507], + [0.272997015188973,0.07188355544616351,0.2491584709323293], + [0.2642551220706094,0.07061659562299544,0.24507758869355967], + [0.2558213554748177,0.06953231029187984,0.24112190491594204], + [0.25172899728289466,0.0690646308260355,0.23920260612763083], + [0.23999586188690308,0.06798502996477995,0.23373434258507808], + [0.23266299920501882,0.06755710438847978,0.23037617493752832], + [0.2257539681670791,0.06738213230014747,0.22728984778098055], + [0.21930503925136402,0.06746578636294004,0.22451023616807558], + [0.2133313859647627,0.06783014842602667,0.2220704321302429], + [0.20785704662965598,0.06848439879702528,0.22000133917653536], + [0.20290365333558247,0.06943524858045896,0.21833167885096033], + [0.19819343656336558,0.07097462525273879,0.21690975060032436], + [0.1931548636579131,0.07360681904011795,0.21542362939081539], + [0.18774482037046955,0.07725158846803931,0.21387448578597812], + [0.18488035509396164,0.07942573027972388,0.21307651648984993] ], + twilight_shifted_r: [ + [0.18488035509396164,0.07942573027972388,0.21307651648984993], + [0.19049578401722037,0.07531127841678764,0.2146562337112265], + [0.19571853588267552,0.07215778103960274,0.21617499187076789], + [0.20058760685133747,0.07006457614998421,0.21762721310371608], + [0.20531725273301316,0.06891959226639757,0.21911516689288835], + [0.21052882914958676,0.06812195249816172,0.22098759107715404], + [0.21625279838647882,0.06761633027051639,0.22324568672294431], + [0.22247308588973624,0.06738821405309284,0.22585960379408354], + [0.2291562027859284,0.06743473087115257,0.22879681433956656], + [0.23627495835774248,0.06774359820987802,0.23202360805926608], + [0.2438114972024792,0.06828985152901187,0.23550427698321885], + [0.25172899728289466,0.0690646308260355,0.23920260612763083], + [0.25999463887892144,0.07005385560386188,0.24308218808684579], + [0.2685909594817286,0.07122671627792246,0.24710443563450618], + [0.277471508091428,0.07258296989925478,0.2512349399594277], + [0.28662309235899847,0.07408846082680887,0.2554347867371703], + [0.2960004726065818,0.07574533600095842,0.25967245030364566], + [0.30559226007249934,0.07752196310753731,0.2639100669211966], + [0.3153587000920581,0.07942099731524319,0.2681190407694196], + [0.3252788886040126,0.08142839007654609,0.27226772884656186], + [0.3353335322445545,0.08353243411900396,0.2763253435679004], + [0.345493557138718,0.08573665496512634,0.28026769921081435], + [0.35573889947341125,0.08803897435024335,0.2840695897279818], + [0.36605031412464006,0.0904406854276979,0.2877077458811747], + [0.3764103053221462,0.09294519809377791,0.2911602415731392], + [0.3867993907954417,0.09556181960083443,0.29440901248173756], + [0.39719876876325577,0.09830232096827862,0.2974385647628578], + [0.4075912039268871,0.10117945586419633,0.300235195077286], + [0.41796105205173684,0.10420644885760968,0.3027865203963184], + [0.4282910131578975,0.1073997763055258,0.30508479060294547], + [0.4385637818793154,0.11077667828375456,0.30712600062348083], + [0.4487629917317482,0.1143535557462255,0.30890905921943196], + [0.45887288947308297,0.11814571137706886,0.3104363697903881], + [0.46389102840284874,0.12012561256850712,0.31110343446582983], + [0.47877034239726296,0.12642401401409453,0.3127417273582196], + [0.48852847371852987,0.13093210934893723,0.31354553695453014], + [0.4981443546207415,0.13569380302451714,0.314135190862664], + [0.5028952497497061,0.13817086581280427,0.3143566215383367], + [0.5169084880054446,0.14598463068714407,0.3147540759228004], + [0.5260418962547748,0.15150818660835483,0.31482653406646727], + [0.5350027976174474,0.15727540775107324,0.3147708520739653], + [0.5394173664919906,0.16024769309971934,0.31470295028655965], + [0.5523952157271191,0.16950338809328983,0.3143729155461537], + [0.5608249903911717,0.17594170887918095,0.31407639883970623], + [0.5690778478401143,0.18258004462335425,0.3137444095679653], + [0.5731384575410787,0.18597036007065024,0.3135712686852], + [0.5850602439646688,0.19640737049066315,0.3130540116373273], + [0.5927948053652026,0.20357251410079796,0.3127323483930494], + [0.6003621301041158,0.21089030138947745,0.3124493441041469], + [0.6040840169673274,0.21460331490206347,0.31232652641170694], + [0.6150072323639137,0.22594402043981826,0.3120568068576574], + [0.6220907982108261,0.2336621873300741,0.3119738327362739], + [0.6290189201698587,0.24149689191922535,0.3119844719564572], + [0.6324253485421027,0.24545598775548677,0.3120276597462445], + [0.642417577481186,0.257490519876798,0.31232631707560987], + [0.6488923016945825,0.2656375533620908,0.3126794181957019], + [0.6552193260932713,0.2738782665241015,0.3131666792687211], + [0.6583280801134499,0.2780321095766563,0.3134643447952643], + [0.6674360376636913,0.29062280081258873,0.31458483752056837], + [0.6733272556481733,0.29911962764489264,0.3155337232398221], + [0.6790747402815734,0.30769497879760166,0.31665545668946665], + [0.6818945715094452,0.31201133280550686,0.3172838048924495], + [0.6901389321505248,0.32507091815606004,0.319453323328983], + [0.6954560834689112,0.33386622163232865,0.3211488430698579], + [0.700629624772421,0.34273019305341756,0.32305449047765694], + [0.7056595112261009,0.3516605297812094,0.32518014084085567], + [0.7081205956842048,0.356149855233803,0.32632861885644465], + [0.7152876061484729,0.3697117022522345,0.3301308728723546], + [0.7198852149054985,0.37882848839337313,0.332975552002454], + [0.7243386564778159,0.38800301593162145,0.3360799596569183], + [0.7286477385671655,0.39723324476747235,0.33945384341064017], + [0.7328127050626875,0.4065168468778026,0.3431071517341082], + [0.7368342217358587,0.4158512585029011,0.347049785207584], + [0.7407130161950609,0.4252339389526239,0.35129130890802607], + [0.7425992159973317,0.42994254036133867,0.3535270924537459], + [0.7480473927555956,0.44413297780351974,0.36070813602540136], + [0.7515068504589166,0.45364314496866825,0.36590112443835765], + [0.7548310506695954,0.46318942799460555,0.3714280448394211], + [0.7580232553845584,0.4727682731566229,0.3772963553109668], + [0.7610876378057071,0.48237579130289127,0.3835127572385229], + [0.7640288560928866,0.49200802533379656,0.39008308392311997], + [0.7668522895064389,0.5016608471009063,0.39701221751773474], + [0.768221765997353,0.5064936237128791,0.40061257089416885], + [0.7721725722960555,0.5210102658711383,0.4119608998712287], + [0.774684947460632,0.5306974938477673,0.4199844035696376], + [0.7771103295521099,0.5403867491056124,0.4283745037125848], + [0.7794586273150664,0.5500730841397727,0.4371297985644476], + [0.7817418047898184,0.5597509805259486,0.44624687186865436], + [0.7839706083641448,0.5694157832671042,0.4557215474289206], + [0.7861573713233296,0.5790624629815756,0.465547782819184], + [0.7872390410818835,0.5838774374455721,0.47059039582133383], + [0.7904577684772788,0.5982813427706246,0.48622257801969754], + [0.7926003430423745,0.6078432208703702,0.4970502062153201], + [0.7947558597265404,0.617367344002207,0.5081892121310299], + [0.7969385471995161,0.626849056792967,0.5196258425240281], + [0.7991624518501963,0.6362837937202919,0.5313449594256143], + [0.8014412429256005,0.6456670345921877,0.5433300863249918], + [0.8037879253107763,0.6549942654947263,0.5555635086708381], + [0.804990547908103,0.6596354502756416,0.5617674511054698], + [0.8087321917008969,0.6734621670219452,0.5806983480557674], + [0.8113501401176333,0.6825930154624339,0.5935584890905076], + [0.8140761104699334,0.6916479479148213,0.6065843782630862], + [0.8169157577505589,0.7006208301478398,0.6197526063725792], + [0.8198723065045529,0.7095047497878748,0.6330385704006711], + [0.8229463511042843,0.7182917733129006,0.6464164243818421], + [0.8261354971058026,0.7269727551823826,0.659859001562165], + [0.8277716072353446,0.7312702332407809,0.6665957020468297], + [0.8328327718577798,0.7439727181745988,0.6868223587464855], + [0.8363189884473793,0.7522654895287526,0.7002799902886496], + [0.8398783988412087,0.7603990719977968,0.7136714781112923], + [0.843485292229337,0.7683566039987018,0.7269653699897204], + [0.847111955079651,0.7761188023604716,0.7401227576280706], + [0.8507269702317879,0.7836645734238389,0.7530974636118285], + [0.8542921961147046,0.7909719677709199,0.765838014779141], + [0.856040223147254,0.7945296360155061,0.7721061003767414], + [0.8610711702756552,0.8047851790981223,0.7903952966373629], + [0.8641834372394103,0.8112464422465354,0.8020461269686395], + [0.867053149070485,0.8173780404191124,0.813134196269114], + [0.8696913150261381,0.8231415885956916,0.8235047668317317], + [0.8721533197845432,0.8284805282370967,0.8330486712880828], + [0.8745379332026019,0.8333197294864546,0.8417192535806901], + [0.8768784845161469,0.8375923807118654,0.8496137354915025], + [0.8780229843664901,0.8395016561854007,0.8533064535245892], + [0.8811916987134195,0.8442906671771735,0.8635659516866988], + [0.8829516859544853,0.8466897027569927,0.8697961704819097], + [0.8843271305411354,0.8484474157205542,0.8755678522824297], + [0.8852589797263047,0.8495589281098921,0.8808841479402484], + [0.8857115512284565,0.8500218611585632,0.8857253899008712], + [0.8837852019553906,0.8507294054031063,0.8872322209694989], + [0.8795410528270573,0.8516567540749572,0.8854143767924102], + [0.8748534750857597,0.8519152612302319,0.8831692696761383], + [0.8697047485350982,0.8515240300479789,0.8805388339000336], + [0.8669601550533358,0.8510896085314068,0.8790976697717334], + [0.8579825924567037,0.8488893481028184,0.8743403855344628], + [0.8513371457085719,0.8467273579611647,0.8708608165735044], + [0.8441261828674842,0.8440648271103739,0.8671697332269007], + [0.8363403180919118,0.8409479651895194,0.8632852800107016], + [0.8279689431601354,0.837426007513952,0.8592239945130679], + [0.8190465467793753,0.8335364929949034,0.855002062870101], + [0.8095999819094809,0.8293189667350546,0.8506444160105037], + [0.79967075421268,0.8248078181208093,0.8461821002957853], + [0.7893144556460892,0.8200321318870201,0.8416486380471222], + [0.7785789200822759,0.8150208937874255,0.8370834463093898], + [0.7675110850441786,0.8098007598713145,0.8325281663805967], + [0.7561644358438198,0.8043940873347794,0.8280213899472], + [0.7445924777189017,0.7988204771958325,0.8235986758615652], + [0.7328454364552346,0.7930974646884407,0.8192926338423038], + [0.7209728066553678,0.7872399592345264,0.8151307392087926], + [0.7150040307625213,0.7842648709158119,0.8131111655994991], + [0.6970365443886174,0.7751705000806606,0.8073233538006345], + [0.6850644615439593,0.7689774029354699,0.8037020626717691], + [0.6731442255942621,0.7626890873389048,0.8002762854580953], + [0.6613112930078745,0.7563120270871903,0.7970456043491897], + [0.6495957300425348,0.7498520122194177,0.7940067402149911], + [0.6380258682854598,0.7433137671403319,0.7911510045957317], + [0.6266240202260459,0.7367017540369944,0.7884690131633456], + [0.6154084641177048,0.7300199523273969,0.7859502270675048], + [0.6043943420027486,0.7232718614323369,0.7835829559353559], + [0.5935933569683722,0.7164606049658685,0.781355882376401], + [0.5830148703693241,0.7095888767699747,0.7792578182047659], + [0.5726668948158774,0.7026589535425779,0.7772770268091199], + [0.5625551535721934,0.6956727838162965,0.7754035914230984], + [0.5526845058934713,0.6886319451516638,0.7736279426902245], + [0.5430593242401823,0.6815376725306588,0.7719407969783508], + [0.5383401557517628,0.677970811290954,0.7711273443905772], + [0.5245615147059358,0.6671924299614223,0.7687954171423095], + [0.5156955988596057,0.65994260812898,0.7673219148959617], + [0.5070896957645166,0.6526417240314645,0.7659044566083585], + [0.4987473366135607,0.6452898684900934,0.7645357873418008], + [0.4906722493856122,0.6378870485884708,0.7632081276316384], + [0.4828677867260272,0.6304330455306234,0.761915371498953], + [0.47533752394906287,0.6229275728383581,0.7606508557181775], + [0.46808490970531597,0.6153702869579029,0.7594078989109274], + [0.4611132664702388,0.607760777169989,0.7581798643680714], + [0.45442563977552913,0.6000985950385866,0.7569601366060649], + [0.4480247093358917,0.5923833145214658,0.7557417647410792], + [0.441912717666964,0.5846144110017557,0.7545183888441067], + [0.4360913895835637,0.5767913799818608,0.7532834105961016], + [0.4305617907305757,0.5689137457245718,0.752030080993127], + [0.42532423665011354,0.560981049599503,0.7507516498900512], + [0.4228148567577266,0.5569939212699658,0.7501008698822764], + [0.4157223260454232,0.544948827153504,0.7480920445900052], + [0.4113541469730457,0.5368485776500593,0.7466971285506578], + [0.4072701869421907,0.5286918801105741,0.7452494263758127], + [0.40346600333905397,0.5204784765384003,0.7437421522356709], + [0.39993606933454834,0.5122081814321852,0.7421684457131799], + [0.3966737490566561,0.5038808905384797,0.7405213858051674], + [0.39367135736822567,0.4954965577745118,0.738794102296364], + [0.390920175719949,0.4870552025122304,0.7369797713388125], + [0.3884105330084243,0.47855691131792805,0.7350715764115726], + [0.386131841788921,0.4700018340988123,0.7330627749243106], + [0.38407269378943537,0.46139018782416635,0.7309466543290268], + [0.38222094988570376,0.45272225034283325,0.7287165614400378], + [0.3805638069656562,0.4439983720863372,0.7263658704513531], + [0.3790878928311076,0.43521897612544935,0.7238879869132313], + [0.3777794975351373,0.4263845142616835,0.7212763999353023], + [0.3771837184425123,0.4219468022345483,0.7199184152447577], + [0.375608469194424,0.40855267638072096,0.7156258509158755], + [0.3747168601930223,0.3995566498711684,0.7125736851650046], + [0.3739349933047578,0.3905082752937583,0.7093613429347845], + [0.37324816143326384,0.38140848555753937,0.7059820097480604], + [0.37264166757849604,0.3722583500483685,0.7024287314570723], + [0.3721008970244382,0.3630590973698238,0.6986943461507372], + [0.3716113323440048,0.3538121372967869,0.6947714991938089], + [0.37115856636209105,0.3445191141023017,0.6906525358646499], + [0.3707283327942267,0.33518193808489577,0.6863294816960677], + [0.37030682071842685,0.32580269697872455,0.6817941168448668], + [0.3698798032902536,0.31638410101153364,0.6770375543809057], + [0.3694333459127623,0.3069292355186234,0.6720505284912062], + [0.3689535530659678,0.29744175492366276,0.6668232208982426], + [0.36842655638020444,0.2879259643777846,0.661345269109446], + [0.3678384369653108,0.2783869718129776,0.655605668384537], + [0.36751707094367697,0.2736106331709098,0.6526341171161864], + [0.3664224325155063,0.25926481158628106,0.6432940914076554], + [0.3655669837353898,0.24969683475296395,0.6366967518748858], + [0.3645930889012501,0.24013747024823828,0.629786801550261], + [0.36348537610385145,0.2305987621839642,0.6225498862239288], + [0.36222809558295926,0.22109488427338303,0.6149711234609613], + [0.36080493826624654,0.21164251793458128,0.6070353217206471], + [0.35920088560930186,0.20226037920758122,0.5987265295935138], + [0.35739663292915563,0.1929720819784246,0.5900301125106313], + [0.3553741530690672,0.18380392577704466,0.580931914318328], + [0.35311574421123737,0.17478570377561287,0.5714187152355529], + [0.3506030444193101,0.1659512998472086,0.5614796470399323], + [0.3478165323877778,0.1573386351115298,0.5511085345270326], + [0.34473901574536375,0.1489882058982641,0.5403024592040654], + [0.34135411074506483,0.1409427920655632,0.5290650094033675], + [0.3376473209067111,0.13324562282438077,0.5174080757397947], + [0.33566978565015315,0.12954074251271822,0.5114280721516895], + [0.3292300520323141,0.11905764321981127,0.49292595612342666], + [0.32451307931207785,0.11263459791730848,0.48017007211645196], + [0.31946262395497965,0.1066887988239266,0.46713728801395243], + [0.3140927841475553,0.10123077676403242,0.45388335612058467], + [0.30842444457210105,0.09625938534057774,0.44047194882050544], + [0.3024853636457425,0.0917611873973036,0.42697404043749887], + [0.2963100038890529,0.08771325096046395,0.41346259134143476], + [0.2899379244517661,0.08409078829085731,0.40000214725256295], + [0.28341239797185225,0.08086415336549937,0.38665868550105914], + [0.2767793961581559,0.07800394103378822,0.37349382846504675], + [0.2700863774911405,0.07548367558427554,0.36056376228111864], + [0.26338121807151404,0.07328165793989708,0.34791888996380105], + [0.256711916510839,0.07138010624208224,0.3356064898460009], + [0.2501284530619938,0.06975820642910699,0.32368100685760637], + [0.24367372557466271,0.06841985515092269,0.3121652405088837], + [0.2405081333229594,0.0678571038148556,0.3065705449367832], + [0.23132955273021344,0.06657618693909059,0.29051361067988485], + [0.22552164337737857,0.0660781731193956,0.28043398847505197], + [0.22001251100779617,0.0658579189189076,0.2709027999432586], + [0.21482843531473683,0.06594038561377849,0.26191675992376573], + [0.21001214221188125,0.06630857391894718,0.2535289048041211], + [0.20558051999470117,0.06699046239786874,0.24572497420147632], + [0.2015613376412984,0.06798327102620025,0.23852974228695395], + [0.19794834061899208,0.06931406607166066,0.23194647381302336], + [0.19410351363791453,0.07160830485689157,0.22558727307410353], + [0.18975853639094634,0.07501986186214377,0.2193005075652994], + [0.18739228342697645,0.07710209689958833,0.21618875376309582] ], + viridis: [ + [0.267004,0.004874,0.329415], + [0.26851,0.009605,0.335427], + [0.269944,0.014625,0.341379], + [0.271305,0.019942,0.347269], + [0.272594,0.025563,0.353093], + [0.273809,0.031497,0.358853], + [0.274952,0.037752,0.364543], + [0.276022,0.044167,0.370164], + [0.277018,0.050344,0.375715], + [0.277941,0.056324,0.381191], + [0.278791,0.062145,0.386592], + [0.279566,0.067836,0.391917], + [0.280267,0.073417,0.397163], + [0.280894,0.078907,0.402329], + [0.281446,0.08432,0.407414], + [0.281924,0.089666,0.412415], + [0.282327,0.094955,0.417331], + [0.282656,0.100196,0.42216], + [0.28291,0.105393,0.426902], + [0.283091,0.110553,0.431554], + [0.283197,0.11568,0.436115], + [0.283229,0.120777,0.440584], + [0.283187,0.125848,0.44496], + [0.283072,0.130895,0.449241], + [0.282884,0.13592,0.453427], + [0.282623,0.140926,0.457517], + [0.28229,0.145912,0.46151], + [0.281887,0.150881,0.465405], + [0.281412,0.155834,0.469201], + [0.280868,0.160771,0.472899], + [0.280255,0.165693,0.476498], + [0.279574,0.170599,0.479997], + [0.278826,0.17549,0.483397], + [0.278012,0.180367,0.486697], + [0.277134,0.185228,0.489898], + [0.276194,0.190074,0.493001], + [0.275191,0.194905,0.496005], + [0.274128,0.199721,0.498911], + [0.273006,0.20452,0.501721], + [0.271828,0.209303,0.504434], + [0.270595,0.214069,0.507052], + [0.269308,0.218818,0.509577], + [0.267968,0.223549,0.512008], + [0.26658,0.228262,0.514349], + [0.265145,0.232956,0.516599], + [0.263663,0.237631,0.518762], + [0.262138,0.242286,0.520837], + [0.260571,0.246922,0.522828], + [0.258965,0.251537,0.524736], + [0.257322,0.25613,0.526563], + [0.255645,0.260703,0.528312], + [0.253935,0.265254,0.529983], + [0.252194,0.269783,0.531579], + [0.250425,0.27429,0.533103], + [0.248629,0.278775,0.534556], + [0.246811,0.283237,0.535941], + [0.244972,0.287675,0.53726], + [0.243113,0.292092,0.538516], + [0.241237,0.296485,0.539709], + [0.239346,0.300855,0.540844], + [0.237441,0.305202,0.541921], + [0.235526,0.309527,0.542944], + [0.233603,0.313828,0.543914], + [0.231674,0.318106,0.544834], + [0.229739,0.322361,0.545706], + [0.227802,0.326594,0.546532], + [0.225863,0.330805,0.547314], + [0.223925,0.334994,0.548053], + [0.221989,0.339161,0.548752], + [0.220057,0.343307,0.549413], + [0.21813,0.347432,0.550038], + [0.21621,0.351535,0.550627], + [0.214298,0.355619,0.551184], + [0.212395,0.359683,0.55171], + [0.210503,0.363727,0.552206], + [0.208623,0.367752,0.552675], + [0.206756,0.371758,0.553117], + [0.204903,0.375746,0.553533], + [0.203063,0.379716,0.553925], + [0.201239,0.38367,0.554294], + [0.19943,0.387607,0.554642], + [0.197636,0.391528,0.554969], + [0.19586,0.395433,0.555276], + [0.1941,0.399323,0.555565], + [0.192357,0.403199,0.555836], + [0.190631,0.407061,0.556089], + [0.188923,0.41091,0.556326], + [0.187231,0.414746,0.556547], + [0.185556,0.41857,0.556753], + [0.183898,0.422383,0.556944], + [0.182256,0.426184,0.55712], + [0.180629,0.429975,0.557282], + [0.179019,0.433756,0.55743], + [0.177423,0.437527,0.557565], + [0.175841,0.44129,0.557685], + [0.174274,0.445044,0.557792], + [0.172719,0.448791,0.557885], + [0.171176,0.45253,0.557965], + [0.169646,0.456262,0.55803], + [0.168126,0.459988,0.558082], + [0.166617,0.463708,0.558119], + [0.165117,0.467423,0.558141], + [0.163625,0.471133,0.558148], + [0.162142,0.474838,0.55814], + [0.160665,0.47854,0.558115], + [0.159194,0.482237,0.558073], + [0.157729,0.485932,0.558013], + [0.15627,0.489624,0.557936], + [0.154815,0.493313,0.55784], + [0.153364,0.497,0.557724], + [0.151918,0.500685,0.557587], + [0.150476,0.504369,0.55743], + [0.149039,0.508051,0.55725], + [0.147607,0.511733,0.557049], + [0.14618,0.515413,0.556823], + [0.144759,0.519093,0.556572], + [0.143343,0.522773,0.556295], + [0.141935,0.526453,0.555991], + [0.140536,0.530132,0.555659], + [0.139147,0.533812,0.555298], + [0.13777,0.537492,0.554906], + [0.136408,0.541173,0.554483], + [0.135066,0.544853,0.554029], + [0.133743,0.548535,0.553541], + [0.132444,0.552216,0.553018], + [0.131172,0.555899,0.552459], + [0.129933,0.559582,0.551864], + [0.128729,0.563265,0.551229], + [0.127568,0.566949,0.550556], + [0.126453,0.570633,0.549841], + [0.125394,0.574318,0.549086], + [0.124395,0.578002,0.548287], + [0.123463,0.581687,0.547445], + [0.122606,0.585371,0.546557], + [0.121831,0.589055,0.545623], + [0.121148,0.592739,0.544641], + [0.120565,0.596422,0.543611], + [0.120092,0.600104,0.54253], + [0.119738,0.603785,0.5414], + [0.119512,0.607464,0.540218], + [0.119423,0.611141,0.538982], + [0.119483,0.614817,0.537692], + [0.119699,0.61849,0.536347], + [0.120081,0.622161,0.534946], + [0.120638,0.625828,0.533488], + [0.12138,0.629492,0.531973], + [0.122312,0.633153,0.530398], + [0.123444,0.636809,0.528763], + [0.12478,0.640461,0.527068], + [0.126326,0.644107,0.525311], + [0.128087,0.647749,0.523491], + [0.130067,0.651384,0.521608], + [0.132268,0.655014,0.519661], + [0.134692,0.658636,0.517649], + [0.137339,0.662252,0.515571], + [0.14021,0.665859,0.513427], + [0.143303,0.669459,0.511215], + [0.146616,0.67305,0.508936], + [0.150148,0.676631,0.506589], + [0.153894,0.680203,0.504172], + [0.157851,0.683765,0.501686], + [0.162016,0.687316,0.499129], + [0.166383,0.690856,0.496502], + [0.170948,0.694384,0.493803], + [0.175707,0.6979,0.491033], + [0.180653,0.701402,0.488189], + [0.185783,0.704891,0.485273], + [0.19109,0.708366,0.482284], + [0.196571,0.711827,0.479221], + [0.202219,0.715272,0.476084], + [0.20803,0.718701,0.472873], + [0.214,0.722114,0.469588], + [0.220124,0.725509,0.466226], + [0.226397,0.728888,0.462789], + [0.232815,0.732247,0.459277], + [0.239374,0.735588,0.455688], + [0.24607,0.73891,0.452024], + [0.252899,0.742211,0.448284], + [0.259857,0.745492,0.444467], + [0.266941,0.748751,0.440573], + [0.274149,0.751988,0.436601], + [0.281477,0.755203,0.432552], + [0.288921,0.758394,0.428426], + [0.296479,0.761561,0.424223], + [0.304148,0.764704,0.419943], + [0.311925,0.767822,0.415586], + [0.319809,0.770914,0.411152], + [0.327796,0.77398,0.40664], + [0.335885,0.777018,0.402049], + [0.344074,0.780029,0.397381], + [0.35236,0.783011,0.392636], + [0.360741,0.785964,0.387814], + [0.369214,0.788888,0.382914], + [0.377779,0.791781,0.377939], + [0.386433,0.794644,0.372886], + [0.395174,0.797475,0.367757], + [0.404001,0.800275,0.362552], + [0.412913,0.803041,0.357269], + [0.421908,0.805774,0.35191], + [0.430983,0.808473,0.346476], + [0.440137,0.811138,0.340967], + [0.449368,0.813768,0.335384], + [0.458674,0.816363,0.329727], + [0.468053,0.818921,0.323998], + [0.477504,0.821444,0.318195], + [0.487026,0.823929,0.312321], + [0.496615,0.826376,0.306377], + [0.506271,0.828786,0.300362], + [0.515992,0.831158,0.294279], + [0.525776,0.833491,0.288127], + [0.535621,0.835785,0.281908], + [0.545524,0.838039,0.275626], + [0.555484,0.840254,0.269281], + [0.565498,0.84243,0.262877], + [0.575563,0.844566,0.256415], + [0.585678,0.846661,0.249897], + [0.595839,0.848717,0.243329], + [0.606045,0.850733,0.236712], + [0.616293,0.852709,0.230052], + [0.626579,0.854645,0.223353], + [0.636902,0.856542,0.21662], + [0.647257,0.8584,0.209861], + [0.657642,0.860219,0.203082], + [0.668054,0.861999,0.196293], + [0.678489,0.863742,0.189503], + [0.688944,0.865448,0.182725], + [0.699415,0.867117,0.175971], + [0.709898,0.868751,0.169257], + [0.720391,0.87035,0.162603], + [0.730889,0.871916,0.156029], + [0.741388,0.873449,0.149561], + [0.751884,0.874951,0.143228], + [0.762373,0.876424,0.137064], + [0.772852,0.877868,0.131109], + [0.783315,0.879285,0.125405], + [0.79376,0.880678,0.120005], + [0.804182,0.882046,0.114965], + [0.814576,0.883393,0.110347], + [0.82494,0.88472,0.106217], + [0.83527,0.886029,0.102646], + [0.845561,0.887322,0.099702], + [0.85581,0.888601,0.097452], + [0.866013,0.889868,0.095953], + [0.876168,0.891125,0.09525], + [0.886271,0.892374,0.095374], + [0.89632,0.893616,0.096335], + [0.906311,0.894855,0.098125], + [0.916242,0.896091,0.100717], + [0.926106,0.89733,0.104071], + [0.935904,0.89857,0.108131], + [0.945636,0.899815,0.112838], + [0.9553,0.901065,0.118128], + [0.964894,0.902323,0.123941], + [0.974417,0.90359,0.130215], + [0.983868,0.904867,0.136897], + [0.993248,0.906157,0.143936] ], + viridis_r: [ + [0.993248,0.906157,0.143936], + [0.983868,0.904867,0.136897], + [0.974417,0.90359,0.130215], + [0.964894,0.902323,0.123941], + [0.9553,0.901065,0.118128], + [0.945636,0.899815,0.112838], + [0.935904,0.89857,0.108131], + [0.926106,0.89733,0.104071], + [0.916242,0.896091,0.100717], + [0.906311,0.894855,0.098125], + [0.89632,0.893616,0.096335], + [0.886271,0.892374,0.095374], + [0.876168,0.891125,0.09525], + [0.866013,0.889868,0.095953], + [0.85581,0.888601,0.097452], + [0.845561,0.887322,0.099702], + [0.83527,0.886029,0.102646], + [0.82494,0.88472,0.106217], + [0.814576,0.883393,0.110347], + [0.804182,0.882046,0.114965], + [0.79376,0.880678,0.120005], + [0.783315,0.879285,0.125405], + [0.772852,0.877868,0.131109], + [0.762373,0.876424,0.137064], + [0.751884,0.874951,0.143228], + [0.741388,0.873449,0.149561], + [0.730889,0.871916,0.156029], + [0.720391,0.87035,0.162603], + [0.709898,0.868751,0.169257], + [0.699415,0.867117,0.175971], + [0.688944,0.865448,0.182725], + [0.678489,0.863742,0.189503], + [0.668054,0.861999,0.196293], + [0.657642,0.860219,0.203082], + [0.647257,0.8584,0.209861], + [0.636902,0.856542,0.21662], + [0.626579,0.854645,0.223353], + [0.616293,0.852709,0.230052], + [0.606045,0.850733,0.236712], + [0.595839,0.848717,0.243329], + [0.585678,0.846661,0.249897], + [0.575563,0.844566,0.256415], + [0.565498,0.84243,0.262877], + [0.555484,0.840254,0.269281], + [0.545524,0.838039,0.275626], + [0.535621,0.835785,0.281908], + [0.525776,0.833491,0.288127], + [0.515992,0.831158,0.294279], + [0.506271,0.828786,0.300362], + [0.496615,0.826376,0.306377], + [0.487026,0.823929,0.312321], + [0.477504,0.821444,0.318195], + [0.468053,0.818921,0.323998], + [0.458674,0.816363,0.329727], + [0.449368,0.813768,0.335384], + [0.440137,0.811138,0.340967], + [0.430983,0.808473,0.346476], + [0.421908,0.805774,0.35191], + [0.412913,0.803041,0.357269], + [0.404001,0.800275,0.362552], + [0.395174,0.797475,0.367757], + [0.386433,0.794644,0.372886], + [0.377779,0.791781,0.377939], + [0.369214,0.788888,0.382914], + [0.360741,0.785964,0.387814], + [0.35236,0.783011,0.392636], + [0.344074,0.780029,0.397381], + [0.335885,0.777018,0.402049], + [0.327796,0.77398,0.40664], + [0.319809,0.770914,0.411152], + [0.311925,0.767822,0.415586], + [0.304148,0.764704,0.419943], + [0.296479,0.761561,0.424223], + [0.288921,0.758394,0.428426], + [0.281477,0.755203,0.432552], + [0.274149,0.751988,0.436601], + [0.266941,0.748751,0.440573], + [0.259857,0.745492,0.444467], + [0.252899,0.742211,0.448284], + [0.24607,0.73891,0.452024], + [0.239374,0.735588,0.455688], + [0.232815,0.732247,0.459277], + [0.226397,0.728888,0.462789], + [0.220124,0.725509,0.466226], + [0.214,0.722114,0.469588], + [0.20803,0.718701,0.472873], + [0.202219,0.715272,0.476084], + [0.196571,0.711827,0.479221], + [0.19109,0.708366,0.482284], + [0.185783,0.704891,0.485273], + [0.180653,0.701402,0.488189], + [0.175707,0.6979,0.491033], + [0.170948,0.694384,0.493803], + [0.166383,0.690856,0.496502], + [0.162016,0.687316,0.499129], + [0.157851,0.683765,0.501686], + [0.153894,0.680203,0.504172], + [0.150148,0.676631,0.506589], + [0.146616,0.67305,0.508936], + [0.143303,0.669459,0.511215], + [0.14021,0.665859,0.513427], + [0.137339,0.662252,0.515571], + [0.134692,0.658636,0.517649], + [0.132268,0.655014,0.519661], + [0.130067,0.651384,0.521608], + [0.128087,0.647749,0.523491], + [0.126326,0.644107,0.525311], + [0.12478,0.640461,0.527068], + [0.123444,0.636809,0.528763], + [0.122312,0.633153,0.530398], + [0.12138,0.629492,0.531973], + [0.120638,0.625828,0.533488], + [0.120081,0.622161,0.534946], + [0.119699,0.61849,0.536347], + [0.119483,0.614817,0.537692], + [0.119423,0.611141,0.538982], + [0.119512,0.607464,0.540218], + [0.119738,0.603785,0.5414], + [0.120092,0.600104,0.54253], + [0.120565,0.596422,0.543611], + [0.121148,0.592739,0.544641], + [0.121831,0.589055,0.545623], + [0.122606,0.585371,0.546557], + [0.123463,0.581687,0.547445], + [0.124395,0.578002,0.548287], + [0.125394,0.574318,0.549086], + [0.126453,0.570633,0.549841], + [0.127568,0.566949,0.550556], + [0.128729,0.563265,0.551229], + [0.129933,0.559582,0.551864], + [0.131172,0.555899,0.552459], + [0.132444,0.552216,0.553018], + [0.133743,0.548535,0.553541], + [0.135066,0.544853,0.554029], + [0.136408,0.541173,0.554483], + [0.13777,0.537492,0.554906], + [0.139147,0.533812,0.555298], + [0.140536,0.530132,0.555659], + [0.141935,0.526453,0.555991], + [0.143343,0.522773,0.556295], + [0.144759,0.519093,0.556572], + [0.14618,0.515413,0.556823], + [0.147607,0.511733,0.557049], + [0.149039,0.508051,0.55725], + [0.150476,0.504369,0.55743], + [0.151918,0.500685,0.557587], + [0.153364,0.497,0.557724], + [0.154815,0.493313,0.55784], + [0.15627,0.489624,0.557936], + [0.157729,0.485932,0.558013], + [0.159194,0.482237,0.558073], + [0.160665,0.47854,0.558115], + [0.162142,0.474838,0.55814], + [0.163625,0.471133,0.558148], + [0.165117,0.467423,0.558141], + [0.166617,0.463708,0.558119], + [0.168126,0.459988,0.558082], + [0.169646,0.456262,0.55803], + [0.171176,0.45253,0.557965], + [0.172719,0.448791,0.557885], + [0.174274,0.445044,0.557792], + [0.175841,0.44129,0.557685], + [0.177423,0.437527,0.557565], + [0.179019,0.433756,0.55743], + [0.180629,0.429975,0.557282], + [0.182256,0.426184,0.55712], + [0.183898,0.422383,0.556944], + [0.185556,0.41857,0.556753], + [0.187231,0.414746,0.556547], + [0.188923,0.41091,0.556326], + [0.190631,0.407061,0.556089], + [0.192357,0.403199,0.555836], + [0.1941,0.399323,0.555565], + [0.19586,0.395433,0.555276], + [0.197636,0.391528,0.554969], + [0.19943,0.387607,0.554642], + [0.201239,0.38367,0.554294], + [0.203063,0.379716,0.553925], + [0.204903,0.375746,0.553533], + [0.206756,0.371758,0.553117], + [0.208623,0.367752,0.552675], + [0.210503,0.363727,0.552206], + [0.212395,0.359683,0.55171], + [0.214298,0.355619,0.551184], + [0.21621,0.351535,0.550627], + [0.21813,0.347432,0.550038], + [0.220057,0.343307,0.549413], + [0.221989,0.339161,0.548752], + [0.223925,0.334994,0.548053], + [0.225863,0.330805,0.547314], + [0.227802,0.326594,0.546532], + [0.229739,0.322361,0.545706], + [0.231674,0.318106,0.544834], + [0.233603,0.313828,0.543914], + [0.235526,0.309527,0.542944], + [0.237441,0.305202,0.541921], + [0.239346,0.300855,0.540844], + [0.241237,0.296485,0.539709], + [0.243113,0.292092,0.538516], + [0.244972,0.287675,0.53726], + [0.246811,0.283237,0.535941], + [0.248629,0.278775,0.534556], + [0.250425,0.27429,0.533103], + [0.252194,0.269783,0.531579], + [0.253935,0.265254,0.529983], + [0.255645,0.260703,0.528312], + [0.257322,0.25613,0.526563], + [0.258965,0.251537,0.524736], + [0.260571,0.246922,0.522828], + [0.262138,0.242286,0.520837], + [0.263663,0.237631,0.518762], + [0.265145,0.232956,0.516599], + [0.26658,0.228262,0.514349], + [0.267968,0.223549,0.512008], + [0.269308,0.218818,0.509577], + [0.270595,0.214069,0.507052], + [0.271828,0.209303,0.504434], + [0.273006,0.20452,0.501721], + [0.274128,0.199721,0.498911], + [0.275191,0.194905,0.496005], + [0.276194,0.190074,0.493001], + [0.277134,0.185228,0.489898], + [0.278012,0.180367,0.486697], + [0.278826,0.17549,0.483397], + [0.279574,0.170599,0.479997], + [0.280255,0.165693,0.476498], + [0.280868,0.160771,0.472899], + [0.281412,0.155834,0.469201], + [0.281887,0.150881,0.465405], + [0.28229,0.145912,0.46151], + [0.282623,0.140926,0.457517], + [0.282884,0.13592,0.453427], + [0.283072,0.130895,0.449241], + [0.283187,0.125848,0.44496], + [0.283229,0.120777,0.440584], + [0.283197,0.11568,0.436115], + [0.283091,0.110553,0.431554], + [0.28291,0.105393,0.426902], + [0.282656,0.100196,0.42216], + [0.282327,0.094955,0.417331], + [0.281924,0.089666,0.412415], + [0.281446,0.08432,0.407414], + [0.280894,0.078907,0.402329], + [0.280267,0.073417,0.397163], + [0.279566,0.067836,0.391917], + [0.278791,0.062145,0.386592], + [0.277941,0.056324,0.381191], + [0.277018,0.050344,0.375715], + [0.276022,0.044167,0.370164], + [0.274952,0.037752,0.364543], + [0.273809,0.031497,0.358853], + [0.272594,0.025563,0.353093], + [0.271305,0.019942,0.347269], + [0.269944,0.014625,0.341379], + [0.26851,0.009605,0.335427], + [0.267004,0.004874,0.329415] ], + winter: [ + [0.0,0.0,1.0], + [0.0,0.00392156862745098,0.9980392156862745], + [0.0,0.00784313725490196,0.996078431372549], + [0.0,0.011764705882352941,0.9941176470588236], + [0.0,0.01568627450980392,0.9921568627450981], + [0.0,0.0196078431372549,0.9901960784313726], + [0.0,0.023529411764705882,0.9882352941176471], + [0.0,0.027450980392156862,0.9862745098039216], + [0.0,0.03137254901960784,0.9843137254901961], + [0.0,0.03529411764705882,0.9823529411764705], + [0.0,0.0392156862745098,0.9803921568627451], + [0.0,0.043137254901960784,0.9784313725490196], + [0.0,0.047058823529411764,0.9764705882352941], + [0.0,0.050980392156862744,0.9745098039215686], + [0.0,0.054901960784313725,0.9725490196078431], + [0.0,0.058823529411764705,0.9705882352941176], + [0.0,0.06274509803921569,0.9686274509803922], + [0.0,0.06666666666666667,0.9666666666666667], + [0.0,0.07058823529411765,0.9647058823529412], + [0.0,0.07450980392156863,0.9627450980392157], + [0.0,0.0784313725490196,0.9607843137254902], + [0.0,0.08235294117647059,0.9588235294117647], + [0.0,0.08627450980392157,0.9568627450980393], + [0.0,0.09019607843137255,0.9549019607843138], + [0.0,0.09411764705882353,0.9529411764705882], + [0.0,0.09803921568627451,0.9509803921568627], + [0.0,0.10196078431372549,0.9490196078431372], + [0.0,0.10588235294117647,0.9470588235294117], + [0.0,0.10980392156862745,0.9450980392156862], + [0.0,0.11372549019607843,0.9431372549019608], + [0.0,0.11764705882352941,0.9411764705882353], + [0.0,0.12156862745098039,0.9392156862745098], + [0.0,0.12549019607843137,0.9372549019607843], + [0.0,0.12941176470588234,0.9352941176470588], + [0.0,0.13333333333333333,0.9333333333333333], + [0.0,0.13725490196078433,0.9313725490196079], + [0.0,0.1411764705882353,0.9294117647058824], + [0.0,0.14509803921568626,0.9274509803921569], + [0.0,0.14901960784313725,0.9254901960784314], + [0.0,0.15294117647058825,0.9235294117647059], + [0.0,0.1568627450980392,0.9215686274509804], + [0.0,0.16078431372549018,0.919607843137255], + [0.0,0.16470588235294117,0.9176470588235294], + [0.0,0.16862745098039217,0.9156862745098039], + [0.0,0.17254901960784313,0.9137254901960784], + [0.0,0.1764705882352941,0.9117647058823529], + [0.0,0.1803921568627451,0.9098039215686274], + [0.0,0.1843137254901961,0.907843137254902], + [0.0,0.18823529411764706,0.9058823529411765], + [0.0,0.19215686274509802,0.903921568627451], + [0.0,0.19607843137254902,0.9019607843137255], + [0.0,0.2,0.9], + [0.0,0.20392156862745098,0.8980392156862745], + [0.0,0.20784313725490194,0.8960784313725491], + [0.0,0.21176470588235294,0.8941176470588236], + [0.0,0.21568627450980393,0.892156862745098], + [0.0,0.2196078431372549,0.8901960784313725], + [0.0,0.22352941176470587,0.888235294117647], + [0.0,0.22745098039215686,0.8862745098039215], + [0.0,0.23137254901960785,0.884313725490196], + [0.0,0.23529411764705882,0.8823529411764706], + [0.0,0.2392156862745098,0.8803921568627451], + [0.0,0.24313725490196078,0.8784313725490196], + [0.0,0.24705882352941178,0.8764705882352941], + [0.0,0.25098039215686274,0.8745098039215686], + [0.0,0.2549019607843137,0.8725490196078431], + [0.0,0.2588235294117647,0.8705882352941177], + [0.0,0.2627450980392157,0.8686274509803922], + [0.0,0.26666666666666666,0.8666666666666667], + [0.0,0.27058823529411763,0.8647058823529412], + [0.0,0.27450980392156865,0.8627450980392157], + [0.0,0.2784313725490196,0.8607843137254902], + [0.0,0.2823529411764706,0.8588235294117648], + [0.0,0.28627450980392155,0.8568627450980393], + [0.0,0.2901960784313725,0.8549019607843138], + [0.0,0.29411764705882354,0.8529411764705882], + [0.0,0.2980392156862745,0.8509803921568627], + [0.0,0.30196078431372547,0.8490196078431372], + [0.0,0.3058823529411765,0.8470588235294118], + [0.0,0.30980392156862746,0.8450980392156863], + [0.0,0.3137254901960784,0.8431372549019608], + [0.0,0.3176470588235294,0.8411764705882353], + [0.0,0.32156862745098036,0.8392156862745098], + [0.0,0.3254901960784314,0.8372549019607843], + [0.0,0.32941176470588235,0.8352941176470589], + [0.0,0.3333333333333333,0.8333333333333334], + [0.0,0.33725490196078434,0.8313725490196078], + [0.0,0.3411764705882353,0.8294117647058823], + [0.0,0.34509803921568627,0.8274509803921568], + [0.0,0.34901960784313724,0.8254901960784313], + [0.0,0.3529411764705882,0.8235294117647058], + [0.0,0.3568627450980392,0.8215686274509804], + [0.0,0.3607843137254902,0.8196078431372549], + [0.0,0.36470588235294116,0.8176470588235294], + [0.0,0.3686274509803922,0.8156862745098039], + [0.0,0.37254901960784315,0.8137254901960784], + [0.0,0.3764705882352941,0.8117647058823529], + [0.0,0.3803921568627451,0.8098039215686275], + [0.0,0.38431372549019605,0.807843137254902], + [0.0,0.38823529411764707,0.8058823529411765], + [0.0,0.39215686274509803,0.803921568627451], + [0.0,0.396078431372549,0.8019607843137255], + [0.0,0.4,0.8], + [0.0,0.403921568627451,0.7980392156862746], + [0.0,0.40784313725490196,0.7960784313725491], + [0.0,0.4117647058823529,0.7941176470588236], + [0.0,0.4156862745098039,0.7921568627450981], + [0.0,0.4196078431372549,0.7901960784313725], + [0.0,0.4235294117647059,0.788235294117647], + [0.0,0.42745098039215684,0.7862745098039216], + [0.0,0.43137254901960786,0.7843137254901961], + [0.0,0.43529411764705883,0.7823529411764706], + [0.0,0.4392156862745098,0.7803921568627451], + [0.0,0.44313725490196076,0.7784313725490196], + [0.0,0.44705882352941173,0.7764705882352941], + [0.0,0.45098039215686275,0.7745098039215687], + [0.0,0.4549019607843137,0.7725490196078432], + [0.0,0.4588235294117647,0.7705882352941177], + [0.0,0.4627450980392157,0.7686274509803921], + [0.0,0.4666666666666667,0.7666666666666666], + [0.0,0.47058823529411764,0.7647058823529411], + [0.0,0.4745098039215686,0.7627450980392156], + [0.0,0.4784313725490196,0.7607843137254902], + [0.0,0.4823529411764706,0.7588235294117647], + [0.0,0.48627450980392156,0.7568627450980392], + [0.0,0.49019607843137253,0.7549019607843137], + [0.0,0.49411764705882355,0.7529411764705882], + [0.0,0.4980392156862745,0.7509803921568627], + [0.0,0.5019607843137255,0.7490196078431373], + [0.0,0.5058823529411764,0.7470588235294118], + [0.0,0.5098039215686274,0.7450980392156863], + [0.0,0.5137254901960784,0.7431372549019608], + [0.0,0.5176470588235293,0.7411764705882353], + [0.0,0.5215686274509804,0.7392156862745098], + [0.0,0.5254901960784314,0.7372549019607844], + [0.0,0.5294117647058824,0.7352941176470589], + [0.0,0.5333333333333333,0.7333333333333334], + [0.0,0.5372549019607843,0.7313725490196079], + [0.0,0.5411764705882353,0.7294117647058824], + [0.0,0.5450980392156862,0.7274509803921569], + [0.0,0.5490196078431373,0.7254901960784313], + [0.0,0.5529411764705883,0.7235294117647059], + [0.0,0.5568627450980392,0.7215686274509804], + [0.0,0.5607843137254902,0.7196078431372549], + [0.0,0.5647058823529412,0.7176470588235294], + [0.0,0.5686274509803921,0.7156862745098039], + [0.0,0.5725490196078431,0.7137254901960784], + [0.0,0.5764705882352941,0.711764705882353], + [0.0,0.580392156862745,0.7098039215686275], + [0.0,0.5843137254901961,0.7078431372549019], + [0.0,0.5882352941176471,0.7058823529411764], + [0.0,0.592156862745098,0.7039215686274509], + [0.0,0.596078431372549,0.7019607843137254], + [0.0,0.6,0.7], + [0.0,0.6039215686274509,0.6980392156862745], + [0.0,0.6078431372549019,0.696078431372549], + [0.0,0.611764705882353,0.6941176470588235], + [0.0,0.615686274509804,0.692156862745098], + [0.0,0.6196078431372549,0.6901960784313725], + [0.0,0.6235294117647059,0.6882352941176471], + [0.0,0.6274509803921569,0.6862745098039216], + [0.0,0.6313725490196078,0.6843137254901961], + [0.0,0.6352941176470588,0.6823529411764706], + [0.0,0.6392156862745098,0.6803921568627451], + [0.0,0.6431372549019607,0.6784313725490196], + [0.0,0.6470588235294118,0.6764705882352942], + [0.0,0.6509803921568628,0.6745098039215687], + [0.0,0.6549019607843137,0.6725490196078432], + [0.0,0.6588235294117647,0.6705882352941177], + [0.0,0.6627450980392157,0.6686274509803922], + [0.0,0.6666666666666666,0.6666666666666667], + [0.0,0.6705882352941176,0.6647058823529413], + [0.0,0.6745098039215687,0.6627450980392157], + [0.0,0.6784313725490196,0.6607843137254902], + [0.0,0.6823529411764706,0.6588235294117647], + [0.0,0.6862745098039216,0.6568627450980392], + [0.0,0.6901960784313725,0.6549019607843137], + [0.0,0.6941176470588235,0.6529411764705882], + [0.0,0.6980392156862745,0.6509803921568628], + [0.0,0.7019607843137254,0.6490196078431373], + [0.0,0.7058823529411764,0.6470588235294118], + [0.0,0.7098039215686275,0.6450980392156862], + [0.0,0.7137254901960784,0.6431372549019607], + [0.0,0.7176470588235294,0.6411764705882352], + [0.0,0.7215686274509804,0.6392156862745098], + [0.0,0.7254901960784313,0.6372549019607843], + [0.0,0.7294117647058823,0.6352941176470588], + [0.0,0.7333333333333333,0.6333333333333333], + [0.0,0.7372549019607844,0.6313725490196078], + [0.0,0.7411764705882353,0.6294117647058823], + [0.0,0.7450980392156863,0.6274509803921569], + [0.0,0.7490196078431373,0.6254901960784314], + [0.0,0.7529411764705882,0.6235294117647059], + [0.0,0.7568627450980392,0.6215686274509804], + [0.0,0.7607843137254902,0.6196078431372549], + [0.0,0.7647058823529411,0.6176470588235294], + [0.0,0.7686274509803921,0.615686274509804], + [0.0,0.7725490196078432,0.6137254901960785], + [0.0,0.7764705882352941,0.611764705882353], + [0.0,0.7803921568627451,0.6098039215686275], + [0.0,0.7843137254901961,0.607843137254902], + [0.0,0.788235294117647,0.6058823529411765], + [0.0,0.792156862745098,0.603921568627451], + [0.0,0.796078431372549,0.6019607843137256], + [0.0,0.8,0.6], + [0.0,0.803921568627451,0.5980392156862745], + [0.0,0.807843137254902,0.596078431372549], + [0.0,0.8117647058823529,0.5941176470588235], + [0.0,0.8156862745098039,0.592156862745098], + [0.0,0.8196078431372549,0.5901960784313726], + [0.0,0.8235294117647058,0.5882352941176471], + [0.0,0.8274509803921568,0.5862745098039216], + [0.0,0.8313725490196078,0.5843137254901961], + [0.0,0.8352941176470589,0.5823529411764705], + [0.0,0.8392156862745098,0.580392156862745], + [0.0,0.8431372549019608,0.5784313725490196], + [0.0,0.8470588235294118,0.5764705882352941], + [0.0,0.8509803921568627,0.5745098039215686], + [0.0,0.8549019607843137,0.5725490196078431], + [0.0,0.8588235294117647,0.5705882352941176], + [0.0,0.8627450980392157,0.5686274509803921], + [0.0,0.8666666666666667,0.5666666666666667], + [0.0,0.8705882352941177,0.5647058823529412], + [0.0,0.8745098039215686,0.5627450980392157], + [0.0,0.8784313725490196,0.5607843137254902], + [0.0,0.8823529411764706,0.5588235294117647], + [0.0,0.8862745098039215,0.5568627450980392], + [0.0,0.8901960784313725,0.5549019607843138], + [0.0,0.8941176470588235,0.5529411764705883], + [0.0,0.8980392156862745,0.5509803921568628], + [0.0,0.9019607843137255,0.5490196078431373], + [0.0,0.9058823529411765,0.5470588235294118], + [0.0,0.9098039215686274,0.5450980392156863], + [0.0,0.9137254901960784,0.5431372549019609], + [0.0,0.9176470588235294,0.5411764705882354], + [0.0,0.9215686274509803,0.5392156862745099], + [0.0,0.9254901960784314,0.5372549019607843], + [0.0,0.9294117647058824,0.5352941176470588], + [0.0,0.9333333333333333,0.5333333333333333], + [0.0,0.9372549019607843,0.5313725490196078], + [0.0,0.9411764705882353,0.5294117647058824], + [0.0,0.9450980392156862,0.5274509803921569], + [0.0,0.9490196078431372,0.5254901960784314], + [0.0,0.9529411764705882,0.5235294117647059], + [0.0,0.9568627450980391,0.5215686274509804], + [0.0,0.9607843137254902,0.5196078431372548], + [0.0,0.9647058823529412,0.5176470588235293], + [0.0,0.9686274509803922,0.5156862745098039], + [0.0,0.9725490196078431,0.5137254901960784], + [0.0,0.9764705882352941,0.5117647058823529], + [0.0,0.9803921568627451,0.5098039215686274], + [0.0,0.984313725490196,0.5078431372549019], + [0.0,0.9882352941176471,0.5058823529411764], + [0.0,0.9921568627450981,0.503921568627451], + [0.0,0.996078431372549,0.5019607843137255], + [0.0,1.0,0.5] ], + winter_r: [ + [0.0,1.0,0.5], + [0.0,0.996078431372549,0.5019607843137255], + [0.0,0.9921568627450981,0.503921568627451], + [0.0,0.9882352941176471,0.5058823529411764], + [0.0,0.9843137254901961,0.5078431372549019], + [0.0,0.9803921568627451,0.5098039215686274], + [0.0,0.9764705882352941,0.5117647058823529], + [0.0,0.9725490196078431,0.5137254901960784], + [0.0,0.9686274509803922,0.5156862745098039], + [0.0,0.9647058823529412,0.5176470588235295], + [0.0,0.9607843137254902,0.5196078431372549], + [0.0,0.9568627450980393,0.5215686274509804], + [0.0,0.9529411764705882,0.5235294117647059], + [0.0,0.9490196078431372,0.5254901960784314], + [0.0,0.9450980392156862,0.5274509803921569], + [0.0,0.9411764705882353,0.5294117647058824], + [0.0,0.9372549019607843,0.5313725490196078], + [0.0,0.9333333333333333,0.5333333333333333], + [0.0,0.9294117647058824,0.5352941176470588], + [0.0,0.9254901960784314,0.5372549019607843], + [0.0,0.9215686274509804,0.5392156862745098], + [0.0,0.9176470588235294,0.5411764705882353], + [0.0,0.9137254901960784,0.5431372549019607], + [0.0,0.9098039215686274,0.5450980392156862], + [0.0,0.9058823529411765,0.5470588235294118], + [0.0,0.9019607843137255,0.5490196078431373], + [0.0,0.8980392156862745,0.5509803921568628], + [0.0,0.8941176470588236,0.5529411764705883], + [0.0,0.8901960784313725,0.5549019607843138], + [0.0,0.8862745098039215,0.5568627450980392], + [0.0,0.8823529411764706,0.5588235294117647], + [0.0,0.8784313725490196,0.5607843137254902], + [0.0,0.8745098039215686,0.5627450980392157], + [0.0,0.8705882352941177,0.5647058823529412], + [0.0,0.8666666666666667,0.5666666666666667], + [0.0,0.8627450980392157,0.5686274509803921], + [0.0,0.8588235294117648,0.5705882352941176], + [0.0,0.8549019607843138,0.5725490196078431], + [0.0,0.8509803921568627,0.5745098039215686], + [0.0,0.8470588235294118,0.5764705882352941], + [0.0,0.8431372549019608,0.5784313725490196], + [0.0,0.8392156862745098,0.580392156862745], + [0.0,0.8352941176470589,0.5823529411764706], + [0.0,0.8313725490196078,0.5843137254901961], + [0.0,0.8274509803921568,0.5862745098039216], + [0.0,0.8235294117647058,0.5882352941176471], + [0.0,0.8196078431372549,0.5901960784313726], + [0.0,0.8156862745098039,0.592156862745098], + [0.0,0.8117647058823529,0.5941176470588235], + [0.0,0.807843137254902,0.596078431372549], + [0.0,0.803921568627451,0.5980392156862745], + [0.0,0.8,0.6], + [0.0,0.7960784313725491,0.6019607843137255], + [0.0,0.7921568627450981,0.6039215686274509], + [0.0,0.788235294117647,0.6058823529411764], + [0.0,0.7843137254901961,0.607843137254902], + [0.0,0.7803921568627451,0.6098039215686275], + [0.0,0.7764705882352941,0.611764705882353], + [0.0,0.7725490196078432,0.6137254901960785], + [0.0,0.7686274509803921,0.615686274509804], + [0.0,0.7647058823529411,0.6176470588235294], + [0.0,0.7607843137254902,0.6196078431372549], + [0.0,0.7568627450980392,0.6215686274509804], + [0.0,0.7529411764705882,0.6235294117647059], + [0.0,0.7490196078431373,0.6254901960784314], + [0.0,0.7450980392156863,0.6274509803921569], + [0.0,0.7411764705882353,0.6294117647058823], + [0.0,0.7372549019607844,0.6313725490196078], + [0.0,0.7333333333333334,0.6333333333333333], + [0.0,0.7294117647058824,0.6352941176470588], + [0.0,0.7254901960784313,0.6372549019607843], + [0.0,0.7215686274509804,0.6392156862745098], + [0.0,0.7176470588235294,0.6411764705882352], + [0.0,0.7137254901960784,0.6431372549019607], + [0.0,0.7098039215686275,0.6450980392156862], + [0.0,0.7058823529411764,0.6470588235294118], + [0.0,0.7019607843137254,0.6490196078431373], + [0.0,0.6980392156862745,0.6509803921568628], + [0.0,0.6941176470588235,0.6529411764705882], + [0.0,0.6901960784313725,0.6549019607843137], + [0.0,0.6862745098039216,0.6568627450980392], + [0.0,0.6823529411764706,0.6588235294117647], + [0.0,0.6784313725490196,0.6607843137254902], + [0.0,0.6745098039215687,0.6627450980392157], + [0.0,0.6705882352941177,0.6647058823529411], + [0.0,0.6666666666666667,0.6666666666666666], + [0.0,0.6627450980392157,0.6686274509803922], + [0.0,0.6588235294117647,0.6705882352941177], + [0.0,0.6549019607843137,0.6725490196078432], + [0.0,0.6509803921568628,0.6745098039215687], + [0.0,0.6470588235294118,0.6764705882352942], + [0.0,0.6431372549019607,0.6784313725490196], + [0.0,0.6392156862745098,0.6803921568627451], + [0.0,0.6352941176470588,0.6823529411764706], + [0.0,0.6313725490196078,0.6843137254901961], + [0.0,0.6274509803921569,0.6862745098039216], + [0.0,0.6235294117647059,0.6882352941176471], + [0.0,0.6196078431372549,0.6901960784313725], + [0.0,0.615686274509804,0.692156862745098], + [0.0,0.611764705882353,0.6941176470588235], + [0.0,0.607843137254902,0.696078431372549], + [0.0,0.603921568627451,0.6980392156862745], + [0.0,0.6,0.7], + [0.0,0.596078431372549,0.7019607843137254], + [0.0,0.592156862745098,0.7039215686274509], + [0.0,0.5882352941176471,0.7058823529411764], + [0.0,0.5843137254901961,0.7078431372549019], + [0.0,0.580392156862745,0.7098039215686275], + [0.0,0.5764705882352941,0.711764705882353], + [0.0,0.5725490196078431,0.7137254901960784], + [0.0,0.5686274509803921,0.7156862745098039], + [0.0,0.5647058823529412,0.7176470588235294], + [0.0,0.5607843137254902,0.7196078431372549], + [0.0,0.5568627450980392,0.7215686274509804], + [0.0,0.5529411764705883,0.7235294117647059], + [0.0,0.5490196078431373,0.7254901960784313], + [0.0,0.5450980392156863,0.7274509803921568], + [0.0,0.5411764705882354,0.7294117647058823], + [0.0,0.5372549019607843,0.7313725490196079], + [0.0,0.5333333333333333,0.7333333333333334], + [0.0,0.5294117647058824,0.7352941176470589], + [0.0,0.5254901960784314,0.7372549019607844], + [0.0,0.5215686274509804,0.7392156862745098], + [0.0,0.5176470588235293,0.7411764705882353], + [0.0,0.5137254901960784,0.7431372549019608], + [0.0,0.5098039215686274,0.7450980392156863], + [0.0,0.5058823529411764,0.7470588235294118], + [0.0,0.5019607843137255,0.7490196078431373], + [0.0,0.4980392156862745,0.7509803921568627], + [0.0,0.49411764705882355,0.7529411764705882], + [0.0,0.4901960784313726,0.7549019607843137], + [0.0,0.4862745098039216,0.7568627450980392], + [0.0,0.48235294117647065,0.7588235294117647], + [0.0,0.4784313725490196,0.7607843137254902], + [0.0,0.4745098039215686,0.7627450980392156], + [0.0,0.47058823529411764,0.7647058823529411], + [0.0,0.4666666666666667,0.7666666666666666], + [0.0,0.4627450980392157,0.7686274509803921], + [0.0,0.45882352941176474,0.7705882352941176], + [0.0,0.4549019607843138,0.7725490196078431], + [0.0,0.4509803921568627,0.7745098039215687], + [0.0,0.44705882352941173,0.7764705882352941], + [0.0,0.44313725490196076,0.7784313725490196], + [0.0,0.4392156862745098,0.7803921568627451], + [0.0,0.43529411764705883,0.7823529411764706], + [0.0,0.43137254901960786,0.7843137254901961], + [0.0,0.4274509803921569,0.7862745098039216], + [0.0,0.42352941176470593,0.788235294117647], + [0.0,0.41960784313725497,0.7901960784313725], + [0.0,0.4156862745098039,0.7921568627450981], + [0.0,0.4117647058823529,0.7941176470588236], + [0.0,0.40784313725490196,0.7960784313725491], + [0.0,0.403921568627451,0.7980392156862746], + [0.0,0.4,0.8], + [0.0,0.39607843137254906,0.8019607843137255], + [0.0,0.3921568627450981,0.803921568627451], + [0.0,0.388235294117647,0.8058823529411765], + [0.0,0.38431372549019605,0.807843137254902], + [0.0,0.3803921568627451,0.8098039215686275], + [0.0,0.3764705882352941,0.8117647058823529], + [0.0,0.37254901960784315,0.8137254901960784], + [0.0,0.3686274509803922,0.8156862745098039], + [0.0,0.3647058823529412,0.8176470588235294], + [0.0,0.36078431372549025,0.8196078431372549], + [0.0,0.3568627450980393,0.8215686274509804], + [0.0,0.3529411764705882,0.8235294117647058], + [0.0,0.34901960784313724,0.8254901960784313], + [0.0,0.34509803921568627,0.8274509803921568], + [0.0,0.3411764705882353,0.8294117647058823], + [0.0,0.33725490196078434,0.8313725490196078], + [0.0,0.33333333333333337,0.8333333333333333], + [0.0,0.3294117647058824,0.8352941176470587], + [0.0,0.3254901960784313,0.8372549019607843], + [0.0,0.32156862745098036,0.8392156862745098], + [0.0,0.3176470588235294,0.8411764705882353], + [0.0,0.3137254901960784,0.8431372549019608], + [0.0,0.30980392156862746,0.8450980392156863], + [0.0,0.3058823529411765,0.8470588235294118], + [0.0,0.3019607843137255,0.8490196078431372], + [0.0,0.29803921568627456,0.8509803921568627], + [0.0,0.2941176470588236,0.8529411764705882], + [0.0,0.2901960784313725,0.8549019607843138], + [0.0,0.28627450980392155,0.8568627450980393], + [0.0,0.2823529411764706,0.8588235294117648], + [0.0,0.2784313725490196,0.8607843137254902], + [0.0,0.27450980392156865,0.8627450980392157], + [0.0,0.2705882352941177,0.8647058823529412], + [0.0,0.2666666666666667,0.8666666666666667], + [0.0,0.26274509803921564,0.8686274509803922], + [0.0,0.2588235294117647,0.8705882352941177], + [0.0,0.2549019607843137,0.8725490196078431], + [0.0,0.25098039215686274,0.8745098039215686], + [0.0,0.24705882352941178,0.8764705882352941], + [0.0,0.2431372549019608,0.8784313725490196], + [0.0,0.23921568627450984,0.8803921568627451], + [0.0,0.23529411764705888,0.8823529411764706], + [0.0,0.2313725490196079,0.884313725490196], + [0.0,0.22745098039215683,0.8862745098039215], + [0.0,0.22352941176470587,0.888235294117647], + [0.0,0.2196078431372549,0.8901960784313725], + [0.0,0.21568627450980393,0.892156862745098], + [0.0,0.21176470588235297,0.8941176470588235], + [0.0,0.207843137254902,0.896078431372549], + [0.0,0.20392156862745103,0.8980392156862744], + [0.0,0.19999999999999996,0.9], + [0.0,0.196078431372549,0.9019607843137255], + [0.0,0.19215686274509802,0.903921568627451], + [0.0,0.18823529411764706,0.9058823529411765], + [0.0,0.1843137254901961,0.907843137254902], + [0.0,0.18039215686274512,0.9098039215686274], + [0.0,0.17647058823529416,0.9117647058823529], + [0.0,0.1725490196078432,0.9137254901960784], + [0.0,0.16862745098039222,0.9156862745098039], + [0.0,0.16470588235294115,0.9176470588235295], + [0.0,0.16078431372549018,0.919607843137255], + [0.0,0.1568627450980392,0.9215686274509804], + [0.0,0.15294117647058825,0.9235294117647059], + [0.0,0.14901960784313728,0.9254901960784314], + [0.0,0.14509803921568631,0.9274509803921569], + [0.0,0.14117647058823535,0.9294117647058824], + [0.0,0.13725490196078427,0.9313725490196079], + [0.0,0.1333333333333333,0.9333333333333333], + [0.0,0.12941176470588234,0.9352941176470588], + [0.0,0.12549019607843137,0.9372549019607843], + [0.0,0.1215686274509804,0.9392156862745098], + [0.0,0.11764705882352944,0.9411764705882353], + [0.0,0.11372549019607847,0.9431372549019608], + [0.0,0.1098039215686275,0.9450980392156862], + [0.0,0.10588235294117654,0.9470588235294117], + [0.0,0.10196078431372546,0.9490196078431372], + [0.0,0.0980392156862745,0.9509803921568627], + [0.0,0.09411764705882353,0.9529411764705882], + [0.0,0.09019607843137256,0.9549019607843137], + [0.0,0.0862745098039216,0.9568627450980391], + [0.0,0.08235294117647063,0.9588235294117646], + [0.0,0.07843137254901966,0.9607843137254901], + [0.0,0.07450980392156858,0.9627450980392157], + [0.0,0.07058823529411762,0.9647058823529412], + [0.0,0.06666666666666665,0.9666666666666667], + [0.0,0.06274509803921569,0.9686274509803922], + [0.0,0.05882352941176472,0.9705882352941176], + [0.0,0.05490196078431375,0.9725490196078431], + [0.0,0.050980392156862786,0.9745098039215686], + [0.0,0.04705882352941182,0.9764705882352941], + [0.0,0.04313725490196085,0.9784313725490196], + [0.0,0.039215686274509776,0.9803921568627452], + [0.0,0.03529411764705881,0.9823529411764707], + [0.0,0.03137254901960784,0.9843137254901961], + [0.0,0.027450980392156876,0.9862745098039216], + [0.0,0.02352941176470591,0.9882352941176471], + [0.0,0.019607843137254943,0.9901960784313726], + [0.0,0.015686274509803977,0.9921568627450981], + [0.0,0.0117647058823529,0.9941176470588236], + [0.0,0.007843137254901933,0.996078431372549], + [0.0,0.0039215686274509665,0.9980392156862745], + [0.0,0.0,1.0] ], +} diff --git a/html/radiopadre-kernel.js b/html/radiopadre-kernel.js index 290e108..a490864 100644 --- a/html/radiopadre-kernel.js +++ b/html/radiopadre-kernel.js @@ -257,7 +257,7 @@ if (appname === 'NotebookApp') '/static/js9-www/js9support.min.js', '/static/js9-www/js9.min.js', '/static/js9-www/js9plugins.js', - '/static/js9colormaps.js', + '/static/js9-www/js9colormaps.js', '/static/radiopadre-www/js9partners.js' ] diff --git a/radiopadre/fitsfile.py b/radiopadre/fitsfile.py index bf1f915..10384fa 100644 --- a/radiopadre/fitsfile.py +++ b/radiopadre/fitsfile.py @@ -665,7 +665,7 @@ def _action_buttons_(self, context, defaults=None, **kw): """.format(**subs) if CARTA_PORT and CARTA_WS_PORT: - filepath = os.path.relpath(os.path.abspath(self.fullpath), iglesia.ABSROOTDIR) + filepath = os.path.relpath(os.path.abspath(self.fullpath), iglesia.SERVER_BASEDIR) subs['newtab_carta_html'] =\ f"http://localhost:{CARTA_PORT}/?socketUrl=ws://localhost:{CARTA_WS_PORT}&file={filepath}" diff --git a/radiopadre_kernel/js9/js9-init-static-template.html b/radiopadre_kernel/js9/js9-init-static-template.html index d828298..d9d768b 100644 --- a/radiopadre_kernel/js9/js9-init-static-template.html +++ b/radiopadre_kernel/js9/js9-init-static-template.html @@ -21,7 +21,7 @@ - +